[3.5.y.z extended stable] Linux 3.5.7.4

2013-01-27 Thread Herton Ronaldo Krzesinski
I am announcing the release of the 3.5.7.4 tree of stable patches. This tree picks up the latest 3.5 stable release upstream, and add patches on top that were later marked for stable but can't be added to 3.5, as it is not anymore an stable series maintained upstream. The tree is maintained by th

Re: [PATCH]smp: Fix send func call IPI to empty cpu mask

2013-01-27 Thread Ingo Molnar
* Linus Torvalds wrote: > On Fri, Jan 25, 2013 at 11:53 PM, Wang YanQing wrote: > > I get below warning every day with 3.7, > > one or two times per day. > > > > [ 2235.186027] WARNING: at > > /mnt/sda7/kernel/linux/arch/x86/kernel/apic/ipi.c:109 > > default_send_IPI_mask_logical+0x2f/0xb8()

[PATCH] rtlwifi: Fix the usage of the wrong variable in usb.c

2013-01-27 Thread Larry Finger
In routine _rtl_rx_pre_process(), skb_dequeue() is called to get an skb; however, the wrong variable name is used in subsequent calls. Reported-by: Guenter Roeck Signed-off-by: Larry Finger Cc: Guenter Roeck Cc: Stable --- John, This is material for 3.8. Sorry that it was not found earlier.

[RESEND PATCH v5 1/4] zram: Fix deadlock bug in partial write

2013-01-27 Thread Minchan Kim
Now zram allocates new page with GFP_KERNEL in zram I/O path if IO is partial. Unfortunately, It may cuase deadlock with reclaim path so this patch solves the problem. Cc: stable@vger.kernel.org Cc: Jerome Marchand Acked-by: Nitin Gupta Signed-off-by: Minchan Kim --- drivers/staging/zram/zram_

[PATCH] zsmalloc: Fix TLB coherency and build problem

2013-01-27 Thread Minchan Kim
Recently, Matt Sealey reported he fail to build zsmalloc caused by using of local_flush_tlb_kernel_range which are architecture dependent function so !CONFIG_SMP in ARM couldn't implement it so it ends up build error following as. MODPOST 216 modules LZMAarch/arm/boot/compressed/piggy.lzma

Re: request to be added into stable-3.7.y

2013-01-27 Thread CAI Qian
- Original Message - > From: "Arend van Spriel" > To: "Seth Forshee" > Cc: "CAI Qian" , "John W. Linville" > , stable@vger.kernel.org, > "Pieter-Paul Giesberts" , gre...@linuxfoundation.org, > "Justin M. Forbes" > Sent: Friday, January 25, 2013 10:51:45 PM > Subject: Re: request to b

Re: [ 11/15] ahci: Add identifiers for ASM106x devices

2013-01-27 Thread Greg Kroah-Hartman
On Fri, Jan 25, 2013 at 05:00:48PM -0500, Abdallah Chatila wrote: > On Fri, Jan 25, 2013 at 01:45:21PM -0700, Jerry Snitselaar wrote: > > > > There is a whitespace error in this patch: > > > > Applying: ahci: Add identifiers for ASM106x devices > > /root/linux/linux/.git/rebase-apply/patch:12: sp

[PATCH] ALSA: hda - fix inverted internal mic on Acer AOA150/ZG5

2013-01-27 Thread David Henningsson
This patch enables internal mic input on the machine. Cc: stable@vger.kernel.org BugLink: https://bugs.launchpad.net/bugs/1107477 Signed-off-by: David Henningsson --- sound/pci/hda/patch_realtek.c |1 + 1 file changed, 1 insertion(+) diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hd

Linux 3.7.5

2013-01-27 Thread Greg KH
I'm announcing the release of the 3.7.5 kernel. All users of the 3.7 kernel series must upgrade. The updated 3.7.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.7.y and can be browsed at the normal kernel.org git web browser:

Linux 3.4.28

2013-01-27 Thread Greg KH
I'm announcing the release of the 3.4.28 kernel. All users of the 3.4 kernel series must upgrade. The updated 3.4.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.4.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 3.4.28

2013-01-27 Thread Greg KH
diff --git a/Makefile b/Makefile index f139ce7..8ccebba 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 4 -SUBLEVEL = 27 +SUBLEVEL = 28 EXTRAVERSION = NAME = Saber-toothed Squirrel diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index

Linux 3.0.61

2013-01-27 Thread Greg KH
I'm announcing the release of the 3.0.61 kernel. All users of the 3.0 kernel series must upgrade. The updated 3.0.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.0.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 3.0.61

2013-01-27 Thread Greg KH
diff --git a/Makefile b/Makefile index 3359fcf..2d64957 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 0 -SUBLEVEL = 60 +SUBLEVEL = 61 EXTRAVERSION = NAME = Sneaky Weasel diff --git a/arch/x86/include/asm/traps.h b/arch/x86/include/asm/traps.h index 0310da6..1d4

Re: [RESEND PATCH v5 1/4] zram: Fix deadlock bug in partial write

2013-01-27 Thread Pekka Enberg
On Mon, Jan 28, 2013 at 2:38 AM, Minchan Kim wrote: > Now zram allocates new page with GFP_KERNEL in zram I/O path > if IO is partial. Unfortunately, It may cuase deadlock with s/cuase/cause/g > reclaim path so this patch solves the problem. It'd be nice to know about the problem in more detail