[PATCH 2/2] mn10300: Fix include dependency in irqflags.h

2013-06-16 Thread ddaney . cavm
From: David Daney david.da...@cavium.com We need to pick up the definition of raw_smp_processor_id() from asm/smp.h. For the !SMP case, we need to supply a definition of raw_smp_processor_id(). Signed-off-by: David Daney david.da...@cavium.com --- arch/mn10300/include/asm/irqflags.h | 3 ++-

[PATCH 1/2] ia64: Fix include dependency in asm/irqflags.h

2013-06-16 Thread ddaney . cavm
From: David Daney dda...@caviumnetworks.com asm/kregs.h isn't always included first, so we need an explicit include. Signed-off-by: David Daney david.da...@cavium.com --- arch/ia64/include/asm/irqflags.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/ia64/include/asm/irqflags.h

Re: [QUESTION] LVDS / MIPI

2013-06-16 Thread Guennadi Liakhovetski
On Sun, 16 Jun 2013, kernel-...@fireacop.com wrote: I have checked the Kernel Source and the Internet. Not much if any support for LVDS / MIPI. What exactly do you need support for? MIPI CSI (2/3) capture? Thanks Guennadi This would be for Device Drivers under Multimedia and Video

[RFC PATCH 01/11] dma: amba-pl08x: Use bitmap to pass variant specific quirks

2013-06-16 Thread Tomasz Figa
Instead of defining new bool field in vendor_data struct for each quirk, it is more reasonable to use a single flags field and make each quirk use single bits. Signed-off-by: Tomasz Figa tomasz.f...@gmail.com --- drivers/dma/amba-pl08x.c | 31 +-- 1 file changed, 17

[RFC PATCH 07/11] dmaengine: PL08x: Fix reading the byte count in cctl

2013-06-16 Thread Tomasz Figa
From: Alban Bedel alban.be...@avionic-design.de There are more fields than just SWIDTH in CH_CONTROL register, so read register value must be masked in addition to shifting. Signed-off-by: Alban Bedel alban.be...@avionic-design.de Signed-off-by: Tomasz Figa tomasz.f...@gmail.com ---

[RFC PATCH 08/11] dmaengine: PL08x: Add cyclic transfer support

2013-06-16 Thread Tomasz Figa
From: Alban Bedel alban.be...@avionic-design.de Many audio interface drivers require support of cyclic transfers to work correctly, for example Samsung ASoC DMA driver. This patch adds support for cyclic transfers to the amba-pl08x driver. Signed-off-by: Alban Bedel alban.be...@avionic-design.de

[RFC PATCH 11/11] ARM: s3c64xx: Add support for DMA using generic amba-pl08x driver

2013-06-16 Thread Tomasz Figa
This patch adds all required platform-specific data and initialization code to support the generic amba-pl08x driver on S3C64xx SoCs. Also some compatibility definitions are added to make the transition from legacy API to DMA engine easier. The biggest hack here is passing const char * pointers

[RFC PATCH 10/11] ASoC: samsung: Do not require legacy DMA API in case of S3C64XX

2013-06-16 Thread Tomasz Figa
With support for amba-pl08x driver, on S3C64xx the generic DMA engine API can be used instead of the private s3c-dma interface. Signed-off-by: Tomasz Figa tomasz.f...@gmail.com --- sound/soc/samsung/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[RFC PATCH 09/11] spi: s3c64xx: Do not require legacy DMA API in case of S3C64XX

2013-06-16 Thread Tomasz Figa
With support for amba-pl08x driver, on S3C64xx the generic DMA engine API can be used instead of the private s3c-dma interface. Signed-off-by: Tomasz Figa tomasz.f...@gmail.com --- drivers/spi/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/Kconfig

[RFC PATCH 06/11] dma: amba-pl08x: Keep LLIs aligned to 4-word boundary

2013-06-16 Thread Tomasz Figa
PL080 reference manual states that to LLI entries should be aligned to 4-word boundary to make LLI fetches more efficient. This patch adds a 3-word padding to the LLi struct to make this condition true. Signed-off-by: Tomasz Figa tomasz.f...@gmail.com --- drivers/dma/amba-pl08x.c | 1 + 1 file

