Re: [PATCH] mtd gpmi-nand: Fix read page when reading to vmalloced area

2012-06-27 Thread Sascha Hauer
On Tue, Jun 26, 2012 at 05:26:16PM +0200, Sascha Hauer wrote: The gpmi-nand driver uses virt_addr_valid() to check whether a buffer is suitable for dma. If it's not, a driver allocated buffer is used instead. Then after a page read the driver allocated buffer must be copied to the user

[PATCH] mmc: sdhci: fix incorrect command used in tuning

2012-06-27 Thread Aaron Lu
For SD hosts using retuning mode 1, when retuning timer expired, it will need to do retuning in sdhci_request before processing the actual request. But the retuning command is fixed: cmd19 for SD card and cmd21 for eMMC card, so we can't use the original request's command to do the tuning. And

[PATCH v4 1/2] aio: make kiocb-private NUll in init_sync_kiocb()

2012-06-27 Thread Junxiao Bi
Ocfs2 uses kiocb.*private as a flag of unsigned long size. In commit a11f7e6 ocfs2: serialize unaligned aio, the unaligned io flag is involved in it to serialize the unaligned aio. As *private is not initialized in init_sync_kiocb() of do_sync_write(), this unaligned io flag may be unexpectly set

[PATCH v4 2/2] ocfs2: clear unaligned io flag when dio fails

2012-06-27 Thread Junxiao Bi
The unaligned io flag is set in the kiocb when an unaligned dio is issued, it should be cleared even when the dio fails, or it may affect the following io which are using the same kiocb. Signed-off-by: Junxiao Bi junxiao...@oracle.com Cc: stable@vger.kernel.org --- fs/ocfs2/file.c |4 +++- 1

[PATCH] can: flexcan: use be32_to_cpup to handle the value of dt entry

2012-06-27 Thread Marc Kleine-Budde
From: Hui Wang jason77.w...@gmail.com The freescale arm i.MX series platform can support this driver, and usually the arm cpu works in the little endian mode by default, while device tree entry value is stored in big endian format, we should use be32_to_cpup() to handle them, after modification,

[git:v4l-dvb/for_v3.6] [media] gspca-core: Fix buffers staying in queued state after a stream_off

2012-06-27 Thread Mauro Carvalho Chehab
This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/media_tree.git tree: Subject: [media] gspca-core: Fix buffers staying in queued state after a stream_off Author: Hans de Goede hdego...@redhat.com Date:Tue May 22

[PATCH] drm/radeon: disable any GPU activity after unrecovered lockup v2

2012-06-27 Thread j . glisse
From: Jerome Glisse jgli...@redhat.com After unrecovered GPU lockup avoid any GPU activities to avoid things like kernel segfault and alike to happen in any of the path that assume hw is working. The segfault is due to PCIE vram gart table being unmapped after suspend in the GPU reset path. To

[PATCH 3.4] mac80211: fix queues stuck issue with HT bandwidth change

2012-06-27 Thread Johannes Berg
From: Johannes Berg johannes.b...@intel.com No upstream commit, the buggy code was removed in 3.5. Rajkumar changed code for handling channel switching in mac80211 to stop the queues in commit 7cc44ed48d0ec0937c1f098642540b6c9ca38de5 Author: Rajkumar Manoharan rmano...@qca.qualcomm.com

[PATCH] drm/radeon: disable any GPU activity after unrecovered lockup v3

2012-06-27 Thread j . glisse
From: Jerome Glisse jgli...@redhat.com After unrecovered GPU lockup avoid any GPU activities to avoid things like kernel segfault and alike to happen in any of the path that assume hw is working. The segfault is due to PCIE vram gart table being unmapped after suspend in the GPU reset path. To

[PATCH] drm/radeon: disable any GPU activity after unrecovered lockup v4

2012-06-27 Thread j . glisse
From: Jerome Glisse jgli...@redhat.com After unrecovered GPU lockup avoid any GPU activities to avoid things like kernel segfault and alike to happen in any of the path that assume hw is working. The segfault is due to PCIE vram gart table being unmapped after suspend in the GPU reset path. To

