Proposal: I2C device power (Was: hwmon: (lm90) Add power control)

2013-08-08 Thread Alexander Shiyan
Hi all. Instead of adding the support of regulators in each device, let's think about whether it is possible to create a global regulator for any device on the I2C bus. I see it like this: We add an extra field in the i2c_board_info structure "power_name" and handle it in the

[PATCH] hwrng: pixocel - Staticize 'rng_dev'

2013-08-08 Thread Jingoo Han
'rng_dev' is used only in this file. Fix the following sparse warning: drivers/char/hw_random/picoxcell-rng.c:36:15: warning: symbol 'rng_dev' was not declared. Should it be static? Signed-off-by: Jingoo Han --- drivers/char/hw_random/picoxcell-rng.c |2 +- 1 file changed, 1 insertion(+),

Re: [PATCH] ACPI, cpu hotplug: move try_offline_node() after acpi_unmap_lsapic()

2013-08-08 Thread Yasuaki Ishimatsu
(2013/08/09 11:43), Gu Zheng wrote: > Hi Ishimatsu-san, > On 08/06/2013 06:11 PM, Yasuaki Ishimatsu wrote: > >> try_offline_node() checks that all cpus related with removed node have been >> removed by using cpu_present_bits. If all cpus related with removed node have >> been removed,

Re: [PATCH] mm/hotplug: Verify hotplug memory range

2013-08-08 Thread Tang Chen
On 08/09/2013 12:47 AM, Toshi Kani wrote: add_memory() and remove_memory() can only handle a memory range aligned with section. There are problems when an unaligned range is added and then deleted as follows: - add_memory() with an unaligned range succeeds, but __add_pages() called from

Re: [PATCH 01/17] perf util: Save pid-cmdline mapping into tracing header

2013-08-08 Thread Namhyung Kim
Hi David, On Wed, 07 Aug 2013 09:44:24 -0400, David Ahern wrote: > On 8/5/13 3:17 AM, Namhyung Kim wrote: >>> I don't think this is a problem, its in line with Ingo's suggestion of a >>> new perf ioctl to ask the kernel to generate PERF_RECORD_MMAP events for >>> existing threads. >> >> Hmm..

Re: [PATCH v1 04/14] clk: Add set_rate_and_parent() op

2013-08-08 Thread Mike Turquette
Quoting Stephen Boyd (2013-07-25 09:45:42) > On 07/25, Tomasz Figa wrote: > > On Wednesday 24 of July 2013 17:43:32 Stephen Boyd wrote: > > > Some of Qualcomm's clocks can change their parent and rate at the > > > same time with a single register write. Add support for this > > > hardware to the

[PATCH 5/9] mbind: add hugepage migration code to mbind()

2013-08-08 Thread Naoya Horiguchi
This patch extends do_mbind() to handle vma with VM_HUGETLB set. We will be able to migrate hugepage with mbind(2) after applying the enablement patch which comes later in this series. ChangeLog v3: - revert introducing migrate_movable_pages - added alloc_huge_page_noerr free from ERR_VALUE

[PATCH 8/9] migrate: check movability of hugepage in unmap_and_move_huge_page()

2013-08-08 Thread Naoya Horiguchi
Currently hugepage migration works well only for pmd-based hugepages (mainly due to lack of testing,) so we had better not enable migration of other levels of hugepages until we are ready for it. Some users of hugepage migration (mbind, move_pages, and migrate_pages) do page table walk and check

[PATCH 3/9] migrate: add hugepage migration code to migrate_pages()

2013-08-08 Thread Naoya Horiguchi
This patch extends check_range() to handle vma with VM_HUGETLB set. We will be able to migrate hugepage with migrate_pages(2) after applying the enablement patch which comes later in this series. Note that for larger hugepages (covered by pud entries, 1GB for x86_64 for example), we simply skip

[PATCH 6/9] migrate: remove VM_HUGETLB from vma flag check in vma_migratable()

2013-08-08 Thread Naoya Horiguchi
This patch enables hugepage migration from migrate_pages(2), move_pages(2), and mbind(2). Signed-off-by: Naoya Horiguchi Acked-by: Hillf Danton Acked-by: Andi Kleen Reviewed-by: Wanpeng Li --- include/linux/mempolicy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 2/9] soft-offline: use migrate_pages() instead of migrate_huge_page()

