Re: [patch 0/7] improve memcg oom killer robustness v2

2013-09-02 Thread azurIt
>>Hi azur, >> >>here is the x86-only rollup of the series for 3.2. >> >>Thanks! >>Johannes >>--- > > >Johannes, > >unfortunately, one problem arises: I have (again) cgroup which cannot be >deleted :( it's a user who had very high memory usage and was reaching his >limit very often. Do you need

Re: [alsa-devel] [PATCH] ASoC: codecs: da9055: Update driver name to fix breakage due to pmic driver with same name

2013-09-02 Thread Mark Brown
On Mon, Sep 02, 2013 at 09:49:20AM +, Opensource [Adam Thomson] wrote: Please fix your mailer to wrap within 80 columns, it makes your mails very hard to read if you don't do this. > At present I believe your suggestion is to instantiate the codec regmap in > the MFD > core for the PMIC,

Re: [PATCH] hwrng: via-rng: Add MODULE_DEVICE_TABLE

2013-09-02 Thread Herbert Xu
On Sun, Sep 01, 2013 at 11:53:57PM +0100, Ben Hutchings wrote: > via-rng currently isn't auto-loaded if built as a module. > > Signed-off-by: Ben Hutchings Patch applied. Thanks. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key:

Re: [PATCH v2 00/10] Series of fixes for NX driver

2013-09-02 Thread Herbert Xu
On Thu, Aug 29, 2013 at 11:36:30AM -0300, Marcelo Cerri wrote: > This series of patches contains fixes in several algorithms implemented > by the NX driver. The patches can be separated in three different > categories: > > - Changes to split the data in several hyper calls to respect the >

Re: [PATCH] Fix bitoperation for compilation with clang

2013-09-02 Thread Herbert Xu
On Thu, Aug 29, 2013 at 08:09:24PM +0200, dl...@gmx.de wrote: > From: Jan-Simon Möller > > v2: Fix bug in statement as pointed out by Herbert Xu. Kudos to pipacs. > > Author: PaX Team > ML-Post: > http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20120507/142707.html > URL:

Re: [PATCH 0/8] partitions/efi: detect hybrid mbrs

2013-09-02 Thread Karel Zak
On Thu, Aug 15, 2013 at 06:37:19PM -0700, Davidlohr Bueso wrote: > On Thu, 2013-08-15 at 12:29 -0700, Andrew Morton wrote: > > On Thu, 15 Aug 2013 09:59:42 -0700 Davidlohr Bueso wrote: > > > > > On Tue, 2013-08-06 at 14:16 -0700, Andrew Morton wrote: > > > > On Mon, 5 Aug 2013 22:21:08 -0700

[PATCH RESEND 0/3] x86, ACPI, mm: Cleanup for {max|low|max_low}_pfn_mapped.

2013-09-02 Thread Tang Chen
This patch-set does the following: 1. Kill max_low_pfn_mapped as it is useless. This patch is from Yinghai. 2. Update min_pfn_mapped and max_pfn_mapped together in add_pfn_range_mapped(). 3. Move definition of max_pfn_mapped tp init.c together with min_pfn_mapped. Tang Chen (2): x86, mm:

[PATCH RESEND 3/3] x86, mm: Move max_pfn_mapped definition to init.c.

2013-09-02 Thread Tang Chen
min_pfn_mapped is defined in init.c, we can also define max_pfn_mapped here. Signed-off-by: Tang Chen --- arch/x86/kernel/setup.c |8 arch/x86/mm/init.c |9 + 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/arch/x86/kernel/setup.c

[PATCH RESEND 1/3] x86, ACPI, mm: Kill max_low_pfn_mapped.

2013-09-02 Thread Tang Chen
From: Yinghai Lu Now we have pfn_mapped[] in , and max_low_pfn_mapped should not be used anymore. User should use pfn_mapped[] or just 1UL<<(32-PAGE_SHIFT) instead. Only user is ACPI_INITRD_TABLE_OVERRIDE, and it should not use that, as later accessing is using early_ioremap(). We could change

Re: [PATCH V3 RFC 00/16] EFI stub for ARM

2013-09-02 Thread Matt Fleming
On Tue, 13 Aug, at 10:58:16AM, Roy Franz wrote: > Hi Matt, > >Do you have any more feedback on the X86 and common code (patches > 1-13) that needs to be addressed? Mark Salter has a working ARM64 EFI > stub implemented based on these patches, so the common code has now > been tested with

[PATCH] ACPI / LPSS: don't crash if a device has no MMIO resources

2013-09-02 Thread Mika Westerberg
Intel LPSS devices that are enumerated from ACPI have both MMIO and IRQ resources returned in their _CRS method. However, Apple Macbook Air with Haswell has LPSS devices enumerated from PCI bus instead and _CRS method returns only an interrupt number (but the device has _HID set that causes the

[PATCH RESEND 2/3] x86, mm: Update min_pfn_mapped in add_pfn_range_mapped().

2013-09-02 Thread Tang Chen
In current kernel, we update min_pfn_mapped and max_pfn_mapped like this: init_mem_mapping() { while ( a loop iterates all memory ranges ) { init_range_memory_mapping(); |->init_memory_mapping() |->kernel_physical_mapping_init()

[char-misc-next 2/3] mei: bus: stop wait for read during cl state transition

2013-09-02 Thread Tomas Winkler
Bus layer omitted check for client state transition while waiting for read completion The client state transition may occur for example as result of firmware initiated reset Add mei_cl_is_transitioning wrapper to reduce the code repetition.: Cc: # 3.9+ Signed-off-by: Tomas Winkler ---

Re: [PATCH v7 1/4] spinlock: A new lockref structure for lockless update of refcount

2013-09-02 Thread Sedat Dilek
On Sun, Sep 1, 2013 at 5:55 PM, Linus Torvalds wrote: > On Sun, Sep 1, 2013 at 8:45 AM, Sedat Dilek wrote: >> >> Samples: 160K of event 'cycles:pp', Event count (approx.): 77003901089 >> + 12,46% t_lockref_from- [kernel.kallsyms] [k] irq_return >> + 4,86% t_lockref_from-

[char-misc-next 0/3] mei: few more reset recursion fixes

2013-09-02 Thread Tomas Winkler
*** BLURB HERE *** Alexander Usyskin (1): mei: cancel stall timers in mei_reset Tomas Winkler (2): mei: make me client counters less error prone mei: bus: stop wait for read during cl state transition drivers/misc/mei/amthif.c | 1 + drivers/misc/mei/bus.c | 5 -

[char-misc-next 3/3] mei: cancel stall timers in mei_reset

2013-09-02 Thread Tomas Winkler
From: Alexander Usyskin Unset init_clients_timer and amthif_stall_timers in mei_reset in order to cancel timer ticking and hence avoid recursive reset calls. Cc: # 3.9+ Signed-off-by: Alexander Usyskin Signed-off-by: Tomas Winkler --- drivers/misc/mei/amthif.c | 1 +

[char-misc-next 1/3] mei: make me client counters less error prone

2013-09-02 Thread Tomas Winkler
1. u8 counters are prone to hard to detect overflow: make them unsigned long to match bit_ functions argument type 2. don't check me_clients_num for negativity, it is unsigned. 3. init all the me client counters from one place Cc: # 3.9+ Signed-off-by: Tomas Winkler ---

Re: [PATCH] KVM: mmu: allow page tables to be in read-only slots

2013-09-02 Thread Gleb Natapov
On Mon, Sep 02, 2013 at 06:05:10PM +0800, Xiao Guangrong wrote: > On 09/02/2013 05:49 PM, Gleb Natapov wrote: > > On Mon, Sep 02, 2013 at 05:42:25PM +0800, Xiao Guangrong wrote: > >> On 09/01/2013 05:17 PM, Gleb Natapov wrote: > >>> On Fri, Aug 30, 2013 at 02:41:37PM +0200, Paolo Bonzini wrote: >

Re: [PATCH 1/8] partitions/efi: use lba-aware partition records

2013-09-02 Thread Karel Zak
On Mon, Aug 05, 2013 at 10:21:09PM -0700, Davidlohr Bueso wrote: > > +typedef struct _gpt_record { > +u8 boot_indicator; /* unused by EFI, set to 0x80 for bootable */ > +u8 start_head; /* unused by EFI, pt start in CHS */ > +u8 start_sector; /* unused

RE: [PATCH 05/11] regulator: s5m8767: Covert to devm_regulator_register()

2013-09-02 Thread Sangbeom Kim
On Saturday, August 31, 2013 8:29 AM, Mark Brown wrote: > Subject: [PATCH 05/11] regulator: s5m8767: Covert to devm_regulator_register() > > From: Mark Brown > > Signed-off-by: Mark Brown Acked-by: Sangbeom Kim Thanks, Sangbeom. -- To unsubscribe from this list: send the line "unsubscribe

RE: [PATCH 04/11] regulator: s2mps11: Convert to devm_regulator_register()

2013-09-02 Thread Sangbeom Kim
On Saturday, August 31, 2013 8:29 AM, Mark Brown wrote: > Subject: [PATCH 04/11] regulator: s2mps11: Convert to > devm_regulator_register() > > From: Mark Brown > > Signed-off-by: Mark Brown Acked-by: Sangbeom Kim Thanks, Sangbeom. -- To unsubscribe from this list: send the line

Re: [PATCH] KVM: mmu: allow page tables to be in read-only slots

2013-09-02 Thread Gleb Natapov
On Mon, Sep 02, 2013 at 06:00:39PM +0800, Xiao Guangrong wrote: > On 09/02/2013 05:25 PM, Gleb Natapov wrote: > > On Mon, Sep 02, 2013 at 05:20:15PM +0800, Xiao Guangrong wrote: > >> On 08/30/2013 08:41 PM, Paolo Bonzini wrote: > >>> Page tables in a read-only memory slot will currently cause a

Re: [PATCH] KVM: mmu: allow page tables to be in read-only slots

2013-09-02 Thread Xiao Guangrong
On 09/02/2013 05:49 PM, Gleb Natapov wrote: > On Mon, Sep 02, 2013 at 05:42:25PM +0800, Xiao Guangrong wrote: >> On 09/01/2013 05:17 PM, Gleb Natapov wrote: >>> On Fri, Aug 30, 2013 at 02:41:37PM +0200, Paolo Bonzini wrote: Page tables in a read-only memory slot will currently cause a triple

Re: [PATCH] KVM: mmu: allow page tables to be in read-only slots

2013-09-02 Thread Xiao Guangrong
On 09/02/2013 05:25 PM, Gleb Natapov wrote: > On Mon, Sep 02, 2013 at 05:20:15PM +0800, Xiao Guangrong wrote: >> On 08/30/2013 08:41 PM, Paolo Bonzini wrote: >>> Page tables in a read-only memory slot will currently cause a triple >>> fault because the page walker uses gfn_to_hva and it fails on

[PATCH 1/2] spi: delete premature free_irq

2013-09-02 Thread Julia Lawall
From: Julia Lawall Free_irq is not needed if there has been no request_irq. Free_irq is removed from both the probe and remove functions. The correct request_irq and free_irq appear to be in the add_host and remove_host functions in spi-dw.c. A simplified version of the semantic match that

[PATCH 2/2] drivers:net: delete premature free_irq

2013-09-02 Thread Julia Lawall
From: Julia Lawall Free_irq is not needed if there has been no request_irq. Free_irq is removed from both the probe and remove functions. The correct request_irq and free_irq are found in the open and close functions. A simplified version of the semantic match that finds this problem is as

[PATCH 0/2] delete premature free_irq

2013-09-02 Thread Julia Lawall
platform_get_request, or its wrapper platform_get_irq, doesn't allocate anything, so there is nothing to free. Free_irq matches up with request_irq and related functions. The complete semantic patch used is as follows (http://coccinelle.lip6.fr/) // @@ identifier l; statement S1; expression

Re: [PATCH 0/5] Remove ASoC-level I/O functions from cq93vc

2013-09-02 Thread Mark Brown
On Mon, Sep 02, 2013 at 10:55:34AM +0200, Samuel Ortiz wrote: > I put a topic/for-asoc branch upstream for you to pull from: Great, thanks! signature.asc Description: Digital signature

Re: [PATCH] KVM: mmu: allow page tables to be in read-only slots

2013-09-02 Thread Gleb Natapov
On Mon, Sep 02, 2013 at 05:42:25PM +0800, Xiao Guangrong wrote: > On 09/01/2013 05:17 PM, Gleb Natapov wrote: > > On Fri, Aug 30, 2013 at 02:41:37PM +0200, Paolo Bonzini wrote: > >> Page tables in a read-only memory slot will currently cause a triple > >> fault because the page walker uses

Re: [PATCH v3] gpio: interrupt consistency check for OF GPIO IRQs

2013-09-02 Thread Lars Poeschel
Am Freitag, 30. August 2013, 13:53:45 schrieb Stephen Warren: > On 08/29/2013 01:26 PM, Linus Walleij wrote: > > On Tue, Aug 27, 2013 at 10:17 PM, Stephen Warren wrote: > >> On 08/26/2013 08:07 AM, Lars Poeschel wrote: > >>> Currently the kernel is ambigously treating GPIOs and interrupts > >>>

Re: [PATCH v2] gpio: interrupt consistency check for OF GPIO IRQs

2013-09-02 Thread Lars Poeschel
Am Freitag, 30. August 2013, 14:08:41 schrieb Stephen Warren: > On 08/29/2013 01:00 PM, Linus Walleij wrote: > > On Fri, Aug 23, 2013 at 9:52 PM, Stephen Warren wrote: > >> On 08/23/2013 12:45 PM, Linus Walleij wrote: > >>> This is a perfectly OK thing to do as long as it is done like > >>>

Re: [GIT PULL] Final pull-request due for the v3.12 merge window

2013-09-02 Thread Samuel Ortiz
Hi Lee, On Mon, Sep 02, 2013 at 10:37:47AM +0100, Lee Jones wrote: > The following changes since commit 2b274fe522e9d5ac7397e07e3516bb10e3c2ee92: > > mfd: 88pm805: Fix potential NULL pdata dereference (2013-09-02 11:00:16 > +0200) > > are available in the git repository at: > >

Re: [PATCH 1/9] cgroup: fix css leaks on online_css() failure

2013-09-02 Thread Li Zefan
On 2013/8/29 5:03, Tejun Heo wrote: > ae7f164a09 ("cgroup: move cgroup->subsys[] assignment to > online_css()") moved cgroup->subsys[] assignements later in > cgroup_create() but didn't update error handling path accordingly > leaking later css's after an online_css() failure. > > This patch

Re: [PATCH 2/2] x86, apic: Disable BSP if boot cpu is AP

2013-09-02 Thread HATAYAMA Daisuke
(2013/09/02 16:13), Borislav Petkov wrote: On Mon, Sep 02, 2013 at 11:32:59AM +0900, HATAYAMA Daisuke wrote: As you suggest, boot_cpu seems more understandable also to me. BTW, please notice that it doesn't denote that the CPU we're booting on currently, but that the CPU with BSP flag set.

Re: [PATCH] KVM: mmu: allow page tables to be in read-only slots

2013-09-02 Thread Xiao Guangrong
On 09/01/2013 05:17 PM, Gleb Natapov wrote: > On Fri, Aug 30, 2013 at 02:41:37PM +0200, Paolo Bonzini wrote: >> Page tables in a read-only memory slot will currently cause a triple >> fault because the page walker uses gfn_to_hva and it fails on such a slot. >> >> OVMF uses such a page table;

Re: [PATCH 24/25] perf tools: Add multi file '-M' option for record command

2013-09-02 Thread Jiri Olsa
On Mon, Sep 02, 2013 at 12:11:35PM +0300, Adrian Hunter wrote: > On 02/09/13 11:37, Jiri Olsa wrote: > > On Mon, Sep 02, 2013 at 10:52:46AM +0300, Adrian Hunter wrote: > >> On 01/09/13 13:36, Jiri Olsa wrote: > >>> split event data into multiple files based on the file > >>> size or time delta

[GIT PULL] Final pull-request due for the v3.12 merge window

2013-09-02 Thread Lee Jones
The following changes since commit 2b274fe522e9d5ac7397e07e3516bb10e3c2ee92: mfd: 88pm805: Fix potential NULL pdata dereference (2013-09-02 11:00:16 +0200) are available in the git repository at: git://git.linaro.org/people/ljones/mfd.git tags/mfd-lee-3.12-2 for you to fetch changes up to

Re: [PATCH 1/3] intel_idle: shrink states tables

2013-09-02 Thread Daniel Lezcano
On 08/30/2013 12:25 PM, Bartlomiej Zolnierkiewicz wrote: > There is no reason to define CPUIDLE_STATE_MAX (currently 10) entries > in states tables if the driver always stops iterating over table when > it encounters first .enter == NULL entry. > > $ size drivers/idle/intel_idle.o.* >text

Re: [PATCH 3/3] intel_idle: mark some functions with __init tag

2013-09-02 Thread Daniel Lezcano
On 08/30/2013 12:27 PM, Bartlomiej Zolnierkiewicz wrote: > intel_idle_probe() and intel_idle_cpuidle_driver_init() can be marked > with __init tag as they are only called from intel_idle_init(). > > Signed-off-by: Bartlomiej Zolnierkiewicz > Signed-off-by: Kyungmin Park > Cc: Len Brown > ---

Re: [PATCH v3 2/5] efi: provide a generic efi_config_init()

2013-09-02 Thread Matt Fleming
On Wed, 07 Aug, at 07:54:17PM, Leif Lindholm wrote: > Common to (U)EFI support on all platforms is the global "efi" data > structure, and the code that parses the System Table to locate > addresses to populate that structure with. > > This patch adds both of these to the global EFI driver code. >

Re: [PATCH v3] gpio: interrupt consistency check for OF GPIO IRQs

2013-09-02 Thread Lars Poeschel
Am Freitag, 30. August 2013, 13:55:26 schrieb Stephen Warren: > On 08/29/2013 06:24 PM, Javier Martinez Canillas wrote: > ... > > > We have been trying to solve this issue for a few months by now and Linus' > > approach seems to be the most sensible solution to me. > > > > Drivers that request

Re: [PATCH] KVM: mmu: allow page tables to be in read-only slots

2013-09-02 Thread Gleb Natapov
On Mon, Sep 02, 2013 at 05:20:15PM +0800, Xiao Guangrong wrote: > On 08/30/2013 08:41 PM, Paolo Bonzini wrote: > > Page tables in a read-only memory slot will currently cause a triple > > fault because the page walker uses gfn_to_hva and it fails on such a slot. > > > > OVMF uses such a page

Re: [PATCH 2/3] intel_idle: mark states tables with __initdata tag

2013-09-02 Thread Daniel Lezcano
:0 :0 On 08/30/2013 12:26 PM, Bartlomiej Zolnierkiewicz wrote: > States tables are only accessed during driver initialization so they > can be marked with __initdata tag. > > Signed-off-by: Bartlomiej Zolnierkiewicz > Signed-off-by: Kyungmin Park > Cc: Len Brown > --- Reviewed-by: Daniel

Re: perf_event: rdpmc self-monitoring overhead issue

2013-09-02 Thread Andi Kleen
On Mon, Sep 02, 2013 at 10:24:13AM +0200, Stephane Eranian wrote: > On Mon, Sep 2, 2013 at 4:50 AM, Andi Kleen wrote: > > Stephane Eranian writes: > > > >> I don't see a flag in mmap() to fault it in immediately. > > > > MAP_PRESENT > > > I could not find this constant defined anywhere in the

linux-next: Tree for Sep 2

2013-09-02 Thread Stephen Rothwell
Hi all, Changes since 20130830: New tree: h8300-remove The drm tree gained a build failure for which I applied a patch. The net-next tree gained a conflict against Linus' tree and a build failure for which I applied a patch. The ipsec-next tree gained a conflict against Linus' tree.

Re: [PATCH] KVM: mmu: allow page tables to be in read-only slots

2013-09-02 Thread Xiao Guangrong
On 08/30/2013 08:41 PM, Paolo Bonzini wrote: > Page tables in a read-only memory slot will currently cause a triple > fault because the page walker uses gfn_to_hva and it fails on such a slot. > > OVMF uses such a page table; however, real hardware seems to be fine with > that as long as the

[PATCH] mmc: rtsx: change phase searching method

2013-09-02 Thread micky_ching
From: Micky Ching The new phase searching method is more concise, and makes the code easier to understand. Signed-off-by: Micky Ching --- drivers/mmc/host/rtsx_pci_sdmmc.c | 107 +++-- 1 file changed, 30 insertions(+), 77 deletions(-) diff --git

Re: linux-next: build failure after merge of the final tree (net-next tree related)

2013-09-02 Thread Cong Wang
On Mon, 2013-09-02 at 19:11 +1000, Stephen Rothwell wrote: > Hi all, > > After merging the final tree, today's linux-next build (powerpc > allyesconfig) failed like this: > > drivers/net/vxlan.c: In function 'vxlan6_xmit_skb': > drivers/net/vxlan.c:1441:3: error: implicit declaration of function

[PATCH V3 0/6] vhost code cleanup and minor enhancement

2013-09-02 Thread Jason Wang
This series tries to unify and simplify vhost codes especially for zerocopy. With this series, 5% - 10% improvement for per cpu throughput were seen during netperf guest sending test. Plase review. Changes from V2: - Typo fixes and code style fix - Add performance gain in the commit log of patch

[PATCH 04/58] fs/proc/task_mmu.c: fix buffer overflow in add_page_map()

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: yonghua zheng commit 8c8296223f3abb142be8fc31711b18a704c0e7d8 upstream. Recently we met quite a lot of random kernel panic issues after enabling CONFIG_PROC_PAGE_MONITOR. After

[PATCH 06/58] vm: add no-mmu vm_iomap_memory() stub

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Linus Torvalds commit 3c0b9de6d37a481673e81001c57ca0e410c72346 upstream. I think we could just move the full vm_iomap_memory() function into util.h or similar, but I didn't get any

[PATCH 05/58] af_key: initialize satype in key_notify_policy_flush()

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Nicolas Dichtel commit 85dfb745ee40232876663ae206cba35f24ab2a40 upstream. This field was left uninitialized. Some user daemons perform check against this field. Signed-off-by: Nicolas

Re: [PATCH] imx-drm: imx-ldb: Staticize of_get_data_mapping()

2013-09-02 Thread Sascha Hauer
On Sun, Sep 01, 2013 at 10:11:55PM -0300, Fabio Estevam wrote: > From: Fabio Estevam > > Staticize of_get_data_mapping() in order to fix the following sparse warning: > > drivers/staging/imx-drm/imx-ldb.c:424:11: warning: symbol > 'of_get_data_mapping' was not declared. Should it be static? >

[PATCH V3 1/6] vhost_net: make vhost_zerocopy_signal_used() return void

2013-09-02 Thread Jason Wang
None of its caller use its return value, so let it return void. Signed-off-by: Jason Wang --- drivers/vhost/net.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c index 969a859..280ee66 100644 --- a/drivers/vhost/net.c +++

[PATCH 02/58] ALSA: usb: Parse UAC2 extension unit like for UAC1

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Torstein Hegge commit 61ac51301e6c6d4ed977d7674ce2b8e713619a9b upstream. UAC2_EXTENSION_UNIT_V2 differs from UAC1_EXTENSION_UNIT, but can be handled in the same way when parsing the

[ 3.5.y.z extended stable ] Linux 3.5.7.21 stable review

2013-09-02 Thread Luis Henriques
This is the start of the review cycle for the Linux 3.5.7.21 stable kernel. This version contains 58 new patches, summarized below. The new patches are posted as replies to this message and also available in this git branch:

[PATCH 01/58] drm/i915/lvds: ditch ->prepare special case

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Daniel Vetter commit 520c41cf2fa029d1e8b923ac2026f96664f17c4b upstream. LVDS is the first output where dpms on/off and prepare/commit don't perfectly match. Now the idea behind this

[PATCH 11/58] ALSA: 6fire: make buffers DMA-able (pcm)

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Torsten Schenk commit 5ece263f1d93fba8d992e67e3ab8a71acf674db9 upstream. Patch makes pcm buffers DMA-able by allocating each one separately. Signed-off-by: Torsten Schenk

[PATCH 09/58] ASoC: cs42l52: Reorder Min/Max and update to SX_TLV for Beep Volume

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Brian Austin commit e2c98a8bba958045bde861fe1d66be54315c7790 upstream. Beep Volume Min/Max was backwards. Change to SOC_SONGLE_SX_TLV for correct volume representation Signed-off-by:

[PATCH 14/58] USB-Serial: Fix error handling of usb_wwan

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Matt Burtch commit 6c1ee66a0b2bdbd64c078fba684d640cf2fd38a9 upstream. This fixes an issue where the bulk-in urb used for incoming data transfer is not resubmitted if the packet recieved

[PATCH 13/58] jbd2: Fix use after free after error in jbd2_journal_dirty_metadata()

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Jan Kara commit 91aa11fae1cf8c2fd67be0609692ea9741cdcc43 upstream. When jbd2_journal_dirty_metadata() returns error, __ext4_handle_dirty_metadata() stops the handle. However callers of

linux-next: build failure after merge of the final tree (net-next tree related)

2013-09-02 Thread Stephen Rothwell
Hi all, After merging the final tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/net/vxlan.c: In function 'vxlan6_xmit_skb': drivers/net/vxlan.c:1441:3: error: implicit declaration of function 'csum_ipv6_magic' [-Werror=implicit-function-declaration] uh->check

[PATCH 10/58] can: pcan_usb: fix wrong memcpy() bytes length

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Stephane Grosjean commit 3c322a56b01695df15c70bfdc2d02e0ccd80654e upstream. Fix possibly wrong memcpy() bytes length since some CAN records received from PCAN-USB could define a DLC

[PATCH 07/58] iwl4965: set power mode early

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Stanislaw Gruszka commit eca396d7a5bdcc1fd67b1b12f737c213ac78a6f4 upstream. If device was put into a sleep and system was restarted or module reloaded, we have to wake device up before

[PATCH 12/58] ALSA: 6fire: make buffers DMA-able (midi)

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Torsten Schenk commit 4c2aee0032b70083dafebd733ed9c774633b2fa3 upstream. Patch makes midi output buffer DMA-able by allocating it separately. Signed-off-by: Torsten Schenk

[PATCH 18/58] ARM: 7809/1: perf: fix event validation for software group leaders

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Will Deacon commit c95eb3184ea1a3a2551df57190c81da695e2144b upstream. It is possible to construct an event group with a software event as a group leader and then subsequently add a

[PATCH 20/58] m68k: Truncate base in do_div()

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Andreas Schwab commit ea077b1b96e073eac5c3c5590529e964767fc5f7 upstream. Explicitly truncate the second operand of do_div() to 32 bits to guard against bogus code calling it with a

[PATCH 08/58] iwl4965: reset firmware after rfkill off

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Stanislaw Gruszka commit 788f7a56fce1bcb2067b62b851a086fca48a0056 upstream. Using rfkill switch can make firmware unstable, what cause various Microcode errors and kernel warnings.

[PATCH 15/58] USB: mos7840: fix big-endian probe

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Johan Hovold commit d551ec9b690f3de65b0091a2e767f1382adc792d upstream. Fix bug in device-type detection on big-endian machines originally introduced by commit 0eafe4de ("USB: serial:

[PATCH 16/58] USB: adutux: fix big-endian device-type reporting

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Johan Hovold commit d482b9d558602a9cacab063b1c8779f9b5214da7 upstream. Make sure the reported device-type on big-endian machines is the same as on little-endian ones. Signed-off-by:

[PATCH 19/58] m68k/atari: ARAnyM - Fix NatFeat module support

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Geert Uytterhoeven commit e8184e10f89736a23ea6eea8e24cd524c5c513d2 upstream. As pointed out by Andreas Schwab, pointers passed to ARAnyM NatFeat calls should be physical addresses, not

[PATCH 30/58] xtensa: fix linker script transformation for .text.unlikely

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Max Filippov commit f6a03a12ecdbe0dd80a55f6df3b7206c5a403a49 upstream. Now that binutils generate *.unlikely sections which don't follow documented (info as) literal section naming

[PATCH 24/58] MIPS: Expose missing pci_io{map,unmap} declarations

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Markos Chandras commit 78857614104a26cdada4c53eea104752042bf5a1 upstream. The GENERIC_PCI_IOMAP does not depend on CONFIG_PCI so move it to the CONFIG_MIPS symbol so it's always

[PATCH 17/58] USB: ti_usb_3410_5052: fix big-endian firmware handling

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Johan Hovold commit e877dd2f2581628b7119df707d4cf03d940cff49 upstream. Fix endianess bugs in firmware handling introduced by commits cb7a7c6a ("ti_usb_3410_5052: add Multi-Tech modem

[PATCH 31/58] wusbcore: fix kernel panic when disconnecting a wireless USB->serial device

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Thomas Pugliese commit ec58fad1feb76c323ef47efff1d1e8660ed4644c upstream. This patch fixes a kernel panic that can occur when disconnecting a wireless USB->serial device. When the

[PATCH 26/58] sound: Fix make allmodconfig on MIPS

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai commit d4702b189c6b951c1cb3260036ff998f719bfb62 upstream. The compile of soundcard.c is broken on MIPS when allmodconfig is used because of the missing MAX_DMA_CHANNELS

[PATCH 25/58] microblaze: Update microblaze defconfigs

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Michal Simek commit d0e045401f268a8de6f87d65678214748b772680 upstream. The main reason is 0-day testing system which can directly use these defconfigs for testing. Enable support for

[PATCH 23/58] USB: keyspan: fix null-deref at disconnect and release

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Johan Hovold commit ff8a43c10f1440f07a5faca0c1556921259f7f76 upstream. Make sure to fail properly if the device is not accepted during attach in order to avoid null-pointer derefs (of

[PATCH 21/58] usb: add two quirky touchscreen

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Oliver Neukum commit 304ab4ab079a8ed03ce39f1d274964a532db036b upstream. These devices tend to become unresponsive after S3 Signed-off-by: Oliver Neukum Signed-off-by: Greg

[PATCH 22/58] USB: mos7720: fix broken control requests

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Johan Hovold commit ef6c8c1d733e244f0499035be0dabe1f4ed98c6f upstream. The parallel-port code of the drivers used a stack allocated control-request buffer for asynchronous (and possibly

[PATCH 27/58] sound: Fix make allmodconfig on MIPS correctly

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Paul Bolle commit a62ee234a572b4c98fe98cf5fb18e4e8b0f6e43d upstream. Commit d4702b189c ("sound: Fix make allmodconfig on MIPS") added a (negative) dependency on ISA_DMA_SUPPORT_BROKEN.

Re: [PATCH 24/25] perf tools: Add multi file '-M' option for record command

2013-09-02 Thread Adrian Hunter
On 02/09/13 11:37, Jiri Olsa wrote: > On Mon, Sep 02, 2013 at 10:52:46AM +0300, Adrian Hunter wrote: >> On 01/09/13 13:36, Jiri Olsa wrote: >>> split event data into multiple files based on the file >>> size or time delta specified as an argument to the option. >>> >>> Adding multi file '-M'

[PATCH 28/58] alpha: makefile: don't enforce small data model for kernel builds

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Will Deacon commit cd8d2331756751b6aeb855a3c9cb0a92fbd9c725 upstream. Due to all of the goodness being packed into today's kernels, the resulting image isn't as slim as it once was. In

[PATCH 32/58] ARM: 7810/1: perf: Fix array out of bounds access in armpmu_map_hw_event()

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Stephen Boyd commit d9f966357b14e356dbd83b8f4a197a287ab4ff83 upstream. Vince Weaver reports an oops in the ARM perf event code while running his perf_fuzzer tool on a pandaboard running

[PATCH 35/58] zd1201: do not use stack as URB transfer_buffer

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Jussi Kivilinna commit 1206ff4ff9d2ef7468a355328bc58ac6ebf5be44 upstream. Patch fixes zd1201 not to use stack as URB transfer_buffer. URB buffers need to be DMA-able, which stack is

[PATCH 33/58] iwlwifi: dvm: fix calling ieee80211_chswitch_done() with NULL

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Stanislaw Gruszka commit 9186a1fd9ed190739423db84bc344d258ef3e3d7 upstream. If channel switch is pending and we remove interface we can crash like showed below due to passing NULL vif

Re: 3.11-rc7:BUG: soft lockup

2013-09-02 Thread Ding Tianhong
On 2013/9/2 16:24, Baoquan He wrote: > Hi Tianhong, > > I applied your patch and execute below cmd. > Then keyboard inputting problems happened, > I can't enter user/password correctly, then reboot again, it's OK now. Thanks for your work, I don't understand that the keyboard problem is the

[PATCH 29/58] MIPS: Rewrite pfn_valid to work in modules, too.

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Ralf Baechle commit 8b9232141bf40788cce31f893c13f344ec31ee66 upstream. This fixes: MODPOST 393 modules ERROR: "min_low_pfn" [arch/mips/kvm/kvm.ko] undefined! make[3]: *** [__modpost]

[PATCH 38/58] drm/i915: Invalidate TLBs for the rings after a reset

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Chris Wilson commit 884020bf3d2a3787a1cc6df902e98e0eec60330b upstream. After any "soft gfx reset" we must manually invalidate the TLBs associated with each ring. Empirically, it seems

[PATCH 34/58] iwlwifi: pcie: disable L1 Active after pci_enable_device

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Emmanuel Grumbach commit eabc4ac5d7606a57ee2b7308cb7323ea8f60183b upstream. As Arjan pointed out, we mustn't do anything related to PCI configuration until the device is properly

ATTN:Manager---supply polyaluminium chloride---menjie chemicals co

2013-09-02 Thread Ffkq
Dear Sir or Madam: Good Day! Glad to learn you`re on the market of water treatment chemicals products We are a professional manufacturers of water treatment agent products with 17years experience, as well as the supplier for Kemira ,now our featured products are: Coagulant for

[PATCH 40/58] ARM: davinci: nand: specify ecc strength

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Sekhar Nori commit acd36357edc08649e85ff15dc4ed62353c912eff upstream. Starting with kernel v3.5, it is mandatory to specify ECC strength when using hardware ECC. Without this, kernel

[PATCH 43/58] xen/events: initialize local per-cpu mask for all possible events

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: David Vrabel commit 84ca7a8e45dafb49cd5ca90a343ba033e2885c17 upstream. The sizeof() argument in init_evtchn_cpu_bindings() is incorrect resulting in only the first 64 (or 32 in 32-bit

[PATCH 37/58] ARM: at91/DT: fix at91sam9n12ek memory node

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Nicolas Ferre commit a57603ca2871ee0773b00839c1ea35c4a2d3eeb0 upstream. Signed-off-by: Nicolas Ferre Signed-off-by: Luis Henriques --- arch/arm/boot/dts/at91sam9n12ek.dts | 4 ++-- 1

[PATCH 41/58] ARM: 7816/1: CONFIG_KUSER_HELPERS: fix help text

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Nicolas Pitre commit ac124504ecf6b20a2457d873d0728a8b991a5b0c upstream. Commit f6f91b0d9fd9 ("ARM: allow kuser helpers to be removed from the vector page") introduced some help text for

[PATCH 42/58] sata_fsl: save irqs while coalescing

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Anthony Foiani commit 99bbdfa6bdcb4bdf5be914a48e9b46941bf30819 upstream. Before this patch, I was seeing the following lockdep splat on my MPC8315 (PPC32) target: [9.086051]

[PATCH 39/58] libata: apply behavioral quirks to sil3826 PMP

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Terry Suereth commit 894d20b7eb446e848e0046107d51b17a20a8 upstream. Fixing support for the Silicon Image 3826 port multiplier, by applying to it the same quirks applied to the

Re: [PATCH] Kconfig.debug: Add FRAME_POINTER anti-dependency for ARC

2013-09-02 Thread Gilad Ben-Yossef
Hi, On Tue, Aug 27, 2013 at 11:31 AM, Vineet Gupta wrote: > > Frame pointer on ARC doesn't serve the conventional purpose of stack > unwinding due to the typical way ABI designates it's usage. More out of curiosity to understand the platform better than actual review - can you explain a little

[PATCH 49/58] Bluetooth: Add support for Atheros [0cf3:3121]

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: AceLan Kao commit 1ebd0b21ab14efb75950079840eac29afea2a26e upstream. Add support for the AR3012 chip. T: Bus=03 Lev=01 Prnt=01 Port=06 Cnt=01 Dev#= 6 Spd=12 MxCh= 0 D: Ver= 1.10

[PATCH 53/58] jfs: fix readdir cookie incompatibility with NFSv4

2013-09-02 Thread Luis Henriques
3.5.7.21 -stable review patch. If anyone has any objections, please let me know. -- From: Dave Kleikamp commit 44512449c0ab368889dd13ae0031fba74ee7e1d2 upstream. NFSv4 reserves readdir cookie values 0-2 for special entries (. and ..), but jfs allows a value of 2 for a

<    1   2   3   4   5   6   7   8   9   10   >