[RFC PATCH 03/11] dma: amba-pl08x: Add support for different offset of CONFIG register

2013-06-16 Thread Tomasz Figa
Some variants of PL08x (namely PL080S, found in Samsung S3C64xx SoCs) have CONFIG register at different offset. This patch makes the driver use offset from vendor data struct. Signed-off-by: Tomasz Figa tomasz.f...@gmail.com --- drivers/dma/amba-pl08x.c | 51

[RFC PATCH 05/11] dma: amba-pl08x: Add support for different maximum transfer size

2013-06-16 Thread Tomasz Figa
PL080S has separate register to store transfer size in, allowing single transfer to be much larger than in standard PL080. This patch makes the amba-pl08x driver aware of this and removes writing transfer size to reserved bits of CH_CONTROL register on PL080S, which was not a problem witn

[RFC PATCH 04/11] dma: amba-pl08x: Add support for PL080S variant

2013-06-16 Thread Tomasz Figa
PL080S is a modified version of PL080 that can be found on Samsung SoCs, such as S3C6400 and S3C6410. It has different offset of CONFIG register, separate CONTROL1 register that holds transfer size and larger maximum transfer size. Signed-off-by: Tomasz Figa tomasz.f...@gmail.com ---

[RFC PATCH 02/11] dma: amba-pl08x: Refactor pl08x_getbytes_chan() to lower indentation

2013-06-16 Thread Tomasz Figa
Further patch will introduce support for PL080S, which requires some things to be done conditionally, thus increasing indentation level of some functions even more. This patch reduces indentation level of pl08x_getbytes_chan() function by inverting several conditions and returning from function

[RFC PATCH 00/11] ARM: s3c64xx: Let amba-pl08x driver handle DMA

2013-06-16 Thread Tomasz Figa
One of the biggest roadblocks on the way of S3C64xx to DeviceTree support is its DMA driver, which is completely platform-specific and provides private API (s3c-dma), not even saying that its design is completely against multiplatform-awareness. The DMA controller present on this SoC series is a

Re: [PATCH v2 2/3] ARM: SAMSUNG: Consolidate uncompress subroutine

2013-06-16 Thread Kukjin Kim
On 06/13/13 15:04, Tushar Behera wrote: On 06/04/2013 09:49 AM, Tushar Behera wrote: For mach-exynos, uart_base is a pointer and the value is calculated in the machine folder. For other machines, uart_base is defined as a macro in platform directory. For symmetry, the uart_base macro definition

sparc64 WARNING: at mm/mmap.c:2757 exit_mmap+0x13c/0x160()