2013-08-08 Thread Naoya Horiguchi
Currently migrate_huge_page() takes a pointer to a hugepage to be migrated as an argument, instead of taking a pointer to the list of hugepages to be migrated. This behavior was introduced in commit 189ebff28 ("hugetlb: simplify migrate_huge_page()"), and was OK because until now hugepage

[PATCH 7/9] memory-hotplug: enable memory hotplug to handle hugepage

2013-08-08 Thread Naoya Horiguchi
Until now we can't offline memory blocks which contain hugepages because a hugepage is considered as an unmovable page. But now with this patch series, a hugepage has become movable, so by using hugepage migration we can offline such memory blocks. What's different from other users of hugepage

[PATCH 4/9] migrate: add hugepage migration code to move_pages()

2013-08-08 Thread Naoya Horiguchi
This patch extends move_pages() to handle vma with VM_HUGETLB set. We will be able to migrate hugepage with move_pages(2) after applying the enablement patch which comes later in this series. We avoid getting refcount on tail pages of hugepage, because unlike thp, hugepage is not split and we

[PATCH 1/9] migrate: make core migration code aware of hugepage

2013-08-08 Thread Naoya Horiguchi
Before enabling each user of page migration to support hugepage, this patch enables the list of pages for migration to link not only LRU pages, but also hugepages. As a result, putback_movable_pages() and migrate_pages() can handle both of LRU pages and hugepages. ChangeLog v5: - remove

[PATCH 9/9] prepare to remove /proc/sys/vm/hugepages_treat_as_movable

2013-08-08 Thread Naoya Horiguchi
Now we have extended hugepage migration and it's opened to many users of page migration, which is a good reason to consider hugepage as movable. So we can go to the direction to remove this parameter. In order to allow userspace to prepare for the removal, let's leave this sysctl handler as noop

[PATCH v5 0/9] extend hugepage migration

2013-08-08 Thread Naoya Horiguchi
Here is the 5th version of hugepage migration patchset. Changes in this version are as follows: - removed putback_active_hugepages() as a cleanup (1/9) - added code to check movability of a given hugepage (8/9) - set GFP MOVABLE flag depending on the movability of hugepage (9/9). I feel that

[PATCH 1/1] pagemap: fix buffer overflow in add_page_map()

2013-08-08 Thread yonghua zheng
Hi, Recently we met quite a lot of random kernel panic issues after enable CONFIG_PROC_PAGE_MONITOR in kernel, after debuggint sometime we found this has something to do with following bug in pagemap: In struc pagemapread: struct pagemapread { int pos, len; pagemap_entry_t *buffer;

[git pull] drm fixes

2013-08-08 Thread Dave Airlie
Hi Linus mostly radeon, more fixes for dynamic power management which is is off by default for this release anyways, but there are a large number of testers, so I'd like to keep merging the fixes, otherwise, radeon UVD fixes affecting suspend/resume regressions, i915 regression fixes, one

Re: [PATCH v6 0/5] clk: implement remuxing during set_rate

2013-08-08 Thread Mike Turquette
Quoting James Hogan (2013-07-29 04:24:57) > This patchset adds support for automatic selection of the best parent > for a clock mux, i.e. the one which can provide the closest clock rate > to that requested. It can be disabled by a new CLK_SET_RATE_NO_REPARENT > flag (which is set for all uses of

Re: [RFC PATCH 00/12] KVM: MMU: locklessly wirte-protect

2013-08-08 Thread Xiao Guangrong
On 08/09/2013 01:38 AM, Paolo Bonzini wrote: > Il 06/08/2013 15:16, Xiao Guangrong ha scritto: >> Hi Gleb, Paolo, Marcelo, Takuya, >> >> Any comments or further comments? :) > > It's not the easiest patch to review. I've looked at it (beyond the > small comments I have already posted), but it

Re: [ 008/102] ARM: make vectors page inaccessible from userspace

2013-08-08 Thread Greg Kroah-Hartman
On Fri, Aug 09, 2013 at 06:29:17AM +0200, Stefan Lippers-Hollmann wrote: > On Friday 09 August 2013, Greg Kroah-Hartman wrote: > > 3.10-stable review patch. If anyone has any objections, please let me know. > > > > -- > > > > From: Russell King > > > > commit

Re: [ 00/25] 3.4.57-stable review

2013-08-08 Thread Guenter Roeck
On 08/08/2013 06:41 PM, Greg Kroah-Hartman wrote: This is the start of the stable review cycle for the 3.4.57 release. There are 25 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know. Responses should be

Re: [ 008/102] ARM: make vectors page inaccessible from userspace

2013-08-08 Thread Stefan Lippers-Hollmann
On Friday 09 August 2013, Greg Kroah-Hartman wrote: > 3.10-stable review patch. If anyone has any objections, please let me know. > > -- > > From: Russell King > > commit a5463cd3435475386cbbe7b06e01292ac169d36f upstream. > > If kuser helpers are not provided by the kernel,

Re: [ 000/102] 3.10.6-stable review

2013-08-08 Thread Greg Kroah-Hartman
On Fri, Aug 09, 2013 at 06:13:02AM +0200, Stefan Lippers-Hollmann wrote: > Hi > > On Friday 09 August 2013, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 3.10.6 release. > […] > > The whole patch series can be found in one patch at: > >

Re: [PATCH V12 0/14] Paravirtualized ticket spinlocks

2013-08-08 Thread Raghavendra K T
On 08/09/2013 06:34 AM, H. Peter Anvin wrote: The kbuild test bot is reporting some pretty serious errors for this patchset. I think these are serious enough that the patchset will need to be respun. I am working on that. -- To unsubscribe from this list: send the line "unsubscribe

Re: [PATCH v9 03/16] iommu/exynos: fix page table maintenance

2013-08-08 Thread Cho KyongHo
On Thu, 08 Aug 2013 15:54:50 +0200, Tomasz Figa wrote: > On Thursday 08 of August 2013 18:37:43 Cho KyongHo wrote: > > This prevents allocating lv2 page table for the lv1 page table entry > ^ What this is this this about? :) > As you might indicate, 'this' means this patch :) > > that already