[PATCH] drm/radeon: disable any GPU activity after unrecovered lockup v5

2012-06-27 Thread j . glisse
From: Jerome Glisse jgli...@redhat.com After unrecovered GPU lockup avoid any GPU activities to avoid things like kernel segfault and alike to happen in any of the path that assume hw is working. The segfault is due to PCIE vram gart table being unmapped after suspend in the GPU reset path. To

Re: [PATCH] ARM: Orion: Fix Virtual/Physical mixup with watchdog

2012-06-27 Thread Jason Cooper
On Mon, Jun 18, 2012 at 04:15:06PM +0200, Andrew Lunn wrote: The orion watchdog is expecting to be passed the physcial address of the hardware, and will ioremap() it to give a virtual address it will use as the base address for the hardware. However, when creating the platform resource record,

[PATCH][v3.2.y] samsung-laptop: make the dmi check less strict

2012-06-27 Thread Joseph Salisbury
Hello, Please consider including upstream commit 3be324a94df0c3f032178d04549dbfbf6cccb09a in the next v3.2.y release. It was included upstream as of v3.4-rc1. It has been tested and confirmed to resolve http://bugs.launchpad.net/bugs/1012284 . commit 3be324a94df0c3f032178d04549dbfbf6cccb09a

Re: [PATCH 3.4] mac80211: fix queues stuck issue with HT bandwidth change

2012-06-27 Thread Jonathan Nieder
Johannes Berg wrote: No upstream commit, the buggy code was removed in 3.5. What upstream commit removed the buggy code? -- To unsubscribe from this list: send the line unsubscribe stable in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH][v3.2.y] samsung-laptop: make the dmi check less strict

2012-06-27 Thread Jonathan Nieder
Hi, Joseph Salisbury wrote: Please consider including upstream commit 3be324a94df0c3f032178d04549dbfbf6cccb09a in the next v3.2.y release. It was included upstream as of v3.4-rc1. It has been tested and confirmed to resolve http://bugs.launchpad.net/bugs/1012284 . Should 3.0.y get this,

Re: [PATCH 3.4] mac80211: fix queues stuck issue with HT bandwidth change

2012-06-27 Thread Johannes Berg
On Wed, 2012-06-27 at 15:32 -0500, Jonathan Nieder wrote: Johannes Berg wrote: No upstream commit, the buggy code was removed in 3.5. What upstream commit removed the buggy code? Nothing git can't answer :-) 7213cf2cb0dfbb4d6b55a1da000d34338f76c0e3 But of course that just removed the

Re: [PATCH] mtd gpmi-nand: Fix read page when reading to vmalloced area

2012-06-27 Thread Subodh Nijsure
Tested this modification on MX28 hardware that I have access to. With this patch I can now create UBI file system on flash. Tested-by: snijs...@grid-net.com Thanks! -Subodh On 06/26/2012 08:26 AM, Sascha Hauer wrote: The gpmi-nand driver uses virt_addr_valid() to check whether a buffer is

Patch Upstream: drm/nouveau/fbcon: using nv_two_heads is not a good idea

2012-06-27 Thread Gregs git-bot
commit: 9bd0c15fcfb42f6245447c53347d65ad9e72080b From: Ben Skeggs bske...@redhat.com Date: Tue, 26 Jun 2012 12:12:30 +1000 Subject: drm/nouveau/fbcon: using nv_two_heads is not a good idea nv_two_heads() was never meant to be used outside of pre-nv50 code. The code checks for = NV_10 for 2

Patch Upstream: clk: Check parent for NULL in clk_change_rate

2012-06-27 Thread Gregs git-bot
commit: bf47b4fd8f9f81cd5ce40e1945c6334d088226d1 From: Pawel Moll pawel.m...@arm.com Date: Fri, 8 Jun 2012 14:04:06 +0100 Subject: clk: Check parent for NULL in clk_change_rate clk_change_rate() is accessing parent's rate without checking if the parent exists at all. In case of root clocks this

Patch Upstream: ALSA: hda - Fix memory leaks at module unload