2013-06-16 Thread Meelis Roos
Got this in 3.10-rc6 whil testing debian unstable upgrade with aptitude. 3.10-rc5 did not exhibit this (nor any other kernel recently tried, including most -rc's). Does not seem to be reproducible. [ 568.834221] [ cut here ] [ 568.894907] WARNING: at mm/mmap.c:2757

Fwd: mxs-lradc oops when unloading module

2013-06-16 Thread Otavio Salvador
[ I am resending as it didn't make iio mailing list as the message wasn't plain text ] Hello, When using mxs-lradc, as module, in a MX23 and unloading the driver, it sometimes oops as: [ 46.34] Unable to handle kernel NULL pointer dereference at virtual address 0005 [ 46.34] pgd

[PATCH] bridge: fix switched interval for MLD Query types

2013-06-16 Thread Linus Lüssing
General Queries (the one with the Multicast Address field set to zero / '::') are supposed to have a Maximum Response Delay of [Query Response Interval], while for Multicast-Address-Specific Queries it is [Last Listener Query Interval] - not the other way round. (see RFC2710, section 7.3+7.8)

Re: [PATCH] mm: fix up a spurious page fault whenever it happens

2013-06-16 Thread Stanislav Meduna
Hi all, I was able to reproduce the page fault problem with a relatively simple application, for now on the Geode platform. It can be downloaded at http://www.meduna.org/tmp/PageFault.tar.gz Basically the test application does: - 4 threads that do nothing but periodically sleep - 1 thread

[PATCH 0/2] etzkx accelerometer support

2013-06-16 Thread Andi Shyti
Hi, these two patches provide the etzkx device driver which supports the following accelerometers: - Kionix kxcnl - Kionix kxtnk - ST lisn3dsh Support for ST lis3dsh accelerometer is still in progress. The etzkx accelerometers are a kind of devices that are able to do gesture recognition

[PATCH 2/2] Documentation: added etzkx driver documentation

2013-06-16 Thread Andi Shyti
The etzkx driver's documentation contains some basic information about - accelerometer chip overview - driver interfaces - driver usage Signed-off-by: Andi Shyti a...@etezian.org Reviewed-by: Onur Atilla oati...@gmail.com --- Documentation/misc-devices/etzkx.txt | 325

Re: A question on RCU vs. preempt-RCU

2013-06-16 Thread Tejun Heo
Hello, Paul. On Sun, Jun 16, 2013 at 07:13:35AM -0700, Paul E. McKenney wrote: CONFIG_TREE_PREEMPT_RCU does have an increment, decrement (sort of), and check in its rcu_read_lock() and rcu_read_unlock(), which will add overhead that might well be noticeable compared to CONFIG_TREE_RCU's

Re: [PATCH 0/2] etzkx accelerometer support

2013-06-16 Thread Greg KH
On Sun, Jun 16, 2013 at 11:40:26PM +0200, Andi Shyti wrote: Hi, these two patches provide the etzkx device driver which supports the following accelerometers: - Kionix kxcnl - Kionix kxtnk - ST lisn3dsh Support for ST lis3dsh accelerometer is still in progress. The etzkx

[PATCH percpu/for-3.11] percpu-refcount: use RCU-sched insted of normal RCU

2013-06-16 Thread Tejun Heo
percpu-refcount was incorrectly using preempt_disable/enable() for RCU critical sections against call_rcu(). 6a24474da8 (percpu-refcount: consistently use plain (non-sched) RCU) fixed it by converting the preepmtion operations with rcu_read_[un]lock() citing that there isn't any advantage in

Re: [QUESTION] LVDS / MIPI

2013-06-16 Thread kernel-dev
On Sun, Jun 16, 2013 at 10:45:38PM +0200, Guennadi Liakhovetski wrote: On Sun, 16 Jun 2013, kernel-...@fireacop.com wrote: I have checked the Kernel Source and the Internet. Not much if any support for LVDS / MIPI. What exactly do you need support for? MIPI CSI (2/3) capture?

Re: [PATCH 1/4] KVM: PPC: Add support for multiple-TCE hcalls

2013-06-16 Thread Alexander Graf
On 05.06.2013, at 08:11, Alexey Kardashevskiy wrote: This adds real mode handlers for the H_PUT_TCE_INDIRECT and H_STUFF_TCE hypercalls for QEMU emulated devices such as IBMVIO devices or emulated PCI. These calls allow adding multiple entries (up to 512) into the TCE table in one call

Re: [PATCH v9] watchdog: New watchdog driver for MEN A21 watchdogs

2013-06-16 Thread Guenter Roeck
On Fri, Jun 14, 2013 at 12:58:37PM +0200, Johannes Thumshirn wrote: This patch adds the driver for the watchdog devices found on MEN Mikro Elektronik A21 VMEbus CPU Carrier Boards. It has DT-support and uses the watchdog framework. Signed-off-by: Johannes Thumshirn johannes.thumsh...@men.de

[41/83] USB: mos7720: fix DMA to stack

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit 72ea18a558ed7a63a50bb121ba60d73b5b38ae30 upstream. The read_mos_reg function is called with stack-allocated buffers, which must not be used for control

[47/83] ACPI / video: ignore BIOS initial backlight value for HP m4

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Alex Hung alex.h...@canonical.com commit fedbe9bc6fd3e14b1ffbb3dac40ac4a3650c upstream. On HP m4 lapops, BIOS reports minimum backlight on boot and causes backlight to dim completely. This

[25/83] jfs: fix a couple races

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Dave Kleikamp dave.kleik...@oracle.com commit 73aaa22d5ffb2630456bac2f9a4ed9b81d0d7271 upstream. This patch fixes races uncovered by xfstests testcase 068. One race is the result of jfs_sync()

[61/83] USB: whiteheat: fix broken port configuration

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit 9eecf22d2b375b9064a20421c6c307b760b03d46 upstream. When configuring the port (e.g. set_termios) the port minor number rather than the port number was used

[39/83] USB: serial: fix Treo/Kyocera interrrupt-in urb context

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit 5f8e2c07d75967ee49a5da1d21ddf5f50d48cda0 upstream. The first and second interrupt-in urbs are swapped for some Treo/Kyocera devices, but the urb context

[74/83] cciss: fix broken mutex usage in ioctl

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Stephen M. Cameron scame...@beardog.cce.hp.com commit 03f47e888daf56c8e9046c674719a0bcc644eed5 upstream. If a new logical drive is added and the CCISS_REGNEWD ioctl is invoked (as is normal

[81/83] md/raid1: consider WRITE as successful only if at least one non-Faulty and non-rebuilding drive completed it.

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Alex Lyakas a...@zadarastorage.com commit 3056e3aec8d8ba61a0710fb78b2d562600aa2ea7 upstream. Without that fix, the following scenario could happen: - RAID1 with drives A and B; drive B was

[40/83] USB: visor: fix initialisation of Treo/Kyocera devices

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit 420021a395ce38b7ab2cceb52dee4038be7d8fa3 upstream. Fix regression introduced by commit 214916f2e (USB: visor: reimplement using generic framework) which

[60/83] ARM: 7743/1: compressed/head.S: work around new binutils warning

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Arnd Bergmann a...@arndb.de commit da94a829305f1c217cfdf6771cb1faca0917e3b9 upstream. In August 2012, Matthew Gretton-Dann checked a change into binutils labelled Error on obsolete warn on

[65/83] drm/gma500/cdv: Unpin framebuffer on crtc disable

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Patrik Jakobsson patrik.r.jakobs...@gmail.com commit 22e7c385a80d771aaf3a15ae7ccea3b0686bbe10 upstream. The framebuffer needs to be unpinned in the crtc-disable callback because of previous

[18/83] xen-netback: coalesce slots in TX path and fix regressions

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Wei Liu wei.l...@citrix.com commit 2810e5b9a7731ca5fce22bfbe12c96e16ac44b6f upstream. This patch tries to coalesce tx requests when constructing grant copy structures. It enables netback to

[67/83] Bluetooth: Fix missing length checks for L2CAP signalling PDUs

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hedberg johan.hedb...@intel.com commit cb3b3152b2f5939d67005cff841a1ca748b19888 upstream. There has been code in place to check that the L2CAP length header matches the amount of data

[10/83] iscsi-target: fix heap buffer overflow on error

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Kees Cook keesc...@chromium.org commit cea4dcfdad926a27a18e188720efe0f2c9403456 upstream. If a key was larger than 64 bytes, as checked by iscsi_check_key(), the error response packet,

[64/83] drm/gma500/psb: Unpin framebuffer on crtc disable

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Patrik Jakobsson patrik.r.jakobs...@gmail.com commit 820de86a90089ee607d7864538c98a23b503c846 upstream. The framebuffer needs to be unpinned in the crtc-disable callback because of previous

[52/83] USB: Serial: cypress_M8: Enable FRWD Dongle hidcom device

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Robert Butora robert.butora...@gmail.com commit 6529591e3eef65f0f528a81ac169f6e294b947a7 upstream. The patch adds a new HIDCOM device and does not affect other devices driven by the cypress_M8

[76/83] swap: avoid read_swap_cache_async() race to deadlock while waiting on discard I/O completion

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Rafael Aquini aqu...@redhat.com commit cbab0e4eec299e9059199ebe6daf48730be46d2b upstream. read_swap_cache_async() can race against get_swap_page(), and stumble across a SWAP_HAS_CACHE entry in

[51/83] radeon: Fix system hang issue when using KMS with older cards

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Adis Hamzić a...@hamzadis.com commit e49f3959a96dc279860af7e86e6dbcfda50580a5 upstream. The current radeon driver initialization routines, when using KMS, are written so that the IRQ

[56/83] USB: keyspan: fix bogus array index

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit a07088098a650267b2eda689538133a324b9523f upstream. The outcont_endpoints array was indexed using the port minor number (which can be greater than the array

[03/83] libata: make ata_exec_internal_sg honor DMADIR

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Vincent Pelletier plr.vinc...@gmail.com commit e771451c0a831d96a7c14b0ca8a8ec671d98567b upstream. libata honors DMADIR for regular commands, but not for internal commands used (among other)

[00/83] 3.2.47-rc1 review

2013-06-16 Thread Ben Hutchings
This is the start of the stable review cycle for the 3.2.47 release. There are 83 patches in this series, which will be posted as responses to this one. If anyone has any issues with these being applied, please let me know. Responses should be made by Tue Jun 18 22:00:00 UTC 2013. Anything

[71/83] CPU hotplug: provide a generic helper to disable/enable CPU hotplug

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Srivatsa S. Bhat srivatsa.b...@linux.vnet.ibm.com commit 16e53dbf10a2d7e228709a7286310e629ede5e45 upstream. There are instances in the kernel where we would like to disable CPU hotplug (from

[78/83] USB: spcp8x5: fix device initialisation at open

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit 5e4211f1c47560c36a8b3d4544dfd866dcf7ccd0 upstream. Do not use uninitialised termios data to determine when to configure the device at open. Signed-off-by:

Re: Questions about Runtime Power Management

2013-06-16 Thread Oliver Neukum
On Sunday 16 June 2013 23:07:36 Ming Lei wrote: On Mon, Jun 10, 2013 at 12:28 AM, Morales, Alejandra alejandra.mora...@tum.de wrote: - Is runtime power management supported by net devices? Currently, 'struct net_device' doesn't support runtime power management, and I submitted one patch

[72/83] reboot: rigrate shutdown/reboot to boot cpu

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Robin Holt h...@sgi.com commit cf7df378aa4ff7da3a44769b7ff6e9eef1a9f3db upstream. We recently noticed that reboot of a 1024 cpu machine takes approx 16 minutes of just stopping the cpus. The

[62/83] USB: option: blacklist network interface on Huawei E1820

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Bjørn Mork bj...@mork.no commit b8a24e6281d37243c06b9497dcbfaa98c1e2ad35 upstream. The mode used by Windows for the Huawei E1820 will use the same ff/ff/ff class codes for both serial and

[68/83] ath9k: Disable PowerSave by default

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Sujith Manoharan c_man...@qca.qualcomm.com commit 73c79617596b89a3693ff0d89d42bcd5ddedcf15 upstream. Almost all the DMA issues which have plagued ath9k (in station mode) for years are related

[42/83] USB: ark3116: fix control-message timeout

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit 634371911730a462626071065b64cd6e1fe213e0 upstream. The control-message timeout is specified in milliseconds and should not depend on HZ. Signed-off-by:

[77/83] mm: migration: add migrate_entry_wait_huge()

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Naoya Horiguchi n-horigu...@ah.jp.nec.com commit 30dad30922ccc733cfdbfe232090cf674dc374dc upstream. When we have a page fault for the address which is backed by a hugepage under migration, the

[59/83] ARM: 7742/1: topology: export cpu_topology

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Arnd Bergmann a...@arndb.de commit 92bdd3f5eba299b33c2f4407977d6fa2e2a6a0da upstream. The cpu_topology symbol is required by any driver using the topology interfaces, which leads to a couple of

[34/83] xhci-mem: init list heads at the beginning of init

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. [Re-sending with the pseudo-headers unmangled.] -- From: Sergio Aguirre sergio.a.aguirre.rodrig...@intel.com commit 331de00a64e5027365145bdf51da27b9ce15dfd5 upstream. It is possible that we fail on

[70/83] b43: stop format string leaking into error msgs

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Kees Cook keesc...@chromium.org commit e0e29b683d6784ef59bbc914eac85a04b650e63c upstream. The module parameter fwpostfix is userspace controllable, unfiltered, and is used to define the

[12/83] tg3: Add read dma workaround for 5720

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Nithin Sujir nsu...@broadcom.com commit 9bc297ea0622bb2a6b3abfa2fa84f0a3b86ef8c8 upstream. Commit 091f0ea30074bc43f9250961b3247af713024bc6 tg3: Add New 5719 Read DMA workaround added a

[66/83] drm/i915: prefer VBT modes for SVDO-LVDS over EDID

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Daniel Vetter daniel.vet...@ffwll.ch commit c3456fb3e4712d0448592af3c5d644c9472cd3c1 upstream. In commit 53d3b4d7778daf15900867336c85d3f8dd70600c Author: Egbert Eich e...@suse.de Date: Tue

[36/83] xhci - correct comp_mode_recovery_timer on return from hibernate

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Tony Camuso tcam...@redhat.com commit 77df9e0b799b03e1d5d9c68062709af5f637e834 upstream. Commit 71c731a2 (usb: host: xhci: Fix Compliance Mode on SN65LVPE502CP Hardware) was a workaround for

[83/83] powerpc: Fix emulation of illegal instructions on PowerNV platform

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Paul Mackerras pau...@samba.org commit bf593907f7236e95698a76b7c7a2bbf8b1165327 upstream. Normally, the kernel emulates a few instructions that are unimplemented on some processors (e.g. the

[35/83] xhci: fix list access before init

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Vladimir Murzin murzi...@gmail.com commit 88696ae432ce7321540ac53d9caab3de9118b094 upstream. If for whatever reason we fall into fail path in xhci_mem_init() before bw table gets initialized we

Re: Linux 3.10-rc6

2013-06-16 Thread Davidlohr Bueso
On Sun, 2013-06-16 at 08:28 -1000, Linus Torvalds wrote: On Sun, Jun 16, 2013 at 8:09 AM, Linus Torvalds torva...@linux-foundation.org wrote: On Sun, Jun 16, 2013 at 2:37 AM, Martin Steigerwald mar...@lichtvoll.de wrote: Do you really think your cursing controls how other people behave?

[PATCH v2 2/2] MAINTAINERS: Add exynos filename match to ARM/S5P EXYNOS ARM ARCHITECTURES

2013-06-16 Thread Doug Anderson
This will help direct patches related to exynos to the linux-samsung-soc mailing list for discussion. Suggested by Joe Perches. Signed-off-by: Doug Anderson diand...@chromium.org --- Changes in v2: - New for this version. MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH v2 1/2] MAINTAINERS: Add Samsung pinctrl entries

2013-06-16 Thread Doug Anderson
It's convenient if get_maintainer suggests sending samsung/exynos pinctrl changes to linux-samsung-soc and to Tomasz and Thomas. Signed-off-by: Doug Anderson diand...@chromium.org --- Changes in v2: - Updated with Thomas and Tomasz; removed Linus since he's already there as part of the general

[15/83] xen-netback: remove skb in xen_netbk_alloc_page

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Wei Liu wei.l...@citrix.com commit 27f852282ab9a028f57da96d05c26f38c424a315 upstream. This variable is never used. Signed-off-by: Wei Liu wei.l...@citrix.com Acked-by: Ian Campbell

[63/83] hwmon: (adm1021) Strengthen chip detection for ADM1021, LM84 and MAX1617

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Guenter Roeck li...@roeck-us.net commit 591bfcfc334a003ba31c0deff03b22e73349939b upstream. On a system with both MAX1617 and JC42 sensors, JC42 sensors can be misdetected as LM84. Strengthen

[24/83] xen-netfront: reduce gso_max_size to account for max TCP header

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Wei Liu wei.l...@citrix.com commit 9ecd1a75d977e2e8c48139c7d3efed183f898d94 upstream. The maximum packet including header that can be handled by netfront / netback wire format is 65535. Reduce

[29/83] thinkpad-acpi: recognize latest V-Series using DMI_BIOS_VENDOR

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Manoj Iyer manoj.i...@canonical.com commit a4f46bb9fa84642e356898ee44b670989622f8bb upstream. In the latest V-series bios DMI_PRODUCT_VERSION does not contain the string Lenovo or Thinkpad, but

[54/83] ALSA: usb-audio - Apply Logitech QuickCam Pro 9000 quirk only to audio iface

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai ti...@suse.de commit 8eafc0a161123d90617c9ca2eddfe87b382b1b89 upstream. ... instead of applying to all interfaces. Reference: http://forums.gentoo.org/viewtopic-p-6886404.html

[11/83] tg3: Add New 5719 Read DMA workaround

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Michael Chan mc...@broadcom.com commit 091f0ea30074bc43f9250961b3247af713024bc6 upstream. After Power-on-reset, the 5719's TX DMA length registers may contain uninitialized values and cause TX

[26/83] xen/events: Handle VIRQ_TIMER before any other hardirq in event loop.

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Keir Fraser keir.fra...@citrix.com This avoids any other hardirq handler seeing a very stale jiffies value immediately after wakeup from a long idle period. The one observable symptom of this

[27/83] b43legacy: Fix crash on unload when firmware not available

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Larry Finger larry.fin...@lwfinger.net commit 2d838bb608e2d1f6cb4280e76748cb812dc822e7 upstream. When b43legacy is loaded without the firmware being available, a following unload generates a

[28/83] ext4: lock i_mutex when truncating orphan inodes

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Theodore Ts'o ty...@mit.edu commit 721e3eba21e43532e438652dd8f1fcdfce3187e7 upstream. Commit c278531d39 added a warning when ext4_flush_unwritten_io() is called without i_mutex being taken. It

[38/83] USB: revert periodic scheduling bugfix

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Alan Stern st...@rowland.harvard.edu commit fdc03438f53a00294ed9939eb3a1f6db6f3d8963 upstream. This patch reverts commit 3e619d04159be54b3daa0b7036b0ce9e067f4b5d (USB: EHCI: fix bug in

[44/83] USB: mos7720: fix message timeouts

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit 849513a7809175420d353625b6f651d961e99d49 upstream. The control and bulk-message timeouts are specified in milliseconds and should not depend on HZ.

[45/83] ACPI video: ignore BIOS backlight value for HP dm4

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Gustavo Maciel Dias Vieira gust...@sagui.org commit 771d09b3c4c45d4d534a83a68e6331b97fd82e15 upstream. On a HP Pavilion dm4 laptop the BIOS sets minimum backlight on boot, completely dimming

[75/83] drivers/rtc/rtc-twl.c: fix missing device_init_wakeup() when booted with device tree

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Tony Lindgren t...@atomide.com commit 24b8256a1fb28d357bc6fa09184ba29b4255ba5c upstream. When booted in legacy mode device_init_wakeup() gets called by drivers/mfd/twl-core.c when the children

[49/83] drm: fix a use-after-free when GPU acceleration disabled

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Huacai Chen che...@lemote.com commit b7ea85a4fed37835eec78a7be3039c8dc22b8178 upstream. When GPU acceleration is disabled, drm_vblank_cleanup() will free the vblank-related data, such as

[79/83] USB: pl2303: fix device initialisation at open

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit 2d8f4447b58bba5f8cb895c07690434c02307eaf upstream. Do not use uninitialised termios data to determine when to configure the device at open. This also

[48/83] ACPI / video: ignore BIOS initial backlight value for HP Pavilion g6

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Ash Willis ashwillis.ker...@gmail.com commit 780a6ec640a3fed671fc2c40e4dd30c03eca3ac3 upstream. This patch addresses kernel bug 56661. BIOS reports an incorrect backlight value, causing the

[58/83] ALSA: usb-audio - Fix invalid volume resolution on Logitech HD webcam c270

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai ti...@suse.de commit 11e7064f35bb87da8f427d1aa4bbd8b7473a3993 upstream. USB audio driver spews an error message when probing Logitech HD webcam c270: ALSA mixer.c:1300 usb_audio:

[73/83] audit: wait_for_auditd() should use TASK_UNINTERRUPTIBLE

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Oleg Nesterov o...@redhat.com commit f000cfdde5de4fc15dead5ccf524359c07eadf2b upstream. audit_log_start() does wait_for_auditd() in a loop until audit_backlog_wait_time passes or

[22/83] xen-netback: better names for thresholds

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Wei Liu wei.l...@citrix.com commit 376414945d15aa636e65f7e773c1e398b7a21cb9 upstream. This patch only changes some names to avoid confusion. In this patch we have: MAX_SKB_SLOTS_DEFAULT -

[33/83] drm/gma500: Increase max resolution for mode setting

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Patrik Jakobsson patrik.r.jakobs...@gmail.com commit cbbd379aa43890f36da934f5af619d2fb8ec3d87 upstream. By having a higher max resolution we can now set up a virtual framebuffer that spans

[43/83] USB: iuu_phoenix: fix bulk-message timeout

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit 6c13ff68a7ce01da7a51b44241a7aad8eaaedde7 upstream. The bulk-message timeout is specified in milliseconds and should not depend on HZ. Signed-off-by: Johan

[69/83] ath9k: Use minstrel rate control by default

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Sujith Manoharan c_man...@qca.qualcomm.com commit 5efac94999ff218e0101f67a059e44abb4b0b523 upstream. The ath9k rate control algorithm has various architectural issues that make it a poor fit in

[32/83] USB: ftdi_sio: Quiet sparse noise about using plain integer was NULL pointer

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Ying Xue ying@windriver.com commit a816e3113b63753c330ca4751ea1d208e93e3015 upstream. Pointers should not be compared to plain integers. Quiets the sparse warning: warning: Using plain

[05/83] cifs: fix potential buffer overrun when composing a new options string

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Jeff Layton jlay...@redhat.com commit 166faf21bd14bc5c5295a44874bf7f3930c30b20 upstream. Consider the case where we have a very short ip= string in the original mount options, and when we chase

[21/83] xen-netback: avoid allocating variable size array on stack

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Wei Liu wei.l...@citrix.com commit 59ccb4ebbc35e36a3c143f2d1355deb75c2e628f upstream. Tune xen_netbk_count_requests to not touch working array beyond limit, so that we can make working array

Re: [PATCH 0/2] etzkx accelerometer support

2013-06-16 Thread Andi Shyti
these two patches provide the etzkx device driver which supports the following accelerometers: - Kionix kxcnl - Kionix kxtnk - ST lisn3dsh Support for ST lis3dsh accelerometer is still in progress. The etzkx accelerometers are a kind of devices that are able to do

[50/83] drm/i915: no lvds quirk for hp t5740

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Ben Mesman b...@bnc.nl commit 45a211d75137b1ac869a8a758a6667f15827a115 upstream. Last year, a patch was made for the HP t5740e Thin Client (see

[08/83] drm/radeon: fix card_posted check for newer asics

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Alex Deucher alexander.deuc...@amd.com commit 09fb8bd1a63b0f9f15e655c4fe8d047e5d2bf67a upstream. Newer asics have variable numbers of crtcs. Use that rather than the asic family to determine

Re: [PATCH 3/4] KVM: PPC: Add support for IOMMU in-kernel handling

2013-06-16 Thread Alexander Graf
On 05.06.2013, at 08:11, Alexey Kardashevskiy wrote: This allows the host kernel to handle H_PUT_TCE, H_PUT_TCE_INDIRECT and H_STUFF_TCE requests without passing them to QEMU, which should save time on switching to QEMU and back. Both real and virtual modes are supported - whenever the

[30/83] ftrace: Move ftrace_filter_lseek out of CONFIG_DYNAMIC_FTRACE section

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Steven Rostedt (Red Hat) rost...@goodmis.org commit 7f49ef69db6bbf756c0abca7e9b65b32e999eec8 upstream. As ftrace_filter_lseek is now used with ftrace_pid_fops, it needs to be moved out of the

[20/83] xen-netback: remove redundent parameter in netbk_count_requests

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Wei Liu wei.l...@citrix.com commit ac69c26e7accb04ae2cb9ab0872068983a42b3c8 upstream. Tracking down from the caller, first_idx is always equal to vif-tx.req_cons. Remove it to avoid confusion.

[82/83] tg3: Wait for boot code to finish after power on

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Nithin Sujir nsu...@broadcom.com commit df465abfe06f7dc4f33f4a96d17f096e9e8ac917 upstream. Some systems that don't need wake-on-lan may choose to power down the chip on system standby. Upon

[57/83] USB: mos7720: fix hardware flow control

2013-06-16 Thread Ben Hutchings
3.2.47-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold jhov...@gmail.com commit a26f009a070e840fadacb91013b2391ba7ab6cc2 upstream. The register access to enable hardware flow control depends on the device port number and not the port

<    1   2   3   4   5   6   7   >