Re: [ 000/102] 3.10.6-stable review

2013-08-08 Thread Stefan Lippers-Hollmann
Hi On Friday 09 August 2013, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 3.10.6 release. […] > The whole patch series can be found in one patch at: > kernel.org/pub/linux/kernel/v3.0/stable-review/patch-3.10.6-rc1.gz […] There appears to be a problem

[PATCH 3/3] block: brd: Staticize 'rd_size'

2013-08-08 Thread Jingoo Han
'rd_size' is used only in this file. Fix the following sparse warning: drivers/block/brd.c:432:5: warning: symbol 'rd_size' was not declared. Should it be static? Signed-off-by: Jingoo Han --- drivers/block/brd.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [PATCH 35/35] cpufreq: tegra: use cpufreq_table_validate_and_show()

2013-08-08 Thread Viresh Kumar
On 8 August 2013 21:37, Viresh Kumar wrote: > Its useless and the correct routine isn't called at all :) .. I will add that > additional patch and send it to you and will get this change out of this > commit. The two commits look like this now attached too in case you want to test: commit

[PATCH 2/3] block: mg_disk: Staticize mg_times_out()

2013-08-08 Thread Jingoo Han
mg_times_out() is used only in this file. Fix the following sparse warning: drivers/block/mg_disk.c:639:6: warning: symbol 'mg_times_out' was not declared. Should it be static? Signed-off-by: Jingoo Han --- drivers/block/mg_disk.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH 1/3] block: rbd: use NULL instead of 0

2013-08-08 Thread Jingoo Han
The local variables such as 'bio_list', and 'pages' are pointers; thus, use NULL instead of 0 to fix the following sparse warnings. drivers/block/rbd.c:2166:32: warning: Using plain integer as NULL pointer drivers/block/rbd.c:2168:31: warning: Using plain integer as NULL pointer Signed-off-by:

Re: [PATCH v9 01/16] iommu/exynos: do not include removed header

2013-08-08 Thread Cho KyongHo
On Thu, 08 Aug 2013 15:42:24 +0200, Tomasz Figa wrote: > Hi KyongHo, > > On Thursday 08 of August 2013 18:37:25 Cho KyongHo wrote: > > This commit remove which is removed. > > I would prefer a more meaningful commit message, something among following > lines: > > 8<--- > Commit 25e9d28d92

Re: [PATCH v9 02/16] iommu/exynos: add missing cache flush for removed page table entries

2013-08-08 Thread Cho KyongHo
On Thu, 08 Aug 2013 15:44:09 +0200, Tomasz Figa wrote: > On Thursday 08 of August 2013 18:37:34 Cho KyongHo wrote: > > This commit adds cache flush for removed small and large page entries > > in exynos_iommu_unmap(). Missing cache flush of removed page table > > entries can cause missing page

Re: [ 00/22] 3.0.90-stable review

2013-08-08 Thread Greg Kroah-Hartman
On Thu, Aug 08, 2013 at 08:42:12PM -0700, Guenter Roeck wrote: > On 08/08/2013 06:41 PM, Greg Kroah-Hartman wrote: > >This is the start of the stable review cycle for the 3.0.90 release. > >There are 22 patches in this series, all will be posted as a response > >to this one. If anyone has any

Re: [PATCH v6 00/10] mtd: add datasheet's ECC information to nand_chip{}

2013-08-08 Thread Artem Bityutskiy
On Thu, 2013-08-08 at 16:06 -0700, Brian Norris wrote: > On Thu, Aug 08, 2013 at 04:33:35PM +0800, Huang Shijie wrote: > > Hi Artem & Brian: > > >Hi Huang and others, > > > > > >On Thu, May 16, 2013 at 8:17 PM, Huang Shijie wrote: > > >>1.) Why add the ECC information to the nand_chip{} ? > ... >

Re: [ 00/22] 3.0.90-stable review

2013-08-08 Thread Guenter Roeck
On 08/08/2013 06:41 PM, Greg Kroah-Hartman wrote: This is the start of the stable review cycle for the 3.0.90 release. There are 22 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know. Responses should be

Re: [PATCH]arch:avr32:kernel:time.c: Removed IRQF_DISABLED

2013-08-08 Thread Joe Perches
On Fri, 2013-08-09 at 08:49 +0530, Kumar Gaurav wrote: > Please ignore the below patch. I'll be resending this with 0 instead of > IRQF_TRIGGER_NONE Hey again Kumar. This is one of those patches that should just have IRQF_DISABLED completely elided. > On Friday 09 August 2013 08:47 AM, Kumar

Re: [PATCH 1/6] clk: Tegra: Add CPU0 clock driver

2013-08-08 Thread Viresh Kumar
On 9 August 2013 00:20, Stephen Warren wrote: > I don't think so. I think it's reasonable to have a per-SoC cpufreq > driver whose primary content is the parameterization data and/or custom > hooks for a unified core cpufreq driver. The duplicate parts of each > cpufreq driver can be moved into

Re: [PATCH]arch:avr32:kernel:time.c: Removed IRQF_DISABLED

2013-08-08 Thread Kumar Gaurav
Please ignore the below patch. I'll be resending this with 0 instead of IRQF_TRIGGER_NONE On Friday 09 August 2013 08:47 AM, Kumar Gaurav wrote: Removed IRQF_DISABLED as it's no-op and should be removed Signed-off-by: Kumar Gaurav --- arch/avr32/kernel/time.c |2 +- 1 file changed, 1

[PATCH]arch:avr32:kernel:time.c: Removed IRQF_DISABLED

2013-08-08 Thread Kumar Gaurav
Removed IRQF_DISABLED as it's no-op and should be removed Signed-off-by: Kumar Gaurav --- arch/avr32/kernel/time.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/avr32/kernel/time.c b/arch/avr32/kernel/time.c index 869a1c6..0566c81 100644 ---

RE: dw_mmc: Does anyone use multiple slots?

2013-08-08 Thread Seungwon Jeon
On Fri, August 09, 2013, Chris Ball wrote: > On Fri, Aug 09 2013, Olof Johansson wrote: > > On Thu, Aug 8, 2013 at 5:16 PM, Doug Anderson wrote: > > > >> I guess my overall question is: if there are no actual implementations > >> of multislot, shouldn't we kill it and simplify the code a whole

Re: [PATCH] perf tests: Fix compile failure on do_sort_something

2013-08-08 Thread David Ahern
On 8/8/13 1:58 AM, Adrian Hunter wrote: On 08/08/13 00:59, David Ahern wrote: Commit b55ae0a9 added code-reading.c which fails to compile on Fedora 16 with compiler version: $ gcc --version gcc (GCC) 4.6.3 20120306 (Red Hat 4.6.3-2) Failure message is: tests/code-reading.c: In function

Re: [PATCH 2/2] ext4: improve mount/remount error handling

2013-08-08 Thread Theodore Ts'o
On Fri, Aug 02, 2013 at 02:03:47PM +0200, Piotr Sarna wrote: > Commit 5688978 ("ext4: improve handling of conflicting mount options") > introduced incorrect messages shown while choosing wrong mount options. > > Firstly, both cases of incorrect mount options, "data=journal,delalloc" > and

Re: [PATCH 1/3 v5] usb: phy-samsung-usb: Simplify PMU register handling

2013-08-08 Thread Julius Werner
> Sorry, I don't understand what is not implemented. Without your patch, the > PHY driver handles both PMU registers of Exynos4. I don't have an Exynos4 to actually test this, so please let me know if I'm missing something here... but in order to hit the right HOST PHY register in the current

Re: [PATCH 08/19] perf symbol: Save vmlinux or kallsyms path loaded

2013-08-08 Thread David Ahern
On 8/8/13 11:08 AM, Arnaldo Carvalho de Melo wrote: Em Wed, Aug 07, 2013 at 10:50:50PM -0400, David Ahern escreveu: Save vmlinux or kallsyms path loaded using embedded default lookup (ie., not a user specified path). Upcoming perf sched timehist command requires kernel symbols for properly

Re: [PATCH 07/19] perf top: Use new idle_sym check

2013-08-08 Thread David Ahern
On 8/8/13 11:06 AM, Arnaldo Carvalho de Melo wrote: Em Wed, Aug 07, 2013 at 10:50:49PM -0400, David Ahern escreveu: Avoids strcmp processing each sample. How so? This is done just when loading a DSO, when then each symbol is checked against this list. hmmm see that now, yes. The

Re: [PATCH] ACPI, cpu hotplug: move try_offline_node() after acpi_unmap_lsapic()

2013-08-08 Thread Gu Zheng
Hi Ishimatsu-san, On 08/06/2013 06:11 PM, Yasuaki Ishimatsu wrote: > try_offline_node() checks that all cpus related with removed node have been > removed by using cpu_present_bits. If all cpus related with removed node have > been removed, try_offline_node() clears the node information. > > But

RE: [RFC PATCH v2 3/7] dmaengine: enhance dmaengine to support DMA device hotplug

2013-08-08 Thread Wang, Rui Y
> -Original Message- > From: Jon Mason [mailto:jdma...@kudzu.us] > Sent: Friday, August 09, 2013 8:04 AM > To: Wang, Rui Y > Cc: liu...@gmail.com; Sosnowski, Maciej; Koul, Vinod; > chenkep...@huawei.com; linux-kernel@vger.kernel.org; > linux-...@vger.kernel.org; Luck, Tony; Guo, Chaohong;

Re: [PATCH v8 06/12] ARM: dts: Add description of System MMU of Exynos SoCs

2013-08-08 Thread Cho KyongHo
On Thu, 08 Aug 2013 22:43:43 +0100, Will Deacon wrote: > On Thu, Aug 08, 2013 at 10:38:10PM +0100, Tomasz Figa wrote: > > On Thursday 08 of August 2013 08:09:49 Rob Herring wrote: > > > On Thu, Aug 1, 2013 at 8:05 AM, Cho KyongHo > > wrote: > > > > Should this align with ARM System MMU bindings?

[ 003/102] ARM: move vector stubs

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Russell King commit 19accfd373847ac3d10623c5d20f948846299741 upstream. Move the machine vector stubs into the page above the vector page, which we can prevent from being visible to userspace.

[ 002/102] ARM: poison memory between kuser helpers

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Russell King commit 5b43e7a383d69381ffe53423e46dd0fafae07da3 upstream. Poison the memory between each kuser helper. This ensures that any branch between the kuser helpers will be

[ 000/102] 3.10.6-stable review

2013-08-08 Thread Greg Kroah-Hartman
This is the start of the stable review cycle for the 3.10.6 release. There are 102 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know. Responses should be made by Sun Aug 11 01:46:31 UTC 2013. Anything

[ 011/102] powerpc/windfarm: Fix noisy slots-fan on Xserve (rm31)

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Aaro Koskinen commit fe956a1d4081ce1a959f87df397a15e252201f10 upstream. slots-fan on G5 Xserve is always running at full speed with windfarm_rm31 driver, resulting in a very high acoustic

[ 007/102] ARM: move signal handlers into a vdso-like page

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Russell King commit 48be69a026b2c17350a5ef18a1959a919f60be7d upstream. Move the signal handlers into a VDSO page rather than keeping them in the vectors page. This allows us to place them

[ 004/102] ARM: use linker magic for vectors and vector stubs

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Russell King commit b9b32bf70f2fb710b07c94e13afbc729afe221da upstream. Use linker magic to create the vectors and vector stubs: we can tell the linker to place them at an appropriate VMA, but

