1
0
forked from pool/kernel-source

Accepting request 71043 from Kernel:HEAD

- Update Xen patches to 2.6.39 final and c/s 1085.
- xen/sfc_netfront: fix an unused variable error.
- commit 3b6edff

- PM: Print a warning if firmware is requested when tasks are
  frozen (bnc#695219).
- commit e78f4ce

- Refresh
  patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
  Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8

- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
  It was part of removed SoN patches.
- commit 1d0599a

- Updated to 2.6.39-final.
- commit 7c72384

- supported.conf: blktap2 modules are supported.
- commit fa60394

- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c

- Update to 2.6.39-rc7.
    - Eliminated 5 patches.
- commit a8a170f

OBS-URL: https://build.opensuse.org/request/show/71043
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=136
This commit is contained in:
Marcus Rückert 2011-05-26 16:28:51 +00:00 committed by Git OBS Bridge
commit d089c55107
54 changed files with 220544 additions and 47656 deletions

View File

@ -62,7 +62,7 @@ done >"$series" < <($(dirname $0)/guards $EXTRA_SYMBOLS <series.conf)
# convert them to shell code that can be evaluated. Evaluate it.
eval "$(
<"$series" xargs awk '
/^--- |^+++ / \
/^--- |^\+\+\+ / \
{ M = match($2, /^[^\/]+\/Makefile( \t|$)/) }
M && /^+(VERSION|PATCHLEVEL|SUBLEVEL|EXTRAVERSION)/ \
{ print }

View File

@ -11,7 +11,6 @@
+i386 i386/default
+i386 i386/desktop
+i386 i386/pae
+i386 -syms i386/vmi
+i386 -syms i386/debug
+i386 i386/xen
+i386 -syms i386/ec2
@ -61,5 +60,6 @@
+s390x -syms s390x/trace
+s390x s390x/vanilla
+sparc64 sparc64/default
+sparc64 -syms sparc64/net
# Maintained by jengelh
# +sparc64 sparc64/default
# +sparc64 -syms sparc64/net

View File

@ -1,5 +1,5 @@
# The version of the main tarball to use
SRCVERSION=2.6.38
SRCVERSION=2.6.39
# variant of the kernel-source package, either empty or "-rt"
VARIANT=
# buildservice projects to build the kernel against

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:19ad5336718fc475cc212b18dc116089fb57ddd3aa57fe3df52d5556798dad90
size 226710
oid sha256:5720300e690748fe5d51cc5b991e6226ae774ae98cc10b0f1d0a1d594487399e
size 225152

View File

@ -90,7 +90,12 @@ Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
#!BuildIgnore: perl-Bootloader 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
@ -261,18 +266,12 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# 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 <<EOF
# Override the timestamp 'uname -v' reports with the build
# timestamp.
export KBUILD_BUILD_TIMESTAMP="$(head -n 1 %_sourcedir/source-timestamp)"
# The following branch/timestamp will end up in Oopses.
export OOPS_TIMESTAMP="$(
echo -n $(sed -ne 's/^GIT Branch: \(.*\)/\1-/p' \
%_sourcedir/source-timestamp)
head -n 1 %_sourcedir/source-timestamp \
| tr -dc 0-9)"
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
@ -447,6 +446,15 @@ 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

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,881 +0,0 @@
#
# spec file for package kernel-net
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
%define build_flavor net
%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-net
Summary: Minimal kernel with disk and net support
Version: 2.6.38
Release: 2
%if %using_buildservice
%else
%endif
License: GPLv2
Group: System/Kernel
Url: http://www.kernel.org/
AutoReqProv: on
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
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
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
#!BuildIgnore: perl-Bootloader mkinitrd
%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
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
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: sparc64
# 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
# 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 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.
%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
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
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > 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
cat > .kernel-binary.spec.buildenv <<EOF
# Override the timestamp 'uname -v' reports with the build
# timestamp.
export KBUILD_BUILD_TIMESTAMP="$(head -n 1 %_sourcedir/source-timestamp)"
# The following branch/timestamp will end up in Oopses.
export OOPS_TIMESTAMP="$(
echo -n $(sed -ne 's/^GIT Branch: \(.*\)/\1-/p' \
%_sourcedir/source-timestamp)
head -n 1 %_sourcedir/source-timestamp \
| tr -dc 0-9)"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
EOF
%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
# If the %jobs 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 "jobs 0$(grep -c ^processor /proc/cpuinfo)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %jobs 0%(grep -c ^processor /proc/cpuinfo)
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc
make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2
%else
make %{?jobs:-j%jobs} 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 -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
%if %install_vdso
# Install the unstripped vdso's that are linked in the kernel image
make vdso_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
%endif
# Create a dummy initrd with roughly the size the real one will have.
# That way, YaST will know that this package requires some additional
# space in /boot.
dd if=/dev/zero of=%buildroot/boot/initrd-%kernelrelease-%build_flavor \
bs=1024 seek=2047 count=1
if [ %CONFIG_MODULES = y ]; then
mkdir -p %rpm_install_dir/%cpu_arch_flavor
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
if ! %_sourcedir/check-supported-list \
%_sourcedir %buildroot/lib/modules/%kernelrelease-%build_flavor; then
%if %supported_modules_check
exit 1
%endif
echo "Consistency check error: please update supported.conf."
fi
%ifarch s390 s390x
if 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 -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: Minimal kernel with disk and net support - base modules
License: GPLv2
Group: System/Kernel
Url: http://www.kernel.org/
AutoReqProv: on
Provides: multiversion(kernel)
Provides: kernel-base = %version-%source_rel
Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
%description base
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.
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: Minimal kernel with disk and net support - Unsupported kernel modules
License: GPLv2
Group: System/Kernel
Url: http://www.kernel.org/
AutoReqProv: on
Provides: multiversion(kernel)
Provides: %name-extra_%_target_cpu = %version-%release
Provides: kernel-extra = %version-%source_rel
Requires: %{name}_%_target_cpu = %version-%release
Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
Supplements: packageand(product(SUSE_SLED):%{name}_%_target_cpu)
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
%description extra
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.
This package contains additional modules not supported by Novell.
%source_timestamp
%preun extra -f preun-extra.sh
%postun extra -f postun-extra.sh
%pre extra -f pre-extra.sh
%post extra -f post-extra.sh
%if %split_extra
%files extra -f kernel-extra.files
%defattr(-, root, root)
%endif
%if %CONFIG_KMSG_IDS == "y"
%package man
Summary: The collection of man pages generated by the kmsg script.
License: GPLv2
Group: System/Kernel
%description man
This package includes the man pages that have been generated from the
kmsg message documentation comments.
%source_timestamp
%files man
%defattr(-,root,root)
/usr/share/man/man9/*
%endif
%package devel
Summary: Development files necessary for building kernel modules
License: GPLv2
Group: Development/Sources
Provides: multiversion(kernel)
Provides: %name-devel = %version-%source_rel
Requires: kernel-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: GPLv2
Group: Development/Debug
%description devel-debuginfo
Debug information for package %name-devel
%source_timestamp
%files devel-debuginfo -f vmlinux.debug.files
%changelog

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -101,6 +101,7 @@ 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

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,878 +0,0 @@
#
# spec file for package kernel-vmi
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
%define build_flavor vmi
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
%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-vmi
Summary: VMI-enabled kernel
Version: 2.6.38
Release: 2
%if %using_buildservice
%else
%endif
License: GPLv2
Group: System/Kernel
Url: http://www.kernel.org/
AutoReqProv: on
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
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
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
#!BuildIgnore: perl-Bootloader mkinitrd
%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
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
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
# 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 designed to run on top of a virtual machine
interface layer (VMI).
%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
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
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > 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
cat > .kernel-binary.spec.buildenv <<EOF
# Override the timestamp 'uname -v' reports with the build
# timestamp.
export KBUILD_BUILD_TIMESTAMP="$(head -n 1 %_sourcedir/source-timestamp)"
# The following branch/timestamp will end up in Oopses.
export OOPS_TIMESTAMP="$(
echo -n $(sed -ne 's/^GIT Branch: \(.*\)/\1-/p' \
%_sourcedir/source-timestamp)
head -n 1 %_sourcedir/source-timestamp \
| tr -dc 0-9)"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
EOF
%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
# If the %jobs 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 "jobs 0$(grep -c ^processor /proc/cpuinfo)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %jobs 0%(grep -c ^processor /proc/cpuinfo)
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc
make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2
%else
make %{?jobs:-j%jobs} 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 -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
%if %install_vdso
# Install the unstripped vdso's that are linked in the kernel image
make vdso_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
%endif
# Create a dummy initrd with roughly the size the real one will have.
# That way, YaST will know that this package requires some additional
# space in /boot.
dd if=/dev/zero of=%buildroot/boot/initrd-%kernelrelease-%build_flavor \
bs=1024 seek=2047 count=1
if [ %CONFIG_MODULES = y ]; then
mkdir -p %rpm_install_dir/%cpu_arch_flavor
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
if ! %_sourcedir/check-supported-list \
%_sourcedir %buildroot/lib/modules/%kernelrelease-%build_flavor; then
%if %supported_modules_check
exit 1
%endif
echo "Consistency check error: please update supported.conf."
fi
%ifarch s390 s390x
if 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 -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: VMI-enabled kernel - base modules
License: GPLv2
Group: System/Kernel
Url: http://www.kernel.org/
AutoReqProv: on
Provides: multiversion(kernel)
Provides: kernel-base = %version-%source_rel
Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
%description base
The Linux Kernel designed to run on top of a virtual machine
interface layer (VMI).
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: VMI-enabled kernel - Unsupported kernel modules
License: GPLv2
Group: System/Kernel
Url: http://www.kernel.org/
AutoReqProv: on
Provides: multiversion(kernel)
Provides: %name-extra_%_target_cpu = %version-%release
Provides: kernel-extra = %version-%source_rel
Requires: %{name}_%_target_cpu = %version-%release
Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
Supplements: packageand(product(SUSE_SLED):%{name}_%_target_cpu)
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
%description extra
The Linux Kernel designed to run on top of a virtual machine
interface layer (VMI).
This package contains additional modules not supported by Novell.
%source_timestamp
%preun extra -f preun-extra.sh
%postun extra -f postun-extra.sh
%pre extra -f pre-extra.sh
%post extra -f post-extra.sh
%if %split_extra
%files extra -f kernel-extra.files
%defattr(-, root, root)
%endif
%if %CONFIG_KMSG_IDS == "y"
%package man
Summary: The collection of man pages generated by the kmsg script.
License: GPLv2
Group: System/Kernel
%description man
This package includes the man pages that have been generated from the
kmsg message documentation comments.
%source_timestamp
%files man
%defattr(-,root,root)
/usr/share/man/man9/*
%endif
%package devel
Summary: Development files necessary for building kernel modules
License: GPLv2
Group: Development/Sources
Provides: multiversion(kernel)
Provides: %name-devel = %version-%source_rel
Requires: kernel-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: GPLv2
Group: Development/Debug
%description devel-debuginfo
Debug information for package %name-devel
%source_timestamp
%files devel-debuginfo -f vmlinux.debug.files
%changelog

View File

@ -1,3 +1,793 @@
-------------------------------------------------------------------
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.
- commit da138d8
-------------------------------------------------------------------
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 <linux/personality.h> 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 <linux/vmalloc.h>.
- 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 <linux/smp_lock.h>
- commit d7c79f2
-------------------------------------------------------------------
Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com
- olpc: Add <linux/delay.h>.
- 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 <linux/delay.h>.
- 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
@ -42,7 +832,9 @@ 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.
- commit 6cc2d2b
- 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

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ccd218b09f697eaf19e534a6933c6248a6ed0c16c60d80c0beca9267dd08e373
size 74736220

3
linux-2.6.39.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:584d17f2a3ee18a9501d7ff36907639e538cfdba4529978b8550c461d45c61f6
size 76096559

1
minmem Normal file
View File

@ -0,0 +1 @@
1048576

1
needed_space_in_mb Normal file
View File

@ -0,0 +1 @@
6144

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:617e8ded93369cfd273f43f10dc35f29d951a7199fb42b2e14bbf260425dfaf5
size 7972
oid sha256:e983af76e408802b165419548b17ed95e8d7b5765022505f9e8665ee3bfbbae2
size 8006

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:630a817e16c7246ce6817e59f03a5c0fdeef7122f428e521873d831478aa9ef3
size 76290
oid sha256:f488b8b8d084d999b025da0c00000dbcedea8e9bb2b0fb043dbcbe2c1615851c
size 61310

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:56200c8b75406d638fdaa8bbc5d44d12ba72ec876725a60688f1b1f589142e28
size 129708
oid sha256:628bd72eeff3129b98013526c4978bda67d956a21e6dabafe10324fc4be7f931
size 8284

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8db5c9adf8a504bab6e5a64cc05a9eae06f0aafe0976a0f075635e528797a32d
size 79457
oid sha256:29225fe2e1c48407fa49a2c1b5de011ff4d556f25529ee788a0d90904f7ff77e
size 27258

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4824f42861efd1cd29c73d0f28e253d0da30d718007d20940d0d14c72bd934b3
size 3749
oid sha256:b2561dc8750958c1350dc3ed54e854d71dcd32d59a6ab617cba66ef201105c1d
size 3373

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b2c5adb5ee2c1dd56e6094e6e670ed8b3ced3b61ebca4dbb85b1da367de1162
size 287104
oid sha256:23da661a493f70e20efe81a5cdb2af0ef30db6f93585a0b6dbd6fbd7061386c5
size 193368

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a62e7cee91f9d90bbdd542d8cc9dad823dacf6c146c822d98d06e577bd18a2ae
size 31156
oid sha256:bd54649991cae30e0821c52287c3b16425206921d2cb1835feb6918e73855563
size 131

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a45d90279c3bf6d7e23a30dd21192cd1f72103fd2b92e47075da2a3314ec30dd
size 2103229
oid sha256:673dcf251b7ae0325711a4c707938ff41e2c50d65b5bb90deae30738ba86c5a8
size 2115414

View File

@ -33,10 +33,8 @@
# Patches in patches.rpmify are applied to both -vanilla
# and patched flavors.
########################################################
patches.rpmify/tioca-fix-assignment-from-incompatible-pointer-warnings
patches.rpmify/ia64-mca-fix-cast-from-integer-to-pointer-warning
patches.rpmify/qla4xx-missing-readq-definition
patches.rpmify/winbond-needs-msleep
patches.rpmify/kvm-fix-off-by-one-in-kvm_for_each_vcpu-iteration
########################################################
# kABI consistency patches
@ -69,8 +67,6 @@
########################################################
# Simple export additions/removals
########################################################
patches.suse/export-release_open_intent
patches.suse/export-security_inode_permission
########################################################
# Bug workarounds for binutils
@ -80,9 +76,6 @@
# Scheduler / Core
########################################################
patches.suse/setuid-dumpable-wrongdir
patches.fixes/seccomp-disable-tsc-option
patches.suse/hung_task_timeout-configurable-default
+needs_update-33 patches.suse/sched-revert-latency-defaults
########################################################
# Architecture-specific patches. These used to be all
@ -95,9 +88,6 @@
# ia64
########################################################
patches.fixes/ia64-sparse-fixes.diff
patches.arch/mm-avoid-bad-page-on-lru
patches.arch/ia64-page-migration
patches.arch/ia64-page-migration.fix
########################################################
# i386
@ -114,28 +104,17 @@
########################################################
# x86_64/i386 biarch
########################################################
+needs_update37 patches.arch/x86-hpet-pre-read
+needs_update-33 patches.arch/x86_64-hpet-64bit-timer.patch
patches.arch/x86-mcp51-no-dac
+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
patches.suse/x86-mark_rodata_rw.patch
########################################################
# x86 MCE/MCA (Machine Check Error/Architecture) extensions
########################################################
# Needed on Boxboro/Westmere-EX to correctly decode the physical
# address of correctable errors
patches.arch/x86_mce_intel_decode_physical_address.patch
patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch
patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch
patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch
########################################################
# x86_64/4096CPUS - from SGI
@ -165,7 +144,6 @@
patches.arch/ppc64-xmon-dmesg-printing.patch
patches.arch/ppc-prom-nodisplay.patch
patches.fixes/ptrace-getsiginfo
patches.arch/ppc-ipic-suspend-without-83xx-fix
########################################################
# PS3
@ -174,9 +152,6 @@
########################################################
# S/390
########################################################
patches.arch/s390-add-FREE_PTE_NR
patches.suse/s390-System.map.diff
patches.arch/s390-message-catalog.diff
patches.arch/s390-message-catalog-fix.diff
patches.arch/kmsg-fix-parameter-limitations
@ -186,22 +161,14 @@
########################################################
# VM/FS patches
########################################################
patches.suse/unmap_vmas-lat
patches.fixes/oom-warning
patches.suse/shmall-bigger
patches.fixes/grab-swap-token-oops
+needs_update-32 patches.suse/osync-error
patches.fixes/remount-no-shrink-dcache
patches.suse/file-capabilities-disable-by-default.diff
+npiggin patches.suse/files-slab-rcu.patch
patches.suse/mm-tune-dirty-limits.patch
patches.suse/mm-devzero-optimisation.patch
+36 patches.fixes/aggressive-zone-reclaim.patch
patches.suse/readahead-request-tunables.patch
patches.fixes/fs-partitions-efi-c-corrupted-guid-partition-tables-can-cause-kernel-oops
########################################################
# IPC patches
@ -210,8 +177,6 @@
########################################################
# nfsacl protocol (agruen)
########################################################
+agruen patches.suse/nfsacl-client-cache-CHECK.diff
+agruen patches.fixes/nfs-acl-caching.diff
########################################################
# misc small fixes
@ -219,6 +184,8 @@
patches.suse/connector-read-mostly
patches.suse/kbd-ignore-gfx.patch
patches.fixes/scsi-aic94xx-world-writable-sysfs-update_bios-file
########################################################
#
# ACPI patches
@ -227,14 +194,7 @@
# Check resource conflicts between hwmon and ACPI OpRegs
patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch
+trenn patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch
+jeffm patches.suse/add-initramfs-file_read_write
+jeffm patches.suse/init-move-populate_rootfs-back-to-start_kernel
+jeffm patches.suse/acpi-generic-initramfs-table-override-support
+jeffm patches.suse/acpi-don-t-preempt-until-the-system-is-up
patches.arch/acpi_thermal_passive_blacklist.patch
patches.arch/acpi-export-hotplug_execute
patches.arch/acpi_fix_fadt_32_bit_zero_length.patch
@ -256,32 +216,21 @@
# CPUFREQ
########################################################
## cpuidle feature patch set still not consistent.
# patches.suse/cpuidle-cleanup
# patches.suse/cpuidle-implement-list
# patches.suse/cpuidle-cleanup-x86
# patches.suse/cpuidle-enable-pseries
# patches.suse/cpuidle-cleanup-pseries
# patches.suse/cpuidle-add-default-idle-ppc
# patches.suse/cpuidle-pseries-proc-idle
# patches.suse/cpuidle-eliminate-ppcmdpowersave1
# patches.suse/cpuidle-documentation
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
########################################################
+needs_update37 patches.arch/x86_agpgart-g33-stoeln-fix-2.patch
########################################################
# Suse specific stuff
########################################################
# TIOCGDEV - suse special
+still_needed? patches.suse/mm-increase-dirty-limits.patch
+needs_to_die-33 patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch
########################################################
# Networking, IPv6
@ -294,6 +243,7 @@
patches.fixes/nfs-slot-table-alloc
+needs_update37 patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch
patches.fixes/nfs-adaptive-readdir-plus
########################################################
# lockd + statd
@ -321,9 +271,8 @@
# Reiserfs Patches
########################################################
patches.suse/reiserfs-barrier-default
patches.fixes/reiserfs-remove-2-tb-file-size-limit
patches.fixes/reiserfs-xattr-crash-fix
patches.suse/reiser4-dependencies
patches.fixes/reiserfs-force-inode-evictions-before-umount-to-avoid-crash
+needs_updating-39 patches.suse/reiser4-dependencies
########################################################
# dlm
@ -345,28 +294,7 @@
# novfs
########################################################
patches.suse/novfs-client-module
patches.suse/novfs-fix-debug-message.patch
patches.suse/novfs-2.6.35-api-changes
patches.fixes/novfs-err_ptr-fix.diff
patches.fixes/novfs-fix-inode-uid
patches.fixes/novfs-incorrect-filesize-fix
patches.fixes/novfs-truncate-fix
patches.fixes/novfs-fix-oops-in-scope-finding
patches.fixes/novfs-dentry-cache-limit.patch
patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir
patches.fixes/novfs-LFS-initialization
patches.fixes/novfs-overflow-fixes
patches.fixes/novfs-bdi-init.diff
patches.fixes/novfs-xattr-memleak
patches.fixes/novfs-xattr-errcode-cleanup
patches.fixes/novfs-xattr-errcode-cleanup2
patches.fixes/novfs-lindent
patches.suse/novfs-fix-ioctl-usage
patches.suse/novfs-use-evict_inode
patches.fixes/novfs-unlink-oops
patches.suse/novfs-2.6.37-api-changes
patches.fixes/novfs-fragment-size-fix.patch
patches.suse/novfs-build-fix
patches.fixes/novfs-nwcapi.patch
########################################################
# other filesystem stuff: richacls
@ -397,49 +325,12 @@
########################################################
# Swap-over-NFS
########################################################
patches.suse/SoN-01-mm-setup_per_zone_wmarks.patch
patches.suse/SoN-02-doc.patch
patches.suse/SoN-03-mm-gfp-to-alloc_flags-expose.patch
patches.suse/SoN-04-page_alloc-reserve.patch
patches.suse/SoN-05-reserve-slub.patch
patches.suse/SoN-06-mm-kmem_estimate_pages.patch
patches.suse/SoN-07-mm-PF_MEMALLOC-softirq.patch
patches.suse/SoN-08-mm-page_alloc-emerg.patch
patches.suse/SoN-09-global-ALLOC_NO_WATERMARKS.patch
patches.suse/SoN-10-mm-page_alloc-GFP_EMERGENCY.patch
patches.suse/SoN-11-mm-reserve.patch
patches.suse/SoN-12-mm-selinux-emergency.patch
patches.suse/SoN-13-net-ps_rx.patch
patches.suse/SoN-14-net-sk_allocation.patch
patches.suse/SoN-15-netvm-reserve.patch
patches.suse/SoN-16-netvm-reserve-inet.patch
patches.suse/SoN-17-netvm-reserve-inet.patch-fix
patches.suse/SoN-18-netvm-skbuff-reserve.patch
patches.suse/SoN-19-netvm-sk_filter.patch
patches.suse/SoN-20-netvm-tcp-deadlock.patch
patches.suse/SoN-21-emergency-nf_queue.patch
patches.suse/SoN-22-netvm.patch
patches.suse/SoN-23-mm-swapfile.patch
patches.suse/SoN-24-mm-page_file_methods.patch
patches.suse/SoN-25-nfs-swapcache.patch
patches.suse/SoN-26-nfs-swapper.patch
patches.suse/SoN-27-nfs-swap_ops.patch
patches.suse/SoN-28-nfs-alloc-recursions.patch
patches.suse/SoN-29-fix-swap_sync_page-race
patches.suse/SoN-30-fix-uninitialized-var.patch
patches.suse/SoN-31-fix-null-pointer-dereference
patches.suse/SoN-32-fix-kernel-bug-with-multiple-swapfiles
# don't want to rediff SoN until this gets more testing
patches.suse/slab-handle-memoryless-nodes-v2a.patch
patches.suse/SoN-fix
########################################################
# Netfilter
########################################################
patches.suse/netfilter-ip_conntrack_slp.patch
patches.fixes/fix-nf_conntrack_slp
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
########################################################
@ -448,30 +339,27 @@
#
########################################################
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch
########################################################
# Storage
########################################################
# libata
patches.drivers/libata-unlock-hpa-by-default
# I believe this has been obsoleted upstream by
# commit d8d9129e
+disabled patches.drivers/libata-unlock-hpa-by-default
# Block layer fixes
patches.fixes/scsi-inquiry-too-short-ratelimit
patches.suse/scsi-netlink-ml
+needs_update patches.drivers/mpt-fusion-4.22.00.00-update
patches.fixes/scsi-dh-queuedata-accessors
patches.fixes/scsi-dh-alua-retry-UA
patches.fixes/scsi-add-tgps-setting
+needs_update-39 patches.fixes/scsi-add-tgps-setting
patches.fixes/scsi-dh-alua-send-stpg
patches.fixes/scsi-dh-rdac-add-stk
patches.fixes/scsi-retry-alua-transition-in-progress
patches.fixes/scsi-check-host-lookup-failure
patches.drivers/megaraid-mbox-fix-SG_IO
+needs_update-35 patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch
# Remaining SCSI patches (garloff)
patches.suse/scsi-error-test-unit-ready-timeout
@ -484,6 +372,7 @@
patches.fixes/sd_liberal_28_sense_invalid.diff
patches.fixes/scsi-ibmvscsi-module_alias.patch
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch
########################################################
# DRM/Video
@ -492,33 +381,17 @@
########################################################
# video4linux
########################################################
patches.fixes/flexcop-fix-registering-braindead-stupid-names
########################################################
# Network
########################################################
patches.fixes/tulip-quad-NIC-ifdown
patches.suse/nameif-track-rename.patch
patches.fixes/tg3-fix-default-wol.patch
patches.drivers/ehea-modinfo.patch
# entropy FATE##307517
patches.drivers/bnx2-entropy-source.patch
patches.drivers/e1000-entropy-source.patch
patches.drivers/e1000e-entropy-source.patch
patches.drivers/igb-entropy-source.patch
patches.drivers/ixgbe-entropy-source.patch
patches.drivers/tg3-entropy-source.patch
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch
########################################################
# Wireless Networking
########################################################
patches.suse/wireless-no-aes-select
patches.suse/b43-missing-firmware-info.patch
+needs_update patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices
########################################################
# ISDN
@ -548,27 +421,23 @@
########################################################
# Input & Console
########################################################
patches.suse/bootsplash
patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch
patches.suse/bootsplash-keep-multiple-data
patches.suse/bootsplash-scaler
patches.suse/bootsplash-console-fix
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
patches.fixes/hid-add-noget-quirk-for-symboltec.patch
##########################################################
# Sound
##########################################################
patches.drivers/alsa-hda-0019-Increase-default-buffer-size
########################################################
# Other driver fixes
########################################################
patches.fixes/parport-mutex
# suse-2.4 compatible crypto loop driver
patches.suse/twofish-2.6
# Allow setting maximum number of raw devices
patches.suse/raw_device_max_minors_param.diff
patches.suse/no-partition-scan
@ -580,6 +449,7 @@
########################################################
# Suspend/Resume stuff
########################################################
patches.fixes/PM-Print-a-warning-if-firmware-is-requested-when-tas.patch
########################################################
# device-mapper
@ -590,13 +460,13 @@
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.fixes/dm-mpath-reattach-dh
patches.suse/dm-mpath-leastpending-path-update
+needs_update patches.suse/dm-mpath-accept-failed-paths
+needs_update patches.suse/dm-mpath-detach-existing-hardware-handler
patches.suse/dm-mpath-null-pgs
patches.fixes/dm-table-switch-to-readonly
patches.suse/dm-mpath-evaluate-request-result-and-sense
+needs_update patches.suse/dm-mpath-evaluate-request-result-and-sense
patches.fixes/dm-release-map_lock-before-set_disk_ro
patches.suse/dm-mpath-no-activate-for-offlined-paths
patches.suse/dm-mpath-no-partitions-feature
@ -632,19 +502,6 @@
# KDB v4.4
########################################################
# patches.suse/kdb-common
# patches.suse/kdb-x86
# patches.suse/kdb-ia64
# patches.suse/kdb-build-fixes
# patches.suse/kdb-x86-build-fixes
# patches.suse/kdb-usb-rework
# patches.suse/kdb_fix_ia64_build.patch
# patches.suse/kdb_dont_touch_i8042_early.patch
# patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings
# patches.suse/kdb-handle-nonexistance-keyboard-controller
# patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro
# patches.suse/kdb-vm-api-changes-for-2-6-34
########################################################
# Other patches for debugging
########################################################
@ -652,12 +509,10 @@
patches.suse/stack-unwind
patches.suse/no-frame-pointer-select
patches.arch/x86_64-unwind-annotations
patches.arch/i386-unwind-annotations
########################################################
# Kdump
########################################################
+needs_update-33 patches.suse/kdump-dump_after_notifier.patch
########################################################
# cgroups
@ -666,22 +521,15 @@
########################################################
# audit subsystem
########################################################
patches.suse/audit-export-logging.patch
########################################################
# Performance Monitoring, Tracing etc
########################################################
patches.fixes/oprofile_bios_ctr.patch
patches.trace/utrace-core
patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch
########################################################
# KVM patches
########################################################
patches.fixes/kvm-ioapic.patch
patches.fixes/kvm-macos.patch
@ -689,21 +537,6 @@
# Staging tree patches
# new drivers that are going upstream
########################################################
patches.drivers/staging-samsung-laptop-add-support-for-lots-of-laptops.patch
########################################################
# "fastboot" patches
# These should all be upstream, we took them from
# moblin to try to speed up the boot process
########################################################
patches.suse/linux-2.6.29-dont-wait-for-mouse.patch
- patches.suse/linux-2.6.29-even-faster-kms.patch
patches.suse/linux-2.6.29-kms-after-sata.patch
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch
# some driver patches, should move up in the series...
patches.suse/linux-2.6.29-touchkit.patch
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch
########################################################
# You'd better have a good reason for adding a patch
@ -787,51 +620,46 @@
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-rc4
patches.xen/xen3-patch-2.6.38-rc4-rc5
patches.xen/xen3-patch-2.6.38-rc6-rc7
patches.xen/xen3-seccomp-disable-tsc-option
patches.xen/xen3-x86-mcp51-no-dac
patches.xen/xen3-x86-mark_rodata_rw.patch
patches.xen/xen3-patch-2.6.38
patches.xen/xen3-patch-2.6.39
patches.xen/xen3-stack-unwind
patches.xen/xen3-x86_64-unwind-annotations
# bugfixes and enhancements
patches.xen/xen-balloon-max-target
patches.xen/xen-block-backends-cleanup
patches.xen/xen-blkback-bimodal-suse
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-use-after-free
patches.xen/xen-blktap2-configurable-nr-devs
patches.xen/xen-op-packet
patches.xen/xen-blkfront-cdrom
patches.xen/xen-sections
patches.xen/xen-swiotlb-heuristics
patches.xen/xen-kconfig-compat
patches.xen/xen-cpufreq-report
patches.xen/xen-sysdev-suspend
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-configurable-guest-devices
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-tmem-v1
patches.xen/xen-cxgb3
patches.xen/xen-dcdbas
patches.xen/xen-floppy
patches.xen/xen-sections
patches.xen/xen-kzalloc
patches.xen/xen-unpriv-build
patches.xen/xen-setup-gsi
patches.xen/xen-watchdog
patches.xen/xen-sfc-netfront-gcc46
patches.xen/xen-x86-panic-no-reboot
patches.xen/xen-x86-dcr-fallback
patches.xen/xen-x86-no-lapic

View File

@ -1,3 +1,3 @@
2011-03-15 17:12:01 +0100
GIT Revision: 939410cedb342fe1d42053972f6d574378df281c
2011-05-23 13:35:38 +0200
GIT Revision: 3b6edffc98f47f5f431aaf96754bb5a4b263b759
GIT Branch: master

View File

@ -2047,7 +2047,8 @@
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
kernel/drivers/xen/blktap2/blktap2-new
kernel/drivers/xen/core/domctl
kernel/drivers/xen/evtchn
kernel/drivers/xen/gntdev/gntdev

3
sysctl.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c486da73fb5a20a18ab975da3ff78a6c6c06165e0e16634606807364b170993b
size 775