]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
3.0-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 9 May 2012 22:55:31 +0000 (15:55 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 9 May 2012 22:55:31 +0000 (15:55 -0700)
added patches:

queue-3.0/series
queue-3.0/x86-relocs-remove-an-unused-variable.patch [deleted file]

index 92b8624248c2fbb81021261dfdfd7cb6a8aa16cc..0006a3465f35e066bc5f8f0c7e619305f2ad8b71 100644 (file)
@@ -1,7 +1,6 @@
 smsc95xx-mark-link-down-on-startup-and-let-phy-interrupt.patch
 xen-pte-fix-crashes-when-trying-to-see-non-existent-pgd-pmd-pud-ptes.patch
 xen-pci-don-t-use-pci-bios-service-for-configuration-space-accesses.patch
-x86-relocs-remove-an-unused-variable.patch
 percpu-x86-don-t-use-pmd_size-as-embedded-atom_size-on-32bit.patch
 asm-generic-use-__bits_per_long-in-statfs.h.patch
 fix-__read_seqcount_begin-to-use-access_once-for-sequence-value-read.patch
diff --git a/queue-3.0/x86-relocs-remove-an-unused-variable.patch b/queue-3.0/x86-relocs-remove-an-unused-variable.patch
deleted file mode 100644 (file)
index e87f938..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-From 7c77cda0fe742ed07622827ce80963bbeebd1e3f Mon Sep 17 00:00:00 2001
-From: Kusanagi Kouichi <slash@ac.auone-net.jp>
-Date: Sun, 1 Apr 2012 17:29:32 +0900
-Subject: x86, relocs: Remove an unused variable
-
-From: Kusanagi Kouichi <slash@ac.auone-net.jp>
-
-commit 7c77cda0fe742ed07622827ce80963bbeebd1e3f upstream.
-
-sh_symtab is set but not used.
-
-[ hpa: putting this in urgent because of the sheer harmlessness of the patch:
-  it quiets a build warning but does not change any generated code. ]
-
-Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
-Link: http://lkml.kernel.org/r/20120401082932.D5E066FC03D@msa105.auone-net.jp
-Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-
----
- arch/x86/boot/compressed/relocs.c |    2 --
- 1 file changed, 2 deletions(-)
-
---- a/arch/x86/boot/compressed/relocs.c
-+++ b/arch/x86/boot/compressed/relocs.c
-@@ -402,13 +402,11 @@ static void print_absolute_symbols(void)
-       for (i = 0; i < ehdr.e_shnum; i++) {
-               struct section *sec = &secs[i];
-               char *sym_strtab;
--              Elf32_Sym *sh_symtab;
-               int j;
-               if (sec->shdr.sh_type != SHT_SYMTAB) {
-                       continue;
-               }
--              sh_symtab = sec->symtab;
-               sym_strtab = sec->link->strtab;
-               for (j = 0; j < sec->shdr.sh_size/sizeof(Elf32_Sym); j++) {
-                       Elf32_Sym *sym;