GIT Revision: a64b7f7b99649df732bbf2e62442808053af5256

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=56
This commit is contained in:
Michal Marek 2011-05-21 05:04:56 +00:00 committed by Git OBS Bridge
parent c43f1a790b
commit c0405a1a79
48 changed files with 14135 additions and 484 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

@ -60,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:98daf33b5d00540664378feeb3afbed0ff6ceed886829741b5e9d94c3cd6ed23
size 226431
oid sha256:5720300e690748fe5d51cc5b991e6226ae774ae98cc10b0f1d0a1d594487399e
size 225152

View File

@ -266,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
@ -452,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,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-debug (Version 2.6.38.6)
# spec file for package kernel-debug (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-debug
Summary: A Debug Version of the Kernel
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -196,6 +196,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
ExclusiveArch: %ix86 ia64 ppc64 x86_64
@ -216,6 +217,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -271,7 +273,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -341,18 +343,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
@ -527,6 +523,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
@ -872,11 +877,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -884,6 +911,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -899,7 +930,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -907,7 +939,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -923,6 +978,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -931,21 +1040,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -974,6 +1228,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -982,6 +1249,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1009,6 +1323,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1027,12 +1346,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1047,6 +1410,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-default (Version 2.6.38.6)
# spec file for package kernel-default (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-default
Summary: The Standard Kernel
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -212,8 +212,9 @@ Source111: patches.rt.tar.bz2
Source112: patches.trace.tar.bz2
Source113: patches.kabi.tar.bz2
Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 ia64 ppc ppc64 s390x sparc64 x86_64
ExclusiveArch: %ix86 ia64 ppc ppc64 s390x x86_64
# These files are found in the kernel-source package:
NoSource: 0
@ -232,6 +233,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -286,7 +288,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -356,18 +358,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
@ -542,6 +538,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
@ -885,11 +890,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -897,6 +924,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -912,7 +943,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -920,7 +952,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -936,6 +991,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -944,21 +1053,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -987,6 +1241,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -995,6 +1262,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1022,6 +1336,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1040,12 +1359,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1060,6 +1423,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-desktop (Version 2.6.38.6)
# spec file for package kernel-desktop (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-desktop
Summary: Kernel optimized for the desktop
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -193,6 +193,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
ExclusiveArch: %ix86 x86_64
@ -213,6 +214,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -280,7 +282,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -350,18 +352,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
@ -536,6 +532,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
@ -905,11 +910,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -917,6 +944,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -932,7 +963,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -940,7 +972,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -956,6 +1011,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -964,21 +1073,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -1007,6 +1261,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -1015,6 +1282,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1042,6 +1356,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1060,12 +1379,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1080,6 +1443,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-docs (Version 2.6.38.6)
# spec file for package kernel-docs (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,14 +17,14 @@
# norootforbuild
%define patchversion 2.6.38.6
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
Name: kernel-docs
Summary: Kernel Documentation
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -99,11 +99,33 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/doc/kernel
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -111,6 +133,10 @@ rm -rf $RPM_BUILD_ROOT
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -126,7 +152,8 @@ rm -rf $RPM_BUILD_ROOT
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -134,7 +161,30 @@ rm -rf $RPM_BUILD_ROOT
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -150,6 +200,60 @@ rm -rf $RPM_BUILD_ROOT
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -158,21 +262,166 @@ rm -rf $RPM_BUILD_ROOT
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -201,6 +450,19 @@ rm -rf $RPM_BUILD_ROOT
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -209,6 +471,53 @@ rm -rf $RPM_BUILD_ROOT
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -236,6 +545,11 @@ rm -rf $RPM_BUILD_ROOT
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -254,12 +568,56 @@ rm -rf $RPM_BUILD_ROOT
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -274,6 +632,9 @@ rm -rf $RPM_BUILD_ROOT
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-ec2 (Version 2.6.38.6)
# spec file for package kernel-ec2 (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-ec2
Summary: The Amazon EC2 Xen Kernel
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -193,6 +193,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
ExclusiveArch: %ix86 x86_64
@ -213,6 +214,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -270,7 +272,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -340,18 +342,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
@ -526,6 +522,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
@ -875,11 +880,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -887,6 +914,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -902,7 +933,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -910,7 +942,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -926,6 +981,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -934,21 +1043,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -977,6 +1231,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -985,6 +1252,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1012,6 +1326,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1030,12 +1349,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1050,6 +1413,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-pae (Version 2.6.38.6)
# spec file for package kernel-pae (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-pae
Summary: Kernel with PAE Support
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -196,6 +196,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
ExclusiveArch: %ix86
@ -216,6 +217,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -277,7 +279,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -347,18 +349,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
@ -533,6 +529,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
@ -890,11 +895,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -902,6 +929,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -917,7 +948,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -925,7 +957,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -941,6 +996,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -949,21 +1058,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -992,6 +1246,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -1000,6 +1267,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1027,6 +1341,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1045,12 +1364,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1065,6 +1428,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-ppc64 (Version 2.6.38.6)
# spec file for package kernel-ppc64 (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-ppc64
Summary: Kernel for ppc64 Systems
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -200,6 +200,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
ExclusiveArch: ppc ppc64
@ -220,6 +221,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -281,7 +283,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -351,18 +353,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
@ -537,6 +533,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
@ -894,11 +899,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -906,6 +933,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -921,7 +952,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -929,7 +961,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -945,6 +1000,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -953,21 +1062,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -996,6 +1250,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -1004,6 +1271,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1031,6 +1345,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1049,12 +1368,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1069,6 +1432,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-ps3 (Version 2.6.38.6)
# spec file for package kernel-ps3 (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-ps3
Summary: kernel for ps3 bootloader
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -193,6 +193,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
ExclusiveArch: ppc
@ -213,6 +214,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -270,7 +272,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -340,18 +342,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
@ -526,6 +522,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
@ -875,11 +880,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -887,6 +914,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -902,7 +933,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -910,7 +942,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -926,6 +981,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -934,21 +1043,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -977,6 +1231,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -985,6 +1252,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1012,6 +1326,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1030,12 +1349,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1050,6 +1413,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-s390 (Version 2.6.38.6)
# spec file for package kernel-s390 (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-s390
Summary: The Standard Kernel
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -196,6 +196,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
ExclusiveArch: s390
@ -216,6 +217,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -270,7 +272,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -340,18 +342,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
@ -526,6 +522,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
@ -869,11 +874,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -881,6 +908,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -896,7 +927,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -904,7 +936,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -920,6 +975,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -928,21 +1037,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -971,6 +1225,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -979,6 +1246,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1006,6 +1320,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1024,12 +1343,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1044,6 +1407,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-source (Version 2.6.38.6)
# spec file for package kernel-source (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -18,8 +18,8 @@
# norootforbuild
# icecream 0
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%define vanilla_only 0
@ -29,7 +29,7 @@
Name: kernel-source
Summary: The Linux Kernel Sources
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -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
@ -155,7 +156,7 @@ fi
echo "Symbol(s): %symbols"
# Unpack all sources and patches
%setup -q -c -T -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120
%setup -q -c -T -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
%build
mkdir -p $RPM_BUILD_ROOT/usr/src
@ -254,11 +255,33 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
%endif
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -266,6 +289,10 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -281,7 +308,8 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -289,7 +317,30 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -305,6 +356,60 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -313,21 +418,166 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -356,6 +606,19 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -364,6 +627,53 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -391,6 +701,11 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -409,12 +724,56 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -429,6 +788,9 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

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,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-syms (Version 2.6.38.6)
# spec file for package kernel-syms (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -23,7 +23,7 @@
Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -35,7 +35,7 @@ Group: Development/Sources
Url: http://www.kernel.org/
AutoReqProv: off
BuildRequires: coreutils
%ifarch %ix86 ia64 ppc ppc64 s390x sparc64 x86_64
%ifarch %ix86 ia64 ppc ppc64 s390x x86_64
Requires: kernel-default-devel = %version-%source_rel
%endif
%ifarch %ix86 x86_64
@ -58,7 +58,7 @@ Provides: %name = %version-%source_rel
Source: README.KSYMS
Requires: kernel-devel%variant = %version-%source_rel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 ia64 ppc ppc64 s390 s390x sparc64 x86_64
ExclusiveArch: %ix86 ia64 ppc ppc64 s390 s390x x86_64
Prefix: /usr/src
%description
@ -81,11 +81,33 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
%_docdir/%name/README.SUSE
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -93,6 +115,10 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -108,7 +134,8 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -116,7 +143,30 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -132,6 +182,60 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -140,21 +244,166 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -183,6 +432,19 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -191,6 +453,53 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -218,6 +527,11 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -236,12 +550,56 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -256,6 +614,9 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-trace (Version 2.6.38.6)
# spec file for package kernel-trace (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-trace
Summary: The Standard Kernel with Tracing Features
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -204,6 +204,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
ExclusiveArch: %ix86 ia64 ppc64 s390 s390x x86_64
@ -224,6 +225,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -278,7 +280,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -348,18 +350,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
@ -534,6 +530,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
@ -877,11 +882,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -889,6 +916,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -904,7 +935,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -912,7 +944,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -928,6 +983,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -936,21 +1045,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -979,6 +1233,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -987,6 +1254,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1014,6 +1328,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1032,12 +1351,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1052,6 +1415,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-vanilla (Version 2.6.38.6)
# spec file for package kernel-vanilla (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -200,6 +200,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
ExclusiveArch: %ix86 ia64 ppc ppc64 s390 s390x x86_64
@ -220,6 +221,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -274,7 +276,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -344,18 +346,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
@ -530,6 +526,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
@ -873,11 +878,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -885,6 +912,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -900,7 +931,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -908,7 +940,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -924,6 +979,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -932,21 +1041,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -975,6 +1229,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -983,6 +1250,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1010,6 +1324,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1028,12 +1347,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1048,6 +1411,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
@ -6,6 +40,12 @@ Tue May 17 20:54:05 CEST 2011 - jslaby@suse.cz
Note upstream commit SHA.
- commit 17fc03c
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Sun May 15 15:06:02 CEST 2011 - jslaby@suse.cz
@ -19,6 +59,13 @@ Fri May 13 17:45:01 CEST 2011 - mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
-------------------------------------------------------------------
Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
-------------------------------------------------------------------
Fri May 13 10:58:24 CEST 2011 - mmarek@suse.cz
@ -45,7 +92,8 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
-------------------------------------------------------------------
Thu May 12 23:06:58 CEST 2011 - gregkh@suse.de
@ -59,8 +107,46 @@ 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 .38.5.
- 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 b64bc58
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Tue May 10 12:19:46 CEST 2011 - jslaby@suse.cz
@ -82,6 +168,96 @@ Tue May 10 09:05:54 CEST 2011 - jslaby@suse.cz
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Mon May 2 22:22:28 CEST 2011 - gregkh@suse.de
@ -96,6 +272,13 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
-------------------------------------------------------------------
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 14:38:05 CEST 2011 - jslaby@suse.cz
@ -103,12 +286,107 @@ Fri Apr 29 14:38:05 CEST 2011 - jslaby@suse.cz
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
-------------------------------------------------------------------
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).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
@ -116,6 +394,158 @@ Thu Apr 28 01:54:00 CEST 2011 - mfasheh@suse.com
(bnc#679545).
- commit f9ddc29
-------------------------------------------------------------------
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 17:19:14 CEST 2011 - jslaby@suse.cz
@ -125,6 +555,8 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
-------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -160,6 +592,31 @@ Fri Apr 22 09:56:35 CEST 2011 - jslaby@suse.cz
- Update config files.
- commit 4632d1a
-------------------------------------------------------------------
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 22:48:18 CEST 2011 - jack@suse.cz
@ -174,6 +631,83 @@ Tue Apr 19 18:57:55 CEST 2011 - jack@suse.cz
(bnc#679898).
- commit c04b19f
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Apr 15 00:28:16 CEST 2011 - bphilips@suse.de
@ -209,9 +743,17 @@ Thu Apr 14 18:44:56 CEST 2011 - jeffm@suse.com
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
-------------------------------------------------------------------
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.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -230,7 +772,7 @@ Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
-------------------------------------------------------------------
Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
@ -239,9 +781,83 @@ Wed Apr 13 23:57:58 CEST 2011 - jeffm@suse.com
CVE-2011-1180).
- commit 1d6013e
-------------------------------------------------------------------
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).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -263,6 +879,12 @@ Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de
- 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
-------------------------------------------------------------------
Thu Mar 31 20:43:57 CEST 2011 - jslaby@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package kernel-xen (Version 2.6.38.6)
# spec file for package kernel-xen (Version 2.6.39)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 2.6.38
%define patchversion 2.6.38.6
%define srcversion 2.6.39
%define patchversion 2.6.39
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-xen
Summary: The Xen Kernel
Version: 2.6.38.6
Version: 2.6.39
%if %using_buildservice
Release: <RELEASE>
%else
@ -193,6 +193,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
ExclusiveArch: %ix86 x86_64
@ -213,6 +214,7 @@ NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
@ -270,7 +272,7 @@ if test -e %_sourcedir/extra-symbols; then
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
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
@ -340,18 +342,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
@ -526,6 +522,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
@ -875,11 +880,33 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Fri May 20 2011 jslaby@suse.cz
- PM: Print a warning if firmware is requested when tasks are
frozen (bnc#695219).
- commit e78f4ce
* Fri May 20 2011 jslaby@suse.cz
- Refresh
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch.
Bah, cherry-picked a wrong version. Fix it.
- commit f9674b8
* Fri May 20 2011 jslaby@suse.cz
- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch.
It was part of removed SoN patches.
- commit 1d0599a
* Fri May 20 2011 jeffm@suse.com
- Updated to 2.6.39-final.
- commit 7c72384
* Thu May 19 2011 jbeulich@novell.com
- supported.conf: blktap2 modules are supported.
- commit fa60394
* Tue May 17 2011 jslaby@suse.cz
- Refresh
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch.
Note upstream commit SHA.
- commit 17fc03c
* Mon May 16 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.
- commit f3bdb4c
* Sun May 15 2011 jslaby@suse.cz
- eeepc-laptop: Use ACPI handle to identify rfkill port
(bnc#595586).
@ -887,6 +914,10 @@ Debug information for package %name-devel
* Fri May 13 2011 mhocko@suse.cz
- proc: fix oops on invalid /proc/<pid>/maps access (bnc#693382).
- commit 0422a7e
* Fri May 13 2011 jeffm@suse.com
- Update to 2.6.39-rc7.
- Eliminated 5 patches.
- commit a8a170f
* Fri May 13 2011 mmarek@suse.cz
- Build the kotd against 11.4
- commit 2ad3395
@ -902,7 +933,8 @@ Debug information for package %name-devel
- commit 485c6fe
* Thu May 12 2011 jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- commit 7ef799b
- block: add proper state guards to __elv_next_request.
- commit bcb6433
* Thu May 12 2011 gregkh@suse.de
- libata: fix oops when LPM is used with PMP.
- commit 762704b
@ -910,7 +942,30 @@ Debug information for package %name-devel
- Delete
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
It's fixed differently by commits 43f12d47f and f844a709a7 in .38.5.
- 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 b64bc58
* Thu May 12 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
Note about submission.
- commit 9922e20
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/files-slab-rcu.patch.
- commit 6547edf
* Tue May 10 2011 mhocko@suse.cz
- patches.fixes/aggressive-zone-reclaim.patch: delete because
the patch is very workload specific and can lead to unexpected
reclaims in parallel node local workloads.
- commit 56cf10e
* Tue May 10 2011 mhocko@suse.cz
- Delete patches.suse/mm-devzero-optimisation.patch: we do not need
it anymore as we have zero page back since 2.6.32
- commit 323a093
* Tue May 10 2011 mmarek@suse.cz
- Really delete patches.fixes/aggressive-zone-reclaim.patch.
- commit b21d4b6
* Tue May 10 2011 jslaby@suse.cz
- deal with races in /proc/*/{syscall,stack,personality}
(bnc#674982 CVE-2011-1020).
@ -926,6 +981,60 @@ Debug information for package %name-devel
- Linux 2.6.38.6.
- Refresh patches.fixes/scsi-dh-queuedata-accessors.
- commit 5e831f6
* Mon May 09 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc6.
- commit b976a7e
* Mon May 09 2011 jbeulich@novell.com
- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank
lines (for older versions of "patch" to grok).
- commit 4dfa74d
* Sat May 07 2011 jeffm@suse.com
- Removed network driver entropy patches. haveged is installed by default
and should be enabled to generate entropy from non-predictable sources.
- Delete patches.drivers/bnx2-entropy-source.patch.
- Delete patches.drivers/e1000-entropy-source.patch.
- Delete patches.drivers/e1000e-entropy-source.patch.
- Delete patches.drivers/igb-entropy-source.patch.
- Delete patches.drivers/ixgbe-entropy-source.patch.
- Delete patches.drivers/tg3-entropy-source.patch.
- commit c88b893
* Fri May 06 2011 jeffm@suse.com
- Update
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
(bnc#466279 bnc#681639).
- commit 72e779f
* Fri May 06 2011 jeffm@suse.com
- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have
been obsoleted by upstream commit d8d9129e.
- commit 1a21ab3
* Fri May 06 2011 jeffm@suse.com
- sysctl: Increase IPC defaults (bnc#146656)
- Delete patches.suse/shmall-bigger.
- commit a70e34f
* Fri May 06 2011 jeffm@suse.com
- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20
for desktop flavors (bnc#552883)
- Delete patches.suse/mm-tune-dirty-limits.patch.
- commit dbe73e2
* Fri May 06 2011 jeffm@suse.com
- sysctl/defaults: Added kernel.hung_task_timeout=0
- Delete patches.suse/hung_task_timeout-configurable-default.
- commit 78f9eed
* Fri May 06 2011 mmarek@suse.cz
- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-*
files (patch from Jeff Mahoney).
- commit 473f2d1
* Thu May 05 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 97ce5d8
* Thu May 05 2011 jeffm@suse.com
- Updated to 2.6.39-rc6.
- 2 patches eliminated.
- commit 2643e59
* Tue May 03 2011 tonyj@suse.de
- Delete patches.fixes/oprofile_bios_ctr.patch.
- Delete patches.suse/kdump-dump_after_notifier.patch.
- commit 012455a
* Mon May 02 2011 gregkh@suse.de
- Update config files to handle .5 changes
- commit 0274ea5
@ -934,21 +1043,166 @@ Debug information for package %name-devel
- Delete
patches.fixes/flexcop-fix-registering-braindead-stupid-names.
- commit d41164a
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
* Fri Apr 29 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit c602ee1
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226
* Fri Apr 29 2011 tiwai@suse.de
- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix.
- Delete patches.arch/x86-hpet-pre-read.
- commit 3489146
* Fri Apr 29 2011 gregkh@suse.de
- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch.
- Delete patches.suse/linux-2.6.29-even-faster-kms.patch.
- Delete
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch.
- Delete patches.suse/linux-2.6.29-kms-after-sata.patch.
- Delete patches.suse/linux-2.6.29-touchkit.patch.
- commit c13427d
* Fri Apr 29 2011 jbenc@suse.cz
- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch.
- commit df46fe0
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.xen/xen3-x86-mcp51-no-dac.
Also remove the series.conf entires for the x86-mcp-no-dac patches.
- commit 574577b
* Thu Apr 28 2011 rjw@suse.de
- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that
has been rejected by the mainline, the problem reporter is gone and
it's next to impossible to verify it now.)
- commit 195b113
* Thu Apr 28 2011 jslaby@suse.cz
- Refresh
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
- commit a2662ae
* Thu Apr 28 2011 jslaby@suse.cz
- Delete patches.suse/wireless-no-aes-select.
Optimized x86 AES implementations select CRYPTO_AES themselves. So we
don't need the patch anymore -- AES is selected always.
- commit 88f80fa
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch.
- commit 9917206
* Thu Apr 28 2011 bphilips@suse.de
- Delete
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch.
- commit 08374b3
* Thu Apr 28 2011 jeffm@suse.com
- Delete patches.suse/audit-export-logging.patch.
- commit de054eb
* Thu Apr 28 2011 jbeulich@novell.com
- Update i386 Xen config files.
- commit 7b776ee
* Thu Apr 28 2011 jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119).
- commit 0fd91a9
* Thu Apr 28 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc5.
- Delete patches.xen/xen3-seccomp-disable-tsc-option.
- Delete patches.xen/xen3-x86-mark_rodata_rw.patch.
- commit 81fdf67
* Thu Apr 28 2011 mfasheh@suse.com
- btrfs: return EXDEV when linking from different subvolumes
(bnc#679545).
- commit f9ddc29
* Wed Apr 27 2011 jeffm@suse.com
- Delete
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch.
- commit 399a100
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch.
- commit e5c964a
* Wed Apr 27 2011 jeffm@suse.com
- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch.
- commit 213a0d5
* Wed Apr 27 2011 jeffm@suse.com
- Removed Swap-over-NFS patches.
- commit e061d16
* Wed Apr 27 2011 jeffm@suse.com
- Unified novfs patches into patches.suse/novfs-client-module.
- commit 3f8a199
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit.
- commit 2d63b14
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch
- commit 4f8033f
* Wed Apr 27 2011 jeffm@suse.com
- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone.
- commit 93ce9f3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean.
- commit f178332
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch.
- commit 5a2eae2
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up.
- Delete
patches.suse/acpi-generic-initramfs-table-override-support.
- Delete patches.suse/add-initramfs-file_read_write.
- Delete
patches.suse/init-move-populate_rootfs-back-to-start_kernel.
- commit d4910b3
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/nfs-acl-caching.diff.
- Delete patches.suse/nfsacl-client-cache-CHECK.diff.
- commit e1a5c5c
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/osync-error. It was unused and the issue it fixed in
kernels prior to 2.6.32 doesn't exist anymore.
- commit 52cc654
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has
long since been upstream.
- commit 2847a36
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/x86-mark_rodata_rw.patch: Removed as promised.
- commit f196f98
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.arch/ia64-page-migration.
- Delete patches.arch/ia64-page-migration.fix.
- Delete patches.arch/mm-avoid-bad-page-on-lru.
- commit e469a91
* Wed Apr 27 2011 jeffm@suse.com
- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline.
- commit 4bcc987
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs.
- commit 0833556
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by.
- Delete patches.arch/s390-add-FREE_PTE_NR.
- commit 2a392c2
* Wed Apr 27 2011 jeffm@suse.com
- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff.
- commit d79b32f
* Wed Apr 27 2011 jeffm@suse.com
- Update to 2.6.39-rc5.
- Eliminated 2 patches.
- commit 5288a05
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.suse/export-release_open_intent.
- Delete patches.suse/export-security_inode_permission.
- commit 5cd669f
* Wed Apr 27 2011 jeffm@suse.com
- Delete patches.trace/utrace-core.
- commit a9639aa
* Tue Apr 26 2011 jslaby@suse.cz
- NET: cdc-phonet, fix stop-queue handling (bnc#689583).
- commit 7b4abdd
* Tue Apr 26 2011 jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- commit dcae8fa
@ -977,6 +1231,19 @@ Debug information for package %name-devel
- Refresh patches.xen/xen3-patch-2.6.27.
- Update config files.
- commit 4632d1a
* Fri Apr 22 2011 jeffm@suse.com
- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev.
- commit e74929e
* Tue Apr 19 2011 jack@suse.cz
- Revert changes to sparc configs to not make life harder for Jan Engelhardt
maintaining sparc architecture.
- commit cdac873
* Tue Apr 19 2011 jack@suse.cz
- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt
- commit 91307e3
* Tue Apr 19 2011 jack@suse.cz
- Update vanilla config files.
- commit 5e3c232
* Tue Apr 19 2011 jack@suse.cz
- ext4: fix ext4_da_block_invalidatepages() to handle page range
properly (bnc#679898).
@ -985,6 +1252,53 @@ Debug information for package %name-devel
- ext4: mark multi-page IO complete on mapping failure
(bnc#679898).
- commit c04b19f
* Tue Apr 19 2011 jeffm@suse.com
- Updated to 2.6.39-rc4.
- Eliminated 1 patch.
- commit 3f654c8
* Tue Apr 19 2011 jeffm@suse.com
- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143).
- commit b09d00e
* Mon Apr 18 2011 eich@suse.de
- Combined and consolidated bootsplash patch (bnc#669777,
bnc#570082, bnc#595657, bnc#594209, bnc#544645).
- Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch.
- Delete patches.suse/bootsplash.
- Delete patches.suse/bootsplash-console-fix.
- Delete patches.suse/bootsplash-keep-multiple-data.
- Delete patches.suse/bootsplash-scaler.
- Reformatted code, fixed some minor bugs that became obvious.
- Fixed race that led to null pointer dereference in splash_read_proc():
bnc#669777.
- commit 95844c5
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161).
- commit 02c0d8a
* Sat Apr 16 2011 trenn@suse.de
- intel_idle: Make lapic_timer_reliable_states a boot param
(bnc#675161).
- commit 85b156b
* Sat Apr 16 2011 jack@suse.cz
- Disable ext2, use ext4 instead as a driver
- Update config files.
- commit 2601b15
* Fri Apr 15 2011 jeffm@suse.com
- Enabled CONFIG_GIGASET_CAPI (bnc#686008).
- This results in automatically disabling CONFIG_GIGASET_I4L.
- commit 697e68b
* Fri Apr 15 2011 jack@suse.cz
- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).
- commit 860f111
* Fri Apr 15 2011 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: Re-add.
- commit 728e154
* Fri Apr 15 2011 jbeulich@novell.com
- Update Xen patches to 2.6.39-rc3 and c/s 1079.
- blktap2: replace hard-coded limit of tap devices with
configurable one.
- config.conf: Re-enable Xen configs.
- Update x86 config files.
- commit d3bfd6c
* Fri Apr 15 2011 bphilips@suse.de
- bonding: Incorrect TX queue offset (bnc#687116, CVE-2011-1581).
- commit 6d208f9
@ -1012,6 +1326,11 @@ Debug information for package %name-devel
kernel oops (bnc#687113 CVE-2011-1577).
- commit cc60bed
* Thu Apr 14 2011 jeffm@suse.com
- fs/partitions/efi.c: corrupted GUID partition tables can cause
kernel oops (bnc#687113 CVE-2011-1577).
- commit 385b393
* Thu Apr 14 2011 jeffm@suse.com
- scsi: aic94xx: world-writable sysfs update_bios file.
- drivers/leds/leds-lp5523.c: world-writable engine* sysfs files
(bnc#673934).
- drivers/leds/leds-lp5521.c: world-writable sysfs engine* files
@ -1030,12 +1349,56 @@ Debug information for package %name-devel
- drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file
(bnc#673934).
- video: sn9c102: world-wirtable sysfs files (bnc#673934).
- commit 7228bb4
- commit 7f827e6
* Wed Apr 13 2011 jeffm@suse.com
- irda: validate peer name and attribute lengths (bnc#681497
CVE-2011-1180).
- commit 1d6013e
* Wed Apr 13 2011 jeffm@suse.com
- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev).
- ft1000: Remove unnecessary EXPORT_SYMBOLs.
- commit 62653bb
* Wed Apr 13 2011 jeffm@suse.de
- fhandle: Add <linux/personality.h> for ia64.
- commit 83cec5a
* Wed Apr 13 2011 jeffm@suse.com
- kvm: Fix off by one in kvm_for_each_vcpu iteration.
- commit 4e5c2b7
* Wed Apr 13 2011 jeffm@suse.com
- rts_pstor: Add <linux/vmalloc.h>.
- rts_pstor: use #ifdef instead of #if.
- commit caa5347
* Tue Apr 12 2011 jeffm@suse.com
- gma500: Depend on X86.
- commit 3aa298c
* Tue Apr 12 2011 jeffm@suse.com
- Updated to 2.6.39-rc3.
- Eliminated 2 patches.
- commit 200c913
* Tue Apr 12 2011 jeffm@suse.com
- patches.suse/s390-Kerntypes.diff: remove <linux/smp_lock.h>
- commit d7c79f2
* Tue Apr 12 2011 jeffm@suse.com
- olpc: Add <linux/delay.h>.
- commit 58ce0db
* Tue Apr 12 2011 jeffm@suse.com
- Update config files for -vanilla.
- commit 52fe306
* Tue Apr 12 2011 jeffm@suse.com
- Update to 2.6.39-rc2.
- Eliminated 18 patches.
- Added 3 patches.
- hv_mouse: needs <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 2011 neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- commit 78e8a63
@ -1050,6 +1413,9 @@ Debug information for package %name-devel
(bnc#610598 bnc#680073 bnc#684112).
- Delete patches.fixes/reiserfs-xattr-crash-fix.
- commit bf57d20
* Tue Apr 05 2011 jslaby@suse.cz
- remove obsolete comment from series.conf
- commit 4bad172
* Thu Mar 31 2011 jslaby@suse.cz
- x86: Save cr4 to mmu_cr4_features at boot time (bnc#684248).
- commit 98ac070

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

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:3012816e908a764405a3e0269ac5d2064ec80e0b0a034d38f38078afbfc581d9
size 70188
oid sha256:f488b8b8d084d999b025da0c00000dbcedea8e9bb2b0fb043dbcbe2c1615851c
size 61310

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4cfa1e1283f893419a226cf8a8ec7077240ece76f5a24d761510017c65a2d143
size 132061
oid sha256:628bd72eeff3129b98013526c4978bda67d956a21e6dabafe10324fc4be7f931
size 8284

View File

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

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aaf70d8bc53c826fd2e81a47e90b0f64959fc7f37c1e75f31745f6c5fbdb60a6
size 134071
oid sha256:9dde5510f9ad1aef9c1f1d3b2a8099a006fe55fdab5ebcf2c141624b999d057e
size 136

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:01b097cde29ee5ca4bacfe56465e6e6ca81b8afc07b2dfa24aa1d874d1ce3ea1
size 3318
oid sha256:b2561dc8750958c1350dc3ed54e854d71dcd32d59a6ab617cba66ef201105c1d
size 3373

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:319386e3014f5c28cfcad9128362306fe6bfa982ae765eed07eb57c07338f3cd
size 282540
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:761599edc3ae1b5c86bc9d810fa108d368e4f946971a1ac2bf31f2d5ec78e09d
size 2107134
oid sha256:317afa5ea7858690bf4512d1b56e60fd3a40b5ff0391176860ff07ae36f482ae
size 2115996

View File

@ -27,13 +27,6 @@
# DO NOT MODIFY THEM!
# Send separate patches upstream if you find a problem...
########################################################
patches.kernel.org/patch-2.6.38.1
patches.kernel.org/patch-2.6.38.1-2
patches.kernel.org/patch-2.6.38.2-3
patches.kernel.org/patch-2.6.38.3-4
patches.kernel.org/patch-2.6.38.4-5
patches.kernel.org/patch-2.6.38.5-6
patches.kernel.org/libata-fix-oops-when-lpm-is-used-with-pmp.patch
########################################################
# Build fixes that apply to the vanilla kernel too.
@ -41,7 +34,7 @@
# and patched flavors.
########################################################
patches.rpmify/qla4xx-missing-readq-definition
patches.rpmify/dw_spi-fix-PPC-build.patch
patches.rpmify/kvm-fix-off-by-one-in-kvm_for_each_vcpu-iteration
########################################################
# kABI consistency patches
@ -74,8 +67,6 @@
########################################################
# Simple export additions/removals
########################################################
patches.suse/export-release_open_intent
patches.suse/export-security_inode_permission
########################################################
# Bug workarounds for binutils
@ -85,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
@ -100,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
@ -119,18 +104,13 @@
########################################################
# 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
########################################################
@ -164,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
@ -173,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
@ -185,25 +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/page_cgroup-reduce-allocation-overhead.patch
patches.fixes/mm-add-alloc_pages_exact_nid.patch
patches.fixes/memcg-allocate-memory-cgroup-structures-in-local-nod.patch
patches.fixes/fs-partitions-efi-c-corrupted-guid-partition-tables-can-cause-kernel-oops
########################################################
# IPC patches
@ -212,8 +177,6 @@
########################################################
# nfsacl protocol (agruen)
########################################################
+agruen patches.suse/nfsacl-client-cache-CHECK.diff
+agruen patches.fixes/nfs-acl-caching.diff
########################################################
# misc small fixes
@ -231,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
@ -260,39 +216,26 @@
# 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
########################################################
patches.fixes/bridge-module-get-put.patch
patches.fixes/bonding-Incorrect-TX-queue-offset.patch
patches.fixes/cdc-phonet-fix-stop-queue-handling.patch
########################################################
# NFS
@ -300,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
@ -318,21 +262,17 @@
########################################################
# ext4
########################################################
patches.fixes/ext4-mark-multi-page-IO-complete-on-mapping-failure.patch
patches.fixes/ext4-fix-ext4_da_block_invalidatepages-to-handle-pag.patch
########################################################
# btrfs
########################################################
patches.fixes/btrfs-return-EXDEV-when-linking-from-different-subvo.patch
########################################################
# Reiserfs Patches
########################################################
patches.suse/reiserfs-barrier-default
patches.fixes/reiserfs-remove-2-tb-file-size-limit
patches.fixes/reiserfs-force-inode-evictions-before-umount-to-avoid-crash
patches.suse/reiser4-dependencies
+needs_updating-39 patches.suse/reiser4-dependencies
########################################################
# dlm
@ -354,28 +294,6 @@
# 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
########################################################
@ -407,57 +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-08a-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-16a-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-25a-nfs-swapcache.patch
patches.suse/SoN-25b-nfs-swapcache.patch
patches.suse/SoN-26-nfs-swapper.patch
patches.suse/SoN-27-nfs-swap_ops.patch
patches.suse/SoN-27a-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
patches.suse/SoN-33-slab-leak-fix.patch
patches.fixes/nfs-adaptive-readdir-plus
########################################################
# Netfilter
########################################################
patches.suse/netfilter-ip_conntrack_slp.patch
patches.fixes/fix-nf_conntrack_slp
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
########################################################
@ -466,31 +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
patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch
# Remaining SCSI patches (garloff)
patches.suse/scsi-error-test-unit-ready-timeout
@ -503,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
@ -516,28 +386,12 @@
# 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
patches.drivers/iwl-cleanup-iwl_good_ack_health.patch
patches.drivers/iwl-fix-ack-health-for-WiFi-BT-combo-devices.patch
########################################################
# ISDN
@ -567,16 +421,11 @@
########################################################
# 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-support-for-Skycable-0x3f07-wireless-present.patch
patches.fixes/hid-add-noget-quirk-for-symboltec.patch
##########################################################
@ -584,8 +433,6 @@
##########################################################
patches.drivers/alsa-hda-0019-Increase-default-buffer-size
patches.drivers/alsa-asihpi-check-adapter-index-in-hpi_ioctl
########################################################
# Other driver fixes
########################################################
@ -594,7 +441,6 @@
# Allow setting maximum number of raw devices
patches.suse/raw_device_max_minors_param.diff
patches.suse/no-partition-scan
patches.fixes/eeepc-laptop-Use-ACPI-handle-to-identify-rfkill-port.patch
########################################################
# Other drivers we have added to the tree
@ -603,6 +449,7 @@
########################################################
# Suspend/Resume stuff
########################################################
patches.fixes/PM-Print-a-warning-if-firmware-is-requested-when-tas.patch
########################################################
# device-mapper
@ -613,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
@ -666,7 +513,6 @@
########################################################
# Kdump
########################################################
+needs_update-33 patches.suse/kdump-dump_after_notifier.patch
########################################################
# cgroups
@ -675,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
@ -698,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
@ -748,7 +572,6 @@
# bulk stuff, new files for xen
patches.xen/xen3-auto-xen-arch.diff
patches.xen/add-fixup_4gb_segment-ENDPROC.patch
patches.xen/xen3-auto-xen-drivers.diff
patches.xen/xen3-auto-include-xen-interface.diff
patches.xen/xen3-auto-blktap2-pvops.diff
@ -798,34 +621,32 @@
patches.xen/xen3-patch-2.6.36
patches.xen/xen3-patch-2.6.37
patches.xen/xen3-patch-2.6.38
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.39-rc3
patches.xen/xen3-patch-2.6.39-rc5-rc6
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
@ -836,10 +657,10 @@
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-x86-panic-no-reboot
patches.xen/xen-x86-dcr-fallback
patches.xen/xen-x86-no-lapic

View File

@ -1,3 +1,3 @@
2011-05-17 21:06:11 +0200
GIT Revision: fe168ad0e7dd8e01ca63b471b355100263651c2e
2011-05-20 20:23:02 +0200
GIT Revision: a64b7f7b99649df732bbf2e62442808053af5256
GIT Branch: stable

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