2012-06-27 Thread Gregs git-bot
commit: 59cad16bc6deb85bd2a464da92bbaae289f0286f From: Takashi Iwai ti...@suse.de Date: Tue, 26 Jun 2012 15:00:20 +0200 Subject: ALSA: hda - Fix memory leaks at module unload Some caches aren't released properly at module unloading time. Cc: stable@vger.kernel.org [v3.4+] Signed-off-by: Takashi

Patch Upstream: USB: option: Add USB ID for Novatel Ovation MC551

2012-06-27 Thread Gregs git-bot
commit: 065b07e7a14676f4138ce4619d229c0be5a74230 From: Forest Bond forest.b...@rapidrollout.com Date: Fri, 22 Jun 2012 10:30:38 -0400 Subject: USB: option: Add USB ID for Novatel Ovation MC551 This device is also known as the Verizon USB551L. Signed-off-by: Forest Bond

Patch Upstream: USB: CP210x Add 10 Device IDs

2012-06-27 Thread Gregs git-bot
commit: 3fcc8f96829776cf181918461923d1e3bbb831a2 From: Craig Shelley cr...@microtron.org.uk Date: Tue, 26 Jun 2012 23:20:04 +0100 Subject: USB: CP210x Add 10 Device IDs This patch adds 10 device IDs for CP210x based devices from the following manufacturers: Timewave Clipsal Festo Link

Patch Upstream: clk: Allow late cache allocation for clk-parents

2012-06-27 Thread Gregs git-bot
commit: 7975059db572eb47f0fb272a62afeae272a4b209 From: Rajendra Nayak rna...@ti.com Date: Wed, 6 Jun 2012 14:41:31 +0530 Subject: clk: Allow late cache allocation for clk-parents Parent clocks for muxes are cached in clk-parents to avoid frequent lookups, however the cache allocation happens only

Patch Upstream: ALSA: hda - Add Realtek ALC280 codec support

2012-06-27 Thread Gregs git-bot
commit: befae82e2906cb7155020876a531b0b8c6c8d8c8 From: David Henningsson david.hennings...@canonical.com Date: Mon, 25 Jun 2012 19:49:28 +0200 Subject: ALSA: hda - Add Realtek ALC280 codec support This chip looks very similar to ALC269 and ALC27* variants. The bug reporter has verified that sound

Patch Upstream: usb-storage: revert commit afff07e61a52 (Add 090c:1000 to unusal-devs)

2012-06-27 Thread Gregs git-bot
commit: 0070513b5e005161a7a7fd9a3f48f982b41eb094 From: Alan Stern st...@rowland.harvard.edu Date: Wed, 20 Jun 2012 16:04:30 -0400 Subject: usb-storage: revert commit afff07e61a52 (Add 090c:1000 to unusal-devs) This patch (as1560) reverts commit afff07e61a5243e14ee3f0a272a0380cd744a8a3

Patch Upstream: SCSI usb-storage: add try_rc_10_first flag

2012-06-27 Thread Gregs git-bot
commit: 6a0bdffa0073857870a4ed1b4489762146359eb4 From: Alan Stern st...@rowland.harvard.edu Date: Wed, 20 Jun 2012 16:04:19 -0400 Subject: SCSI usb-storage: add try_rc_10_first flag Several bug reports have been received recently for USB mass-storage devices that don't handle READ CAPACITY(16)

Patch Upstream: USB: option: add id for Cellient MEN-200

2012-06-27 Thread Gregs git-bot
commit: 1e2c4e59d2b8797973471b4a287a43eac12a0f40 From: Dmitry Shmygov shmy...@rambler.ru Date: Wed, 20 Jun 2012 15:51:40 +0400 Subject: USB: option: add id for Cellient MEN-200 Add vendor and product ID to option.c driver for Cellient MEN-200 EVDO Rev.B 450MHz data module. http://cellient.com

[PATCH] ALSA: hda - Fix power-map regression for HP dv6 co

2012-06-27 Thread Takashi Iwai
commit 6e1c39c6b00d9141a82c231ba7c5e5b1716974b2 upstream. The recent fix for power-map controls (commit b0791dda813) caused regressions on some other HP laptops. They have fixed pins but these pins are exposed as jack-detectable. Thus the driver tries to control the power-map dynamically per