[ 07/75] usb: dwc3: core: dont forget to free coherent memory

2013-03-18 Thread Greg Kroah-Hartman
remove(). Signed-off-by: Felipe Balbi Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc3/core.c |1 + 1 file changed, 1 insertion(+) --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -575,6 +575,7 @@ static int dwc3_remove(struct platform_d

[ 11/75] USB: storage: fix Huawei mode switching regression

2013-03-18 Thread Greg Kroah-Hartman
ne.linux.usb.general/28543 Signed-off-by: Bjørn Mork Cc: Signed-off-by: Greg Kroah-Hartman --- drivers/usb/storage/initializers.c | 76 drivers/usb/storage/initializers.h |4 drivers/usb/storage/unusual_devs.h | 329 - 3 files changed, 3

[ 10/75] usb: serial: Add Rigblaster Advantage to device table

2013-03-18 Thread Greg Kroah-Hartman
interface but the device ID is not in the driver. Signed-off-by: Steve Conklin Signed-off-by: Greg Kroah-Hartman --- drivers/usb/serial/cp210x.c |1 + 1 file changed, 1 insertion(+) --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c @@ -85,6 +85,7 @@ static const struct

[ 09/75] USB: added support for Cinterions products AH6 and PLS8

2013-03-18 Thread Greg Kroah-Hartman
ff-by: Christian Schmiedl Signed-off-by: Greg Kroah-Hartman --- drivers/usb/serial/option.c |4 1 file changed, 4 insertions(+) --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -341,6 +341,8 @@ static void option_instat_callback(struc #define CINTERION_PRODUCT_

[ 08/75] usb: cp210x new Vendor/Device IDs

2013-03-18 Thread Greg Kroah-Hartman
orted from cp210x driver distributed by Lake Shore web site: http://www.lakeshore.com/Documents/Lake%20Shore%20cp210x-3.0.0.tar.gz and licensed under the terms of GPLv2. Moreover, I've tested this changes with Lake Shore 335 in my labs. Signed-off-by: Matwey V. Kornilov Signed-off-by: Gre

[ 04/75] USB: option: add Huawei E5331

2013-03-18 Thread Greg Kroah-Hartman
-by: Greg Kroah-Hartman --- drivers/usb/serial/option.c |1 + 1 file changed, 1 insertion(+) --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -579,6 +579,7 @@ static const struct usb_device_id option { USB_DEVICE(QUANTA_VENDOR_ID, 0xea42

[ 02/75] xen/pciback: Dont disable a PCI device that is already disabled.

2013-03-18 Thread Greg Kroah-Hartman
. Reported-and-Tested-by: Sander Eikelenboom Signed-off-by: Konrad Rzeszutek Wilk Signed-off-by: Greg Kroah-Hartman --- drivers/xen/xen-pciback/pciback_ops.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/xen/xen-pciback/pciback_ops.c +++ b/drivers/xen/xen-pciback

Re: [ 29/75] perf,x86: fix kernel crash with PEBS/BTS after suspend/resume

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 10:35:27PM +0100, Stephane Eranian wrote: > On Mon, Mar 18, 2013 at 10:20 PM, Greg Kroah-Hartman > wrote: > > On Mon, Mar 18, 2013 at 10:11:28PM +0100, Stephane Eranian wrote: > >> On Mon, Mar 18, 2013 at 10:06 PM, Greg Kroah-Hartman > >> w

Re: [PATCH] usb: Make USB persist default configurable

2013-03-18 Thread Greg Kroah-Hartman
On Wed, Mar 13, 2013 at 03:57:31PM -0700, Julius Werner wrote: > Commit 9214d1d8 set the USB persist flag as a default for all devices. > This might be desirable for some distributions, but it certainly has its > trade-offs... most importantly, it can significantly increase system > resume time, be

Re: [PATCH 4/7] n_tty: Encapsulate minimum_to_wake within N_TTY

2013-03-18 Thread Greg Kroah-Hartman
On Wed, Mar 06, 2013 at 08:38:22AM -0500, Peter Hurley wrote: > minimum_to_wake is unique to N_TTY processing, and belongs in > per-ldisc data. > > Add the ldisc method, ldisc_ops::fasync(), to notify line disciplines > when signal-driven I/O is enabled or disabled. When enabled for N_TTY > (by fc

Re: [PATCH v3 0/6] TTY: port hangup and close fixes

2013-03-18 Thread Greg Kroah-Hartman
On Thu, Mar 07, 2013 at 03:55:47PM +0100, Johan Hovold wrote: > These patches against 3.9-rc1 fix a few issues with tty-port hangup and > close. all now applied, thanks. greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.

Re: [PATCH v5 00/44] ldisc patchset

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 11, 2013 at 04:44:20PM -0400, Peter Hurley wrote: > Greg, > This patchset includes > 'tty: Drop lock contention stat from ldsem trylocks' > so no need to apply that on this series. Also, I noticed you > kept the 'tty is NULL' removal on a different branch so I left > my patch in this

Re: [PATCH v5 26/44] tty: Add read-recursive, writer-prioritized rw semaphore

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 11, 2013 at 04:44:46PM -0400, Peter Hurley wrote: > The semantics of a rw semaphore are almost ideally suited > for tty line discipline lifetime management; multiple active > threads obtain "references" (read locks) while performing i/o > to prevent the loss or change of the current li

Re: [PATCH v5 28/44] tty: Remove ldsem recursion support

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 11, 2013 at 04:44:48PM -0400, Peter Hurley wrote: > Read lock recursion is no longer required for ldisc references; > remove mechanism. > > Signed-off-by: Peter Hurley > --- > drivers/tty/tty_ldsem.c | 83 > +-- > include/linux/tty_ldisc

Re: [PATCH] target: close target_put_sess_cmd() vs. core_tmr_abort_task() race

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 06:28:53PM -0400, Jörn Engel wrote: > It is possible for one thread to to take se_sess->sess_cmd_lock in > core_tmr_abort_task() before taking a reference count on > se_cmd->cmd_kref, while another thread in target_put_sess_cmd() drops > se_cmd->cmd_kref before taking se_ses

Re: [PATCH v5 28/44] tty: Remove ldsem recursion support

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 08:01:01PM -0400, Peter Hurley wrote: > On Mon, 2013-03-18 at 16:59 -0700, Greg Kroah-Hartman wrote: > > On Mon, Mar 11, 2013 at 04:44:48PM -0400, Peter Hurley wrote: > > > Read lock recursion is no longer required for ldisc references; >

Re: [PATCH] usb: Make USB persist default configurable

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 05:02:19PM -0700, Julius Werner wrote: > > Why can't you just revert this in userspace? Isn't that easier than > > doing a kernel patch and providing an option that we need to now > > maintain for pretty much forever? > > I could solve it in userspace, but that really feel

Re: [PATCH v3 0/5] zcache: Support zero-filled pages more efficiently

2013-03-18 Thread Greg Kroah-Hartman
On Fri, Mar 15, 2013 at 10:34:15AM +0800, Wanpeng Li wrote: > Changelog: > v2 -> v3: > * increment/decrement zcache_[eph|pers]_zpages for zero-filled pages, > spotted by Dan > * replace "zero" or "zero page" by "zero_filled_page", spotted by Dan > v1 -> v2: > * avoid changing tmem.[ch] en

Re: [PATCH] target: close target_put_sess_cmd() vs. core_tmr_abort_task() race

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 06:56:57PM -0400, Jörn Engel wrote: > On Mon, 18 March 2013 17:04:11 -0700, Greg Kroah-Hartman wrote: > > On Mon, Mar 18, 2013 at 06:28:53PM -0400, Jörn Engel wrote: > > > It is possible for one thread to to take se_sess->sess_cmd_lock in > > >

Re: [PATCH v3 2/5] zero-filled pages awareness

2013-03-18 Thread Greg Kroah-Hartman
On Fri, Mar 15, 2013 at 10:34:17AM +0800, Wanpeng Li wrote: > Compression of zero-filled pages can unneccessarily cause internal > fragmentation, and thus waste memory. This special case can be > optimized. > > This patch captures zero-filled pages, and marks their corresponding > zcache backing p

Re: [ 00/75] 3.8.4-stable review

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 06:51:37PM -0600, Shuah Khan wrote: > On Mon, Mar 18, 2013 at 3:06 PM, Greg Kroah-Hartman > wrote: > > This is the start of the stable review cycle for the 3.8.4 release. > > There are 75 patches in this series, all will be posted as a response > >

Re: [PATCH v3] target: close target_put_sess_cmd() vs. core_tmr_abort_task() race

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 07:34:13PM -0400, Jörn Engel wrote: > And because I'm lame and stupid, here's v3. > > It is possible for one thread to to take se_sess->sess_cmd_lock in > core_tmr_abort_task() before taking a reference count on > se_cmd->cmd_kref, while another thread in target_put_sess_cm

Re: [PATCH v5 26/44] tty: Add read-recursive, writer-prioritized rw semaphore

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 09:01:19PM -0400, Peter Hurley wrote: > On Mon, 2013-03-18 at 16:58 -0700, Greg Kroah-Hartman wrote: > > On Mon, Mar 11, 2013 at 04:44:46PM -0400, Peter Hurley wrote: > > > 2) TIOCSETD ioctl (change line discipline) expects to return an > > >e

Re: [ 00/75] 3.8.4-stable review

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 07:09:11PM -0600, Shuah Khan wrote: > On Mon, Mar 18, 2013 at 6:57 PM, Greg Kroah-Hartman > wrote: > > On Mon, Mar 18, 2013 at 06:51:37PM -0600, Shuah Khan wrote: > >> On Mon, Mar 18, 2013 at 3:06 PM, Greg Kroah-Hartman > >> wrote: > >

Re: [PATCH v3] target: close target_put_sess_cmd() vs. core_tmr_abort_task() race

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 07:11:12PM -0700, Nicholas A. Bellinger wrote: > On Mon, 2013-03-18 at 19:34 -0400, Jörn Engel wrote: > > And because I'm lame and stupid, here's v3. > > > > It is possible for one thread to to take se_sess->sess_cmd_lock in > > core_tmr_abort_task() before taking a referen

Re: [ 00/75] 3.8.4-stable review

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 10:00:32PM -0600, Shuah Khan wrote: > On Mon, Mar 18, 2013 at 8:00 PM, Greg Kroah-Hartman > wrote: > > On Mon, Mar 18, 2013 at 07:09:11PM -0600, Shuah Khan wrote: > >> On Mon, Mar 18, 2013 at 6:57 PM, Greg Kroah-Hartman > >> wrote: > &

Re: [PATCH v4] target: close target_put_sess_cmd() vs. core_tmr_abort_task() race

2013-03-18 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 11:31:12PM -0400, Jörn Engel wrote: > On Mon, 18 March 2013 18:53:54 -0700, Greg Kroah-Hartman wrote: > > On Mon, Mar 18, 2013 at 07:34:13PM -0400, Jörn Engel wrote: > > > --- > > > drivers/target/target_core_transport.c | 17 +++--

Re: [PATCH v4] target: close target_put_sess_cmd() vs. core_tmr_abort_task() race

2013-03-19 Thread Greg Kroah-Hartman
On Mon, Mar 18, 2013 at 11:58:03PM -0400, Jörn Engel wrote: > On Mon, 18 March 2013 22:09:54 -0700, Greg Kroah-Hartman wrote: > > On Mon, Mar 18, 2013 at 11:31:12PM -0400, Jörn Engel wrote: > > > On Mon, 18 March 2013 18:53:54 -0700, Greg Kroah-Hartman wrote: > > >

Re: [PATCH 4/7] n_tty: Encapsulate minimum_to_wake within N_TTY

2013-03-19 Thread Greg Kroah-Hartman
On Tue, Mar 19, 2013 at 09:57:09AM -0400, Peter Hurley wrote: > On Mon, 2013-03-18 at 16:15 -0700, Greg Kroah-Hartman wrote: > > On Wed, Mar 06, 2013 at 08:38:22AM -0500, Peter Hurley wrote: > > > minimum_to_wake is unique to N_TTY processing, and belongs in > > > per-l

Re: [BUG] staging: android: ashmem: Deadlock during ashmem_mmap and ashmem_read

2013-03-20 Thread Greg Kroah-Hartman
On Wed, Mar 20, 2013 at 09:08:03PM +0530, Shankar Brahadeeswaran wrote: > Hi Greg, Dan, > > Few days back I posted a patch to fix a dead lock issue in the ashmem > driver that got merged in staging-next branch > https://lkml.org/lkml/2013/2/20/429 > > I'm seeing that there exists another path in

Re: [PATCH 1/2] of: Make device nodes kobjects so they show up in sysfs

2013-03-20 Thread Greg Kroah-Hartman
On Wed, Mar 20, 2013 at 03:57:12PM +0100, Benjamin Herrenschmidt wrote: > On Wed, 2013-03-20 at 14:51 +, Grant Likely wrote: > > Device tree nodes are already treated as objects, and we already want to > > expose them to userspace which is done using the /proc filesystem today. > > Right now th

Re: use after free in sysfs_find_dirent

2013-03-20 Thread Greg Kroah-Hartman
On Wed, Mar 20, 2013 at 10:34:40AM -0400, Sasha Levin wrote: > On 03/19/2013 09:02 PM, Ming Lei wrote: > > Hi Sasha, > > > > On Wed, Mar 20, 2013 at 12:28 AM, Sasha Levin > > wrote: > >> On 03/19/2013 07:54 AM, Ming Lei wrote: > >> > >> With v3 of the patch: > >> > >> [ 1275.665758] sysfs_dir_po

Re: [PATCH] tty: serial: 8250: remove U6715 16550A auto-detection

2013-03-20 Thread Greg Kroah-Hartman
On Tue, Mar 19, 2013 at 08:50:09PM +0100, Philippe Langlais wrote: > The auto-detection based on 64 bytes fifo size causes troubles > for the identification of the MultiTechZPX Modems (pci 11c1:0480). > They loose the ability to do hardware flow control > (specifically CTS is never set). > > Signe

Re: [ 12/75] USB: EHCI: work around silicon bug in Intels EHCI controllers

2013-03-20 Thread Greg Kroah-Hartman
On Tue, Mar 19, 2013 at 10:44:30PM +0100, Sven Joachim wrote: > On 2013-03-19 22:00 +0100, Alan Stern wrote: > > > On Tue, 19 Mar 2013, Sven Joachim wrote: > > > >> On 2013-03-19 21:10 +0100, Alan Stern wrote: > >> > >> > On Tue, 19 Mar 2013, Sven Joachim wrote: > >> > > >> >> > In what way is re

Re: [ 12/75] USB: EHCI: work around silicon bug in Intels EHCI controllers

2013-03-20 Thread Greg Kroah-Hartman
On Wed, Mar 20, 2013 at 09:14:38PM +0100, Sven Joachim wrote: > On 2013-03-20 21:08 +0100, Greg Kroah-Hartman wrote: > > > On Tue, Mar 19, 2013 at 10:44:30PM +0100, Sven Joachim wrote: > >> On 2013-03-19 22:00 +0100, Alan Stern wrote: > >> > >> &g

Re: [ 12/75] USB: EHCI: work around silicon bug in Intels EHCI controllers

2013-03-20 Thread Greg Kroah-Hartman
On Wed, Mar 20, 2013 at 04:41:21PM -0400, Alan Stern wrote: > On Wed, 20 Mar 2013, Greg Kroah-Hartman wrote: > > > > > Ok, I'll postpone this patch for the next stable release, in time for > > > > the fix to be put in at the same time. > > > > >

Re: [PATCH 49/62] uio: convert to idr_alloc()

2013-02-02 Thread Greg Kroah-Hartman
On Sat, Feb 02, 2013 at 05:20:50PM -0800, Tejun Heo wrote: > Convert to the much saner new idr interface. > > Only compile tested. > > Signed-off-by: Tejun Heo > Cc: "Hans J. Koch" > Cc: Greg Kroah-Hartman > --- Acked-by: Greg Kroah-Hartman -- To unsubsc

Re: [PATCH v6 4/4] zram: get rid of lockdep warning

2013-02-03 Thread Greg Kroah-Hartman
On Wed, Jan 30, 2013 at 11:41:42AM +0900, Minchan Kim wrote: > Lockdep complains about recursive deadlock of zram->init_lock. > [1] made it false positive because we can't request IO to zram > before setting disksize. Anyway, we should shut lockdep up to > avoid many reporting from user. > > [1] :

Re: [PATCH 0/4] firmware: Make user-mode helper optional (v5)

2013-02-03 Thread Greg Kroah-Hartman
On Fri, Feb 01, 2013 at 12:17:33AM +0800, Ming Lei wrote: > On Fri, Feb 1, 2013 at 12:15 AM, Greg Kroah-Hartman > wrote: > > On Thu, Jan 31, 2013 at 11:13:53AM +0100, Takashi Iwai wrote: > >> Hi, > >> > >> this is a series of revised patches for makin

Re: [PATCH v6 4/4] zram: get rid of lockdep warning

2013-02-03 Thread Greg Kroah-Hartman
On Mon, Feb 04, 2013 at 12:42:08PM +0900, Minchan Kim wrote: > Hi Greg, > > On Sun, Feb 03, 2013 at 05:53:33PM -0800, Greg Kroah-Hartman wrote: > > On Wed, Jan 30, 2013 at 11:41:42AM +0900, Minchan Kim wrote: > > > Lockdep complains about recursive deadlock of zram->i

Re: [PATCH] zsmalloc: Add Kconfig for enabling PTE method

2013-02-04 Thread Greg Kroah-Hartman
On Mon, Feb 04, 2013 at 09:23:41AM +0900, Minchan Kim wrote: > Zsmalloc has two methods 1) copy-based and 2) pte based to access > allocations that span two pages. > You can see history why we supported two approach from [1]. > > But it was bad choice that adding hard coding to select architecture

Re: [patch] config: fix make kvmconfig

2013-02-04 Thread Greg Kroah-Hartman
On Mon, Feb 04, 2013 at 10:57:35AM -0800, David Rientjes wrote: > On Mon, 4 Feb 2013, Ingo Molnar wrote: > > > > arch/x86/Kconfig | 1 + > > > 1 file changed, 1 insertion(+) > > > > > > diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig > > > index 6979498..f9459b3 100644 > > > --- a/arch/x86/Kcon

Re: TDM bus support in Linux Kernel [PATCH]

2013-02-04 Thread Greg Kroah-Hartman
On Tue, Feb 05, 2013 at 10:31:21AM +1100, Ryan Mallon wrote: > On 30/01/13 23:37, Kurachkin Michail wrote: > > Hi Greg, > > > > I followed your recommendations and created a diff using Linux 3.8-rc5 > > sources. Please review it and give your comments. > > > > > > Hi Kurachkin, > > Below is a qu

Re: [PATCH 12/15] USB: gadget/freescale: disable non-multiplatform drivers

2013-02-05 Thread Greg Kroah-Hartman
On Tue, Feb 05, 2013 at 04:27:18PM +, Arnd Bergmann wrote: > On Monday 21 January 2013, Greg Kroah-Hartman wrote: > > On Mon, Jan 21, 2013 at 08:41:38PM +0200, Felipe Balbi wrote: > > > Hi, > > > > > > On Mon, Jan 21, 2013 at 05:16:05PM +, Arnd Berg

Re: [PATCH 1/5] staging/xgifb: Replace XGI340_CR6B table with simple if/else

2013-02-05 Thread Greg Kroah-Hartman
On Tue, Feb 05, 2013 at 12:29:43AM +0100, Peter Huewe wrote: > The XGI340_CR6B lookup table consists of the entries > {0xaa, 0xaa, 0xaa, 0xaa} for an index <= 2 and > {0x00, 0x00, 0x00, 0x00} for all other indices. > > The only user XGINew_SetDRAMDefaultRegister340 loops over these 4 values > of a

Re: [PATCH] zsmalloc: Add Kconfig for enabling PTE method

2013-02-05 Thread Greg Kroah-Hartman
On Tue, Feb 05, 2013 at 09:08:54AM +0900, Minchan Kim wrote: > Hi Greg, > > On Mon, Feb 04, 2013 at 10:51:46AM -0800, Greg Kroah-Hartman wrote: > > On Mon, Feb 04, 2013 at 09:23:41AM +0900, Minchan Kim wrote: > > > Zsmalloc has two methods 1) copy-based an

Re: [PATCH] zsmalloc: Add Kconfig for enabling PTE method

2013-02-05 Thread Greg Kroah-Hartman
On Wed, Feb 06, 2013 at 10:17:21AM +0900, Minchan Kim wrote: > > > > Did you test this? I don't see the new config value you added actually > > > > do anything in this code. Also, if I select it incorrectly on ARM, or > > > > > > *slaps self* > > > > Ok, so I'll drop this patch now. As for wha

Re: [PATCH 12/15] USB: gadget/freescale: disable non-multiplatform drivers

2013-02-05 Thread Greg Kroah-Hartman
On Tue, Feb 05, 2013 at 10:54:00PM +, Arnd Bergmann wrote: > On Tuesday 05 February 2013, Felipe Balbi wrote: > > [linus/master] Merge branch 'fix-max-write' of > > git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm > > > > It's building find for me: > > > > $ crossmake drivers

Re: [PATCH v2] zsmalloc: Add Kconfig for enabling PTE method

2013-02-05 Thread Greg Kroah-Hartman
On Wed, Feb 06, 2013 at 11:17:08AM +0900, Minchan Kim wrote: > diff --git a/drivers/staging/zsmalloc/Kconfig > b/drivers/staging/zsmalloc/Kconfig > index 9084565..232b3b6 100644 > --- a/drivers/staging/zsmalloc/Kconfig > +++ b/drivers/staging/zsmalloc/Kconfig > @@ -8,3 +8,15 @@ config ZSMALLOC >

Re: [PATCH 0/2] tty: metag_da: Add metag DA TTY driver

2013-02-06 Thread Greg Kroah-Hartman
On Wed, Feb 06, 2013 at 02:45:00PM +, James Hogan wrote: > Greg: is it okay to take this into your tty tree as it depends on Jiri's > tty_flip/tty_port changes? It won't get built until the arch/metag tree > comes along and defines the METAG_DA Kconfig symbol. Sure, I'll pick it up and push it

Re: [PATCH 0/2] tty: metag_da: Add metag DA TTY driver

2013-02-06 Thread Greg Kroah-Hartman
On Wed, Feb 06, 2013 at 02:45:00PM +, James Hogan wrote: > Greg: is it okay to take this into your tty tree as it depends on Jiri's > tty_flip/tty_port changes? It won't get built until the arch/metag tree > comes along and defines the METAG_DA Kconfig symbol. > > This is the same metag_da dri

Re: linux-next: build failure after merge of the final tree

2013-02-06 Thread Greg Kroah-Hartman
On Wed, Feb 06, 2013 at 06:42:43PM +1100, Stephen Rothwell wrote: > Hi all, > > On Wed, 6 Feb 2013 18:30:40 +1100 Stephen Rothwell > wrote: > > > > After merging the final tree, today's linux-next build (sparc defconfig) > > failed like this: > > > > arch/sparc/kernel/kgdb_32.c: In function 'sl

[ 05/34] drm/radeon: add quirk for RV100 board

2013-02-07 Thread Greg Kroah-Hartman
=60037 Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/radeon_combios.c |8 1 file changed, 8 insertions(+) --- a/drivers/gpu/drm/radeon/radeon_combios.c +++ b/drivers/gpu/drm/radeon/radeon_combios.c @@ -2470,6 +2470,14 @@ bool

[ 09/34] drm/radeon: prevent crash in the ring space allocation

2013-02-07 Thread Greg Kroah-Hartman
have patches to use IBs for the next kernel. Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/radeon_ring.c |3 +++ 1 file changed, 3 insertions(+) --- a/drivers/gpu/drm/radeon/radeon_ring.c +++ b/drivers/gpu/drm/radeon/radeon_ring.c @@ -377,6 +377,9 @

[ 21/26] USB: storage: optimize to match the Huawei USB storage devices and support new switch command

2013-02-07 Thread Greg Kroah-Hartman
modem interface with Huawei devices. 2. Add to support new switch command for new Huawei USB dongles. Signed-off-by: fangxiaozhi Signed-off-by: Greg Kroah-Hartman --- drivers/usb/storage/initializers.c | 76 drivers/usb/storage/initializers.h |4 drivers/usb/storage

[ 06/16] drivers/rtc/rtc-isl1208.c: call rtc_update_irq() from the alarm irq handler

2013-02-07 Thread Greg Kroah-Hartman
timeout problem with the hwclock utility. Signed-off-by: Jan Luebbe Cc: Alessandro Zummo Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- drivers/rtc/rtc-isl1208.c |3 +++ 1 file changed, 3 insertions(+) --- a/drivers/rtc/rtc-isl1208.c +++ b

[ 11/16] USB: qcserial: add Telit Gobi QDL device

2013-02-07 Thread Greg Kroah-Hartman
3.0-stable review patch. If anyone has any objections, please let me know. -- From: Daniele Palmas commit 78796ae17eacedcdcaaeb03ba73d2e532a4c8f83 upstream. Add VID and PID for Telit Gobi QDL device Signed-off-by: Daniele Palmas Signed-off-by: Greg Kroah-Hartman

[ 16/16] USB: XHCI: fix memory leak of URB-private data

2013-02-07 Thread Greg Kroah-Hartman
structure" Signed-off-by: Alan Stern Signed-off-by: Sarah Sharp Reported-and-tested-by: Martin Mokrejs Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/xhci-ring.c |2 ++ 1 file changed, 2 insertions(+) --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c @@

[ 15/16] xhci: Fix isoc TD encoding.

2013-02-07 Thread Greg Kroah-Hartman
: Set transfer burst last packet count field." Signed-off-by: Sarah Sharp Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/xhci-ring.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c @@ -3613,9 +3613,11

[ 19/26] usb: Using correct way to clear usb3.0 devices remote wakeup feature.

2013-02-07 Thread Greg Kroah-Hartman
Signed-off-by: Greg Kroah-Hartman --- drivers/usb/core/hub.c | 70 +++- include/linux/usb/ch9.h |6 2 files changed, 58 insertions(+), 18 deletions(-) --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c @@ -2463,6 +2

[ 14/16] USB: storage: optimize to match the Huawei USB storage devices and support new switch command

2013-02-07 Thread Greg Kroah-Hartman
modem interface with Huawei devices. 2. Add to support new switch command for new Huawei USB dongles. Signed-off-by: fangxiaozhi Signed-off-by: Greg Kroah-Hartman --- drivers/usb/storage/initializers.c | 76 drivers/usb/storage/initializers.h |4 drivers/usb/storage

[ 13/16] USB: storage: Define a new macro for USB storage match rules

2013-02-07 Thread Greg Kroah-Hartman
: fangxiaozhi Signed-off-by: Greg Kroah-Hartman --- drivers/usb/storage/usb.c | 12 drivers/usb/storage/usual-tables.c | 15 +++ 2 files changed, 27 insertions(+) --- a/drivers/usb/storage/usb.c +++ b/drivers/usb/storage/usb.c @@ -120,6 +120,17

[ 12/16] USB: EHCI: fix bug in scheduling periodic split transfers

2013-02-07 Thread Greg Kroah-Hartman
ed by this bug is that any isochronous transfer to a full-speed device with a maxpacket size larger than about 980 bytes is always rejected with a -ENOSPC error. Signed-off-by: Alan Stern Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/ehci-sched.c |2 +- 1 file changed, 1 insertion(

[ 02/16] drm/radeon: add quirk for RV100 board

2013-02-07 Thread Greg Kroah-Hartman
=60037 Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/radeon_combios.c |8 1 file changed, 8 insertions(+) --- a/drivers/gpu/drm/radeon/radeon_combios.c +++ b/drivers/gpu/drm/radeon/radeon_combios.c @@ -2338,6 +2338,14 @@ bool

[ 10/16] USB: option: add Changhong CH690

2013-02-07 Thread Greg Kroah-Hartman
) Sub=ff Prot=ff If#= 2 Alt= 0 #EPs= 2 Cls=ff(vend) Sub=ff Prot=ff If#= 3 Alt= 0 #EPs= 2 Cls=08(stor) Sub=06 Prot=50 Signed-off-by: Bjørn Mork Signed-off-by: Greg Kroah-Hartman --- drivers/usb/serial/option.c |5 + 1 file changed, 5 insertions(+) --- a/drivers/usb/serial/option.c

[ 24/26] xhci: Fix TD size for isochronous URBs.

2013-02-07 Thread Greg Kroah-Hartman
Update TD size field format." It may not apply well to kernels older than 3.2 because of commit 29cc88979a8818cd8c5019426e945aed118b400e "USB: use usb_endpoint_maxp() instead of le16_to_cpu()". Signed-off-by: Sarah Sharp Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/xh

[ 09/16] USB: option: add support for Telit LE920

2013-02-07 Thread Greg Kroah-Hartman
3.0-stable review patch. If anyone has any objections, please let me know. -- From: Daniele Palmas commit 03eb466f276ceef9dcf023dc5474db02af68aad9 upstream. Add PID and special handling for Telit LE920 Signed-off-by: Daniele Palmas Signed-off-by: Greg Kroah-Hartman

[ 08/16] USB: ftdi_sio: add PID/VID entries for ELV WS 300 PC II

2013-02-07 Thread Greg Kroah-Hartman
3.0-stable review patch. If anyone has any objections, please let me know. -- From: Sven Killig commit c249f911406efcc7456cb4af79396726bf7b8c57 upstream. Add PID/VID entries for ELV WS 300 PC II weather station Signed-off-by: Sven Killig Signed-off-by: Greg Kroah-Hartman

[ 07/16] USB: ftdi_sio: add Zolix FTDI PID

2013-02-07 Thread Greg Kroah-Hartman
: Greg Kroah-Hartman --- drivers/usb/serial/ftdi_sio.c |1 + drivers/usb/serial/ftdi_sio_ids.h |5 + 2 files changed, 6 insertions(+) --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c @@ -674,6 +674,7 @@ static struct usb_device_id id_table_com

[ 04/16] x86-64: Replace left over sti/cli in ia32 audit exit code

2013-02-07 Thread Greg Kroah-Hartman
Vrabel Cc: Konrad Rzeszutek Wilk Link: http://lkml.kernel.org/r/5108e0190278000ba...@nat28.tlf.novell.com Signed-off-by: Ingo Molnar Cc: Konrad Rzeszutek Wilk Cc: David Vrabel Tested-by: Peter Moody Signed-off-by: Greg Kroah-Hartman --- arch/x86/ia32/ia32entry.S |4 ++-- 1 file

[ 03/16] drm/radeon: Calling object_unrefer() when creating fb failure

2013-02-07 Thread Greg Kroah-Hartman
object_reference(). Signed-off-by: liu chuansheng Signed-off-by: xueminsu Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/radeon_display.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/drivers/gpu/drm/radeon/radeon_display.c +++ b/drivers/gpu

[ 05/16] nilfs2: fix fix very long mount time issue

2013-02-07 Thread Greg Kroah-Hartman
ONTINUED flag before nilfs_clean_segments() call. Reported-by: Sergey Alexandrov Signed-off-by: Vyacheslav Dubeyko Tested-by: Vyacheslav Dubeyko Acked-by: Ryusuke Konishi Tested-by: Ryusuke Konishi Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --

[ 26/26] usb: Prevent dead ports when xhci is not enabled

2013-02-07 Thread Greg Kroah-Hartman
switching." Signed-off-by: David Moore Signed-off-by: Sarah Sharp Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/pci-quirks.c |1 + 1 file changed, 1 insertion(+) --- a/drivers/usb/host/pci-quirks.c +++ b/drivers/usb/host/pci-quirks.c @@ -780,6 +780,7 @@ void usb_enable_xh

[ 25/26] USB: XHCI: fix memory leak of URB-private data

2013-02-07 Thread Greg Kroah-Hartman
structure" Signed-off-by: Alan Stern Signed-off-by: Sarah Sharp Reported-and-tested-by: Martin Mokrejs Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/xhci-ring.c |2 ++ 1 file changed, 2 insertions(+) --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c @@

[ 23/26] xhci: Fix isoc TD encoding.

2013-02-07 Thread Greg Kroah-Hartman
: Set transfer burst last packet count field." Signed-off-by: Sarah Sharp Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/xhci-ring.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c @@ -3662,9 +3662,11

[ 01/16] drm/radeon/evergreen+: wait for the MC to settle after MC blackout

2013-02-07 Thread Greg Kroah-Hartman
://bugs.freedesktop.org/show_bug.cgi?id=56139 https://bugs.freedesktop.org/show_bug.cgi?id=57567 Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/evergreen.c |2 ++ 1 file changed, 2 insertions(+) --- a/drivers/gpu/drm/radeon/evergreen.c +++ b/drivers/gpu

[ 00/16] 3.0.63-stable review

2013-02-07 Thread Greg Kroah-Hartman
received after that time might be too late. The whole patch series can be found in one patch at: kernel.org/pub/linux/kernel/v3.0/stable-review/patch-3.0.63-rc1.gz and the diffstat can be found below. thanks, greg k-h - Pseudo-Shortlog of commits: Greg Kroah-Hartman Linux

[ 22/26] drivers: xhci: fix incorrect bit test

2013-02-07 Thread Greg Kroah-Hartman
pport device-initiated USB 3.0 resume." Use '&' instead of '&&'. This should be backported to kernels as old as 3.4. Signed-off-by: Nickolai Zeldovich Signed-off-by: Sarah Sharp Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/xhci-ring.c |2 +-

[ 14/26] USB: option: add support for Telit LE920

2013-02-07 Thread Greg Kroah-Hartman
3.4-stable review patch. If anyone has any objections, please let me know. -- From: Daniele Palmas commit 03eb466f276ceef9dcf023dc5474db02af68aad9 upstream. Add PID and special handling for Telit LE920 Signed-off-by: Daniele Palmas Signed-off-by: Greg Kroah-Hartman

[ 20/26] USB: storage: Define a new macro for USB storage match rules

2013-02-07 Thread Greg Kroah-Hartman
: fangxiaozhi Signed-off-by: Greg Kroah-Hartman --- drivers/usb/storage/usb.c | 12 drivers/usb/storage/usual-tables.c | 15 +++ 2 files changed, 27 insertions(+) --- a/drivers/usb/storage/usb.c +++ b/drivers/usb/storage/usb.c @@ -120,6 +120,17

[ 12/26] USB: ftdi_sio: add Zolix FTDI PID

2013-02-07 Thread Greg Kroah-Hartman
: Greg Kroah-Hartman --- drivers/usb/serial/ftdi_sio.c |1 + drivers/usb/serial/ftdi_sio_ids.h |5 + 2 files changed, 6 insertions(+) --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c @@ -676,6 +676,7 @@ static struct usb_device_id id_table_com

[ 11/26] drivers/rtc/rtc-isl1208.c: call rtc_update_irq() from the alarm irq handler

2013-02-07 Thread Greg Kroah-Hartman
timeout problem with the hwclock utility. Signed-off-by: Jan Luebbe Cc: Alessandro Zummo Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- drivers/rtc/rtc-isl1208.c |3 +++ 1 file changed, 3 insertions(+) --- a/drivers/rtc/rtc-isl1208.c +++ b

[ 10/26] nilfs2: fix fix very long mount time issue

2013-02-07 Thread Greg Kroah-Hartman
ONTINUED flag before nilfs_clean_segments() call. Reported-by: Sergey Alexandrov Signed-off-by: Vyacheslav Dubeyko Tested-by: Vyacheslav Dubeyko Acked-by: Ryusuke Konishi Tested-by: Ryusuke Konishi Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --

[ 13/26] USB: ftdi_sio: add PID/VID entries for ELV WS 300 PC II

2013-02-07 Thread Greg Kroah-Hartman
3.4-stable review patch. If anyone has any objections, please let me know. -- From: Sven Killig commit c249f911406efcc7456cb4af79396726bf7b8c57 upstream. Add PID/VID entries for ELV WS 300 PC II weather station Signed-off-by: Sven Killig Signed-off-by: Greg Kroah-Hartman

[ 09/26] sched/rt: Use root_domain of rt_rq not current processor

2013-02-07 Thread Greg Kroah-Hartman
: Shawn Bohrer Acked-by: Steven Rostedt Acked-by: Mike Galbraith Cc: pet...@infradead.org Link: http://lkml.kernel.org/r/1358186131-29494-1-git-send-email-sboh...@rgmadvisors.com Signed-off-by: Ingo Molnar Signed-off-by: Greg Kroah-Hartman --- kernel/sched/rt.c |2 +- 1 file changed, 1

[ 18/26] USB: EHCI: fix bug in scheduling periodic split transfers

2013-02-07 Thread Greg Kroah-Hartman
ed by this bug is that any isochronous transfer to a full-speed device with a maxpacket size larger than about 980 bytes is always rejected with a -ENOSPC error. Signed-off-by: Alan Stern Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/ehci-sched.c |2 +- 1 file changed, 1 insertion(

[ 17/26] USB: EHCI: fix timer bug affecting port resume

2013-02-07 Thread Greg Kroah-Hartman
This bug hasn't surfaced before now because we never used to try to suspend the root hub in the middle of a port resume (except by coincidence). Signed-off-by: Alan Stern Reported-and-tested-by: Norbert Preining Tested-by: Ming Lei Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/

[ 16/26] USB: qcserial: add Telit Gobi QDL device

2013-02-07 Thread Greg Kroah-Hartman
3.4-stable review patch. If anyone has any objections, please let me know. -- From: Daniele Palmas commit 78796ae17eacedcdcaaeb03ba73d2e532a4c8f83 upstream. Add VID and PID for Telit Gobi QDL device Signed-off-by: Daniele Palmas Signed-off-by: Greg Kroah-Hartman

[ 04/26] drm/radeon: add quirk for RV100 board

2013-02-07 Thread Greg Kroah-Hartman
=60037 Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/radeon_combios.c |8 1 file changed, 8 insertions(+) --- a/drivers/gpu/drm/radeon/radeon_combios.c +++ b/drivers/gpu/drm/radeon/radeon_combios.c @@ -2338,6 +2338,14 @@ bool

[ 15/26] USB: option: add Changhong CH690

2013-02-07 Thread Greg Kroah-Hartman
) Sub=ff Prot=ff If#= 2 Alt= 0 #EPs= 2 Cls=ff(vend) Sub=ff Prot=ff If#= 3 Alt= 0 #EPs= 2 Cls=08(stor) Sub=06 Prot=50 Signed-off-by: Bjørn Mork Signed-off-by: Greg Kroah-Hartman --- drivers/usb/serial/option.c |5 + 1 file changed, 5 insertions(+) --- a/drivers/usb/serial/option.c

[ 34/34] usb: Prevent dead ports when xhci is not enabled

2013-02-07 Thread Greg Kroah-Hartman
switching." Signed-off-by: David Moore Signed-off-by: Sarah Sharp Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/pci-quirks.c |1 + 1 file changed, 1 insertion(+) --- a/drivers/usb/host/pci-quirks.c +++ b/drivers/usb/host/pci-quirks.c @@ -780,6 +780,7 @@ void usb_enable_xh

[ 29/34] USB: storage: optimize to match the Huawei USB storage devices and support new switch command

2013-02-07 Thread Greg Kroah-Hartman
modem interface with Huawei devices. 2. Add to support new switch command for new Huawei USB dongles. Signed-off-by: fangxiaozhi Signed-off-by: Greg Kroah-Hartman --- drivers/usb/storage/initializers.c | 76 drivers/usb/storage/initializers.h |4 drivers/usb/storage

[ 03/26] drm/radeon: add WAIT_UNTIL to the non-VM safe regs list for cayman/TN

2013-02-07 Thread Greg Kroah-Hartman
3.4-stable review patch. If anyone has any objections, please let me know. -- From: Alex Deucher commit 674a16f2b4724880d07389abbb95abf320b924aa upstream. Newer versions of mesa emit this. Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm

[ 08/26] x86-64: Replace left over sti/cli in ia32 audit exit code

2013-02-07 Thread Greg Kroah-Hartman
Vrabel Cc: Konrad Rzeszutek Wilk Link: http://lkml.kernel.org/r/5108e0190278000ba...@nat28.tlf.novell.com Signed-off-by: Ingo Molnar Cc: Konrad Rzeszutek Wilk Cc: David Vrabel Tested-by: Peter Moody Signed-off-by: Greg Kroah-Hartman --- arch/x86/ia32/ia32entry.S |4 ++-- 1 file

[ 07/26] drm/radeon: Calling object_unrefer() when creating fb failure

2013-02-07 Thread Greg Kroah-Hartman
object_reference(). Signed-off-by: liu chuansheng Signed-off-by: xueminsu Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/radeon_display.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/drivers/gpu/drm/radeon/radeon_display.c +++ b/drivers/gpu

[ 06/26] drm/radeon: prevent crash in the ring space allocation

2013-02-07 Thread Greg Kroah-Hartman
have patches to use IBs for the next kernel. Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/radeon_ring.c |3 +++ 1 file changed, 3 insertions(+) --- a/drivers/gpu/drm/radeon/radeon_ring.c +++ b/drivers/gpu/drm/radeon/radeon_ring.c @@ -311,6 +311,9 @

[ 05/26] drm/radeon: fix MC blackout on evergreen+

2013-02-07 Thread Greg Kroah-Hartman
. Seems we miss the update in certain conditions. Also handle the DCE6 case. Signed-off-by: Christopher Staite Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/evergreen.c |8 1 file changed, 8 insertions(+) --- a/drivers/gpu/drm/radeon

[ 02/26] drm/radeon/evergreen+: wait for the MC to settle after MC blackout

2013-02-07 Thread Greg Kroah-Hartman
://bugs.freedesktop.org/show_bug.cgi?id=56139 https://bugs.freedesktop.org/show_bug.cgi?id=57567 Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/evergreen.c |2 ++ 1 file changed, 2 insertions(+) --- a/drivers/gpu/drm/radeon/evergreen.c +++ b/drivers/gpu

[ 21/34] USB: option: add Changhong CH690

2013-02-07 Thread Greg Kroah-Hartman
) Sub=ff Prot=ff If#= 2 Alt= 0 #EPs= 2 Cls=ff(vend) Sub=ff Prot=ff If#= 3 Alt= 0 #EPs= 2 Cls=08(stor) Sub=06 Prot=50 Signed-off-by: Bjørn Mork Signed-off-by: Greg Kroah-Hartman --- drivers/usb/serial/option.c |5 + 1 file changed, 5 insertions(+) --- a/drivers/usb/serial/option.c

[ 20/34] USB: option: add support for Telit LE920

2013-02-07 Thread Greg Kroah-Hartman
3.7-stable review patch. If anyone has any objections, please let me know. -- From: Daniele Palmas commit 03eb466f276ceef9dcf023dc5474db02af68aad9 upstream. Add PID and special handling for Telit LE920 Signed-off-by: Daniele Palmas Signed-off-by: Greg Kroah-Hartman

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