[ 006/102] ARM: allow kuser helpers to be removed from the vector page

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Russell King commit f6f91b0d9fd971c630cef908dde8fe8795aefbf8 upstream. Provide a kernel configuration option to allow the kernel user helpers to be removed from the vector page, thereby

[ 013/102] ARM: 7790/1: Fix deferred mm switch on VIVT processors

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Catalin Marinas commit bdae73cd374e28db544fdd9b77de689a36e3c129 upstream. As of commit b9d4d42ad9 (ARM: Remove __ARCH_WANT_INTERRUPTS_ON_CTXSW on pre-ARMv6 CPUs), the mm switching on VIVT

[ 014/102] ARM: 7791/1: a.out: remove partial a.out support

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Will Deacon commit acfdd4b1f7590d02e9bae3b73bdbbc4a31b05d38 upstream. a.out support on ARM requires that argc, argv and envp are passed in r0-r2 respectively, which requires hacking

[ 015/102] powerpc: VPHN topology change updates all siblings

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Robert Jennings commit 3be7db6ab45b21345386d1a466da133b19cde5e4 upstream. When an associativity level change is found for one thread, the siblings threads need to be updated as well. This is

[ 016/102] parisc: agp/parisc-agp: allow binding of user memory to the AGP GART

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Alex Ivanov commit 06f0cce43a32bd2357cea1d8733bba48693d556b upstream. Allow binding of user memory to the AGP GART on systems with HP Quicksilver AGP bus. This resolves 'bind memory failed'

[ 010/102] ARM: fix nommu builds with 48be69a02 (ARM: move signal handlers into a vdso-like page)

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Russell King commit 8c0cc8a5d90bc7373a7a9e7f7a40eb41f51e03fc upstream. Olof reports that noMMU builds error out with: arch/arm/kernel/signal.c: In function 'setup_return':

[ 018/102] parisc: Fix interrupt routing for C8000 serial ports

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Thomas Bogendoerfer commit dd5e6d6a3db09b16b7c222943977865eead88cc3 upstream. We can't use dev->mod_index for selecting the interrupt routing entry, because it's not an index into interrupt

[ 019/102] hwmon: (max6697) fix MAX6581 ideality

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Vivien Didelot commit 5c52add19733eb36d8619713312f5604efef3502 upstream. Without this patch, the values for ideality (register 0x4b) and ideality selection mask (register 0x4c) are inverted.

[ 009/102] ARM: fix a cockup in 48be69a02 (ARM: move signal handlers into a vdso-like page)

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Russell King commit e0d407564b532d978b03ceccebd224a05d02f111 upstream. Unfortunately, I never committed the fix to a nasty oops which can occur as a result of that commit: [ cut

[ 023/102] serial: arc_uart: Fix module alias

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Axel Lin commit d5a12ea7a9e58d9e5c19d25cb668aadb396423ec upstream. Platform drivers use "platform:" prefix in module alias. Also use DRIVER_NAME in MODULE_ALIAS to make module autoloading

[ 012/102] ARM: 7784/1: mm: ensure SMP alternates assemble to exactly 4 bytes with Thumb-2

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Will Deacon commit bf3f0f332f76a85ff3a0b393aaded5a8533769c0 upstream. Commit ae8a8b9553bd ("ARM: 7691/1: mm: kill unused TLB_CAN_READ_FROM_L1_CACHE and use ALT_SMP instead") added early

[ 021/102] ALSA: compress: fix the return value for SNDRV_COMPRESS_VERSION

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Vinod Koul commit a8d30608eaed6cc759b8e2e8a842591f797f upstream. the return value of SNDRV_COMPRESS_VERSION always return default -ENOTTY as the return value was never updated for this

[ 020/102] ALSA: hda - Fix missing fixup for Mac Mini with STAC9221

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai commit 697aebab78a88c6b164cfb74d19b86817d2ccd82 upstream. A fixup for Apple Mac Mini was lost during the adaption to the generic parser because the fallback for the generic ID

[ 017/102] parisc: Fix cache routines to ignore vmas with an invalid pfn

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: John David Anglin commit 50861f5a02dbf939c27d35a26c472885e2844188 upstream. The parisc architecture does not have a pte special bit. As a result, special mappings are handled with the

[ 028/102] USB: mos7840: fix race in led handling

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Johan Hovold commit 05cf0dec5ccc696a7636c84b265b477173498156 upstream. Fix race in LED handling introduced by commit 0eafe4de ("USB: serial: mos7840: add support for MCS7810 devices") which

[ 027/102] USB: mos7840: fix device-type detection

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Johan Hovold commit 40c24f2893ba0ba7df485871f6aac0c197ceef5b upstream. Fix race in device-type detection introduced by commit 0eafe4de ("USB: serial: mos7840: add support for MCS7810

[ 024/102] serial/mxs-auart: increase time to wait for transmitter to become idle

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Uwe Kleine-König commit 079a036f4283e2b0e5c26080b8c5112bc0cc1831 upstream. Without this patch the driver waits ~1 ms for the UART to become idle. At 115200n8 this time is (theoretically)

[ 025/102] dma: pl330: Fix cyclic transfers

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Lars-Peter Clausen commit fc51446021f42aca8906e701fc2292965aafcb15 upstream. Allocate a descriptor for each period of a cyclic transfer, not just the first. Also since the callback needs to

[ 032/102] iwlwifi: mvm: refuse connection to APs with BI < 16

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Johannes Berg commit 48bc13072109ea58465542aa1ee31b4e1065468a upstream. Due to a firmware bug, it crashes when the beacon interval is smaller than 16. Avoid this by refusing the station state

[ 033/102] iwlwifi: add DELL SKU for 5150 HMC

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Emmanuel Grumbach commit a1923f1d4723e5757cefdd60f7c7ab30e472007a upstream. This SKU was missing in the list of supported devices https://bugzilla.kernel.org/show_bug.cgi?id=60577

[ 026/102] USB: mos7840: fix race in register handling

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Johan Hovold commit d8a083cc746664916d9d36ed9e4d08a29525f245 upstream. Fix race in mos7840_get_reg which unconditionally manipulated the control urb (which may already be in use) by adding a

[ 036/102] ath9k_htc: reboot firmware if it was loaded

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Oleksij Rempel commit 4928bd2ef8ece262f4f31463021a91eaa440 upstream. Currently ath9k_htc will reboot firmware only if interface was ever started. Which lead to the problem in case where

[ 029/102] USB: mos7840: fix pointer casts

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Johan Hovold commit 683a0e4d7971c3186dc4d429027debfe309129aa upstream. Silence compiler warnings on 64-bit systems introduced by commit 05cf0dec ("USB: mos7840: fix race in led handling")

[ 031/102] iwlwifi: mvm: fix bug in scan ssid

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: David Spinadel commit fe04e83706037802c502ea41c0d1799ec35fc0d7 upstream. Increment index in each iteration. Without this increment we are overriding the added SSIDs and we will send only the

[ 038/102] mac80211/minstrel: fix NULL pointer dereference issue

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Felix Fietkau commit 5c9fc93bc9bc417418fc1b6366833ae6a07b804d upstream. When priv_sta == NULL, mi->prev_sample is dereferenced too early. Move the assignment further down, after the

[ 037/102] nl80211: fix mgmt tx status and testmode reporting for netns

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Michal Kazior commit a0ec570f4f69c4cb700d743a915096c2c8f56a99 upstream. These two events were sent to the default network namespace. This caused AP mode in a non-default netns to not work

[ 035/102] ath9k_htc: do some initial hardware configuration

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Oleksij Rempel commit dc2a87f519a4d8cb376ab54f22b6b98a943b51ce upstream. Currently we configure harwdare and clock, only after interface start. In this case, if we reload module or reboot PC

[ 043/102] ixgbe: Fix Tx Hang issue with lldpad on 82598EB

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Jacob Keller commit 1eb9ac14c34a948bf1538bfb9034e8ab29099a64 upstream. This patch fixes an issue with the 82598EB device, where lldpad is causing Tx Hangs on the card as soon as it attempts

[ 040/102] mac80211: fix duplicate retransmission detection

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Johannes Berg commit 6b0f32745dcfba01d7be33acd1b40306c7a914c6 upstream. The duplicate retransmission detection code in mac80211 erroneously attempts to do the check for every frame, even

[ 030/102] iwlwifi: mvm: fix L2P BA ressources leak

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Emmanuel Grumbach commit 93a426673fbfeae7fa6b27008828e2ac4c08dbee upstream. We didn't release the Rx AMPDU ressources properly. This bug led to firmware assert after 16 BA sessions.

[ 041/102] mac80211: fix ethtool stats for non-station interfaces

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Johannes Berg commit e13bae4f807401729b3f27c7e882a96b8b292809 upstream. As reported in https://bugzilla.kernel.org/show_bug.cgi?id=60514, the station loop never initialises 'sinfo' and

[ 034/102] iwlwifi: mvm: fix flushing not started aggregation sessions

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Johannes Berg commit b6658ff80c43bcf84be0bbe371c88af1452e7776 upstream. When a not fully started aggregation session is destroyed and flushed, we get a warning, e.g. WARNING: at

[ 045/102] Bluetooth: Fix invalid length check in l2cap_information_rsp()

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Jaganath Kanakkassery commit da9910ac4a816b4340944c78d94c02a35527db46 upstream. The length check is invalid since the length varies with type of info response. This was introduced by the

[ 042/102] mac80211: fix monitor interface suspend crash regression

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Stanislaw Gruszka commit cd34f647a78e7f2296fcb72392b9e5c832793e65 upstream. My commit: commit 12e7f517029dad819c45eca9ca01fdb9ba57616b Author: Stanislaw Gruszka Date: Thu Feb 28 10:55:26

[ 046/102] Bluetooth: ath3k: Add support for Fujitsu Lifebook UH5x2 [04c5:1330]

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Thomas Loo commit 84eb2ae1807dd1467bf6f500fc69ae61f1907b75 upstream. The Fujitsu Lifebook UH552/UH572 ships with a Qualcomm AR9462/AR3012 WLAN/BT-Combo card. Add device ID to the ath3k driver

[ 044/102] ath: wil6210: Fix build error

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Larry Finger commit 5d21608a592a9afcac8d82c6478a564e911ce70b upstream. Building driver wil6210 in 3.10 and 3.11 kernels yields the following errors: CC [M]

[ 051/102] Bluetooth: Add support for Mediatek Bluetooth device [0e8d:763f]

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: "Cho, Yu-Chen" commit 178c059e7640aa8e50213400c6f3dde00189d979 upstream. This patch adds support for Mediatek Bluetooth device T: Bus=02 Lev=01 Prnt=01 Port=03 Cnt=01 Dev#= 2 Spd=480

[ 055/102] svcrpc: fix kfree oops in gss-proxy code

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: "J. Bruce Fields" commit 743e217129f69aab074abe520a464fd0c6b1cca1 upstream. mech_oid.data is an array, not kmalloc()'d memory. Signed-off-by: J. Bruce Fields Signed-off-by: Greg

[ 056/102] rt2x00: fix stop queue

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Stanislaw Gruszka commit e2288b66fe7ff0288382b2af671b4da558b44472 upstream. Since we clear QUEUE_STARTED in rt2x00queue_stop_queue(), following call to rt2x00queue_pause_queue() reduce to

[ 052/102] Bluetooth: fix wrong use of PTR_ERR() in btusb

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Adam Lee commit d9c78e9738ccd0017b10b8f44462aafb61904a4a upstream. PTR_ERR() returns a signed long type value which is limited by IS_ERR(), it must be a negative number whose range is

[ 054/102] svcrpc: fix gss_rpc_upcall create error

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: "J. Bruce Fields" commit 9f96392b0ae6aefc02a9b900c3f4889dfafc8402 upstream. Signed-off-by: J. Bruce Fields Signed-off-by: Greg Kroah-Hartman --- net/sunrpc/auth_gss/gss_rpc_upcall.c |

[ 060/102] zram: avoid invalid memory access in zram_exit()

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Jiang Liu commit 6030ea9b35971a4200062f010341ab832e878ac9 upstream. Memory for zram->disk object may have already been freed after returning from destroy_device(zram), then it's unsafe for

[ 058/102] mwifiex: check for bss_role instead of bss_mode for STA operations

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Avinash Patil commit 953b3539ef9301b8ef73f4b6e2fd824b86aae65a upstream. This patch fixes an issue wherein association would fail on P2P interfaces. This happened because we are checking

[ 049/102] Bluetooth: Add support for Atheros [0cf3:3121]

2013-08-08 Thread Greg Kroah-Hartman
3.10-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

[ 050/102] Bluetooth: Add support for Atheros [0cf3:e003]

2013-08-08 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: AceLan Kao commit 1d5b569ef85d013a775560a90050dc630614c045 upstream. Add support for the AR9462 chip T: Bus=02 Lev=02 Prnt=02 Port=04 Cnt=01 Dev#= 4 Spd=12 MxCh= 0 D: Ver= 1.10

  1   2   3   4   5   6   7   8   9   10   >