[PATCH] x86, ACPI: Increase override tables number limit

2013-08-15 Thread Yinghai Lu
Current acpi tables in initrd is limited to 10, that is too small. 64 should be good enough as we have 35 sigs and could have several SSDT. Two problems in current code prevent us from increasing limit: 1. that cpio file info array is put in stack, as every element is 32 bytes, could run out

Re: page fault scalability (ext3, ext4, xfs)

2013-08-15 Thread Dave Chinner
On Wed, Aug 14, 2013 at 09:32:13PM -0700, Andy Lutomirski wrote: On Wed, Aug 14, 2013 at 7:10 PM, Dave Chinner da...@fromorbit.com wrote: On Wed, Aug 14, 2013 at 09:11:01PM -0400, Theodore Ts'o wrote: On Wed, Aug 14, 2013 at 04:38:12PM -0700, Andy Lutomirski wrote: It would be better to

[PATCH v4 0/5] ARM: davinci: da850: add ethernet driver DT support

2013-08-15 Thread Lad, Prabhakar
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch set enables Ethernet support through device tree model. This patch set enables mii interface only and is being tested to boot via rootfs. The rmii phy is present on the i2c gpio expander chip (UI board) for which yet support needs to be

[PATCH v4 1/5] ARM: davinci: fix clock lookup for mdio device

2013-08-15 Thread Lad, Prabhakar
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch removes the clock alias for mdio device and adds a entry in clock lookup table, this entry can now be used by both DT and NON DT case. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- changes for v2: None Changes for v3:

[PATCH v4 5/5] ARM: davinci: da850: add OF_DEV_AUXDATA entry for eth0.

2013-08-15 Thread Lad, Prabhakar
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add OF_DEV_AUXDATA for eth0 driver in da850 board dt file to use emac clock. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- Changes for V2: none Changes for V3: none Changes for v4: none arch/arm/mach-davinci/da8xx-dt.c |3

[PATCH v4 2/5] ARM: davinci: da850: add DT node for mdio device

2013-08-15 Thread Lad, Prabhakar
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add mdio device tree node information to da850 by providing register details and bus frequency of mdio. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- Changes for v2: none Changes for v3: a Added pin entries for mdio.

[PATCH v4 3/5] ARM: davinci: da850: add OF_DEV_AUXDATA entry for mdio.

2013-08-15 Thread Lad, Prabhakar
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add OF_DEV_AUXDATA for mdio driver in da850 board dt file to use mdio clock. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- Changes for v2: none Changes for v3: none Changes for v4: none arch/arm/mach-davinci/da8xx-dt.c |1 +

[PATCH v4 4/5] ARM: davinci: da850: add DT node for eth0.

2013-08-15 Thread Lad, Prabhakar
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add eth0 device tree node information and pinmux for mii to da850 by providing interrupt details and local mac address of eth0. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- Changes for v2: None Changes for v3: a Split the

[PATCH] x86, mm: Add comments for step_size shift

2013-08-15 Thread Yinghai Lu
As request by hpa, add comments for why we choose 5 for step size shift. Signed-off-by: Yinghai Lu ying...@kernel.org Reviewed-by: Tang Chen tangc...@cn.fujitsu.com Tested-by: Tang Chen tangc...@cn.fujitsu.com --- arch/x86/mm/init.c | 21 ++--- 1 file changed, 18

Re: Linux 3.0.91

2013-08-15 Thread Greg KH
diff --git a/Makefile b/Makefile index 4789f7a..ab2f30a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 0 -SUBLEVEL = 90 +SUBLEVEL = 91 EXTRAVERSION = NAME = Sneaky Weasel diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c index

Linux 3.0.91

2013-08-15 Thread Greg KH
I'm announcing the release of the 3.0.91 kernel. All users of the 3.0 kernel series must upgrade. The updated 3.0.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.0.y and can be browsed at the normal kernel.org git web browser:

Linux 3.4.58

2013-08-15 Thread Greg KH
I'm announcing the release of the 3.4.58 kernel. All users of the 3.4 kernel series must upgrade. The updated 3.4.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.4.y and can be browsed at the normal kernel.org git web browser:

Linux 3.10.7

2013-08-15 Thread Greg KH
I'm announcing the release of the 3.10.7 kernel. All users of the 3.10 kernel series must upgrade. The updated 3.10.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.10.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 3.4.58

2013-08-15 Thread Greg KH
diff --git a/Makefile b/Makefile index 7f4df0c..b19d508 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 4 -SUBLEVEL = 57 +SUBLEVEL = 58 EXTRAVERSION = NAME = Saber-toothed Squirrel diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c index

Re: page fault scalability (ext3, ext4, xfs)

2013-08-15 Thread Andy Lutomirski
On Wed, Aug 14, 2013 at 11:01 PM, Dave Chinner da...@fromorbit.com wrote: On Wed, Aug 14, 2013 at 09:32:13PM -0700, Andy Lutomirski wrote: On Wed, Aug 14, 2013 at 7:10 PM, Dave Chinner da...@fromorbit.com wrote: On Wed, Aug 14, 2013 at 09:11:01PM -0400, Theodore Ts'o wrote: On Wed, Aug 14,

RE: [PATCH] block: add command line partition parser

2013-08-15 Thread Caizhiyong
-Original Message- From: Brian Norris [mailto:computersforpe...@gmail.com] Sent: Thursday, August 15, 2013 1:00 PM To: Caizhiyong Cc: Andrew Morton; Karel Zak; linux-...@lists.infradead.org; linux-kernel@vger.kernel.org; Wanglin (Albert); Artem Bityutskiy; Shmulik Ladkani; Huang

Re: page fault scalability (ext3, ext4, xfs)

2013-08-15 Thread David Lang
On Wed, 14 Aug 2013, Andy Lutomirski wrote: The big problem with this approach is that not doing the timestamp update on page faults is going to break the inode change version counting because for ext4, btrfs and XFS it takes a transaction to bump that counter. NFS needs to know the moment a

Re: [RFC PATCH 1/4] thermal: hwmon: move hwmon support to single file

2013-08-15 Thread Zhang Rui
Hi, Eduardo, thanks for the patch, just one minor comments. On 二, 2013-07-09 at 10:00 -0400, Eduardo Valentin wrote: diff --git a/drivers/thermal/thermal_hwmon.h b/drivers/thermal/thermal_hwmon.h new file mode 100644 index 000..c798fdb --- /dev/null +++ b/drivers/thermal/thermal_hwmon.h

Re: [PATCH v5 0/9] extend hugepage migration

2013-08-15 Thread Naoya Horiguchi
On Wed, Aug 14, 2013 at 04:40:52PM -0700, Andrew Morton wrote: On Fri, 9 Aug 2013 01:21:33 -0400 Naoya Horiguchi n-horigu...@ah.jp.nec.com wrote: Here is the 5th version of hugepage migration patchset. Changes in this version are as follows: - removed putback_active_hugepages() as a

Re: [PATCH 02/10] crypto: omap-aes: Add useful debug macros

2013-08-15 Thread Dmitry Kasatkin
On 15/08/13 06:12, Joel Fernandes wrote: On 08/14/2013 07:47 PM, Joe Perches wrote: On Wed, 2013-08-14 at 18:40 -0500, Joel Fernandes wrote: On 08/14/2013 06:29 PM, Joe Perches wrote: On Wed, 2013-08-14 at 18:12 -0500, Joel Fernandes wrote: When DEBUG is enabled, these macros can be used to

Re: page fault scalability (ext3, ext4, xfs)

2013-08-15 Thread Andy Lutomirski
On Wed, Aug 14, 2013 at 11:18 PM, David Lang da...@lang.hm wrote: On Wed, 14 Aug 2013, Andy Lutomirski wrote: The big problem with this approach is that not doing the timestamp update on page faults is going to break the inode change version counting because for ext4, btrfs and XFS it takes a

Re: [ 00/17] 3.4.58-stable review

2013-08-15 Thread Greg Kroah-Hartman
On Tue, Aug 13, 2013 at 01:19:36PM -0700, Guenter Roeck wrote: I copied the individual log files for the 3.4 build to http://roeck-us.net/linux/logs in case you want to browse through it. Here is a summary. mips/allmodconfig: drivers/net/ethernet/3com/3c59x.c: In function

Re: [ 00/17] 3.4.58-stable review

2013-08-15 Thread Greg Kroah-Hartman
On Tue, Aug 13, 2013 at 10:49:42PM +0200, Geert Uytterhoeven wrote: On Tue, Aug 13, 2013 at 10:19 PM, Guenter Roeck li...@roeck-us.net wrote: m68k/allmodconfig: drivers/hid/hid-microsoft.c: In function 'ms_report_fixup': drivers/hid/hid-microsoft.c:52:18: error: macro memcmp passed 6

Re: [ 00/17] 3.4.58-stable review

2013-08-15 Thread Greg Kroah-Hartman
On Wed, Aug 14, 2013 at 10:26:12AM +0200, Geert Uytterhoeven wrote: On Wed, Aug 14, 2013 at 12:36 AM, Guenter Roeck li...@roeck-us.net wrote: cris/...: In file included from include/linux/page-flags.h:8:0, from kernel/bounds.c:9: include/linux/types.h:25:1: error:

Re: [ 00/17] 3.4.58-stable review

2013-08-15 Thread Greg Kroah-Hartman
On Wed, Aug 14, 2013 at 03:14:11AM -0700, Guenter Roeck wrote: On 08/14/2013 01:26 AM, Geert Uytterhoeven wrote: On Wed, Aug 14, 2013 at 12:36 AM, Guenter Roeck li...@roeck-us.net wrote: cris/...: In file included from include/linux/page-flags.h:8:0, from

Re: [PATCH] mm: skip the page buddy block instead of one page

2013-08-15 Thread Xishi Qiu
On 2013/8/15 12:17, Minchan Kim wrote: Please read full thread in detail. Mel suggested following as if (PageBuddy(page)) { int nr_pages = (1 page_order(page)) - 1; if (PageBuddy(page)) { nr_pages = min(nr_pages, MAX_ORDER_NR_PAGES - 1);

Re: DoS with unprivileged mounts

2013-08-15 Thread Eric W. Biederman
Miklos Szeredi mik...@szeredi.hu writes: On Wed, Aug 14, 2013 at 9:32 PM, Eric W. Biederman ebied...@xmission.com wrote: The solution is also theoretically simple: mounts in unpriv namespaces are marked volatile and are dissolved on an unlink type operation. Such volatile mounts would be

Re: [GIT PULL] bcache fixes for 3.11

2013-08-15 Thread Stefan Priebe - Profihost AG
Am 15.08.2013 00:59, schrieb Kent Overstreet: Jens, here's the latest bcache fixes. Some urgent stuff in here: The following changes since commit 79826c35eb99cd3c0873b8396f45fa26c87fb0b0: bcache: Allocation kthread fixes (2013-07-12 00:22:49 -0700) are available in the git repository

Re: DoS with unprivileged mounts

2013-08-15 Thread Andy Lutomirski
On Wed, Aug 14, 2013 at 11:45 PM, Eric W. Biederman ebied...@xmission.com wrote: Miklos Szeredi mik...@szeredi.hu writes: On Wed, Aug 14, 2013 at 9:32 PM, Eric W. Biederman ebied...@xmission.com wrote: The solution is also theoretically simple: mounts in unpriv namespaces are marked

linux-next: Tree for Aug 15

2013-08-15 Thread Stephen Rothwell
Hi all, Changes since 20130814: The slab tree lost its build failure. The arm-soc tree gained a conflict against the arm tree. I have created today's linux-next tree at

Re: [PATCH] thermal: exynos_tmu: fix wrong error check for mapped memory

2013-08-15 Thread Zhang Rui
On 三, 2013-08-07 at 14:01 +0530, Naveen Krishna Chatradhi wrote: The error check is checking for a base mapped memory base instead of base_common. Fixing the same. Signed-off-by: Naveen Krishna Chatradhi ch.nav...@samsung.com applied. Thanks! BTW, can you rebase the other three exynos

Re: [PATCH 00/10] crypto: omap-aes: DMA and PIO mode improvements

2013-08-15 Thread Joel Fernandes
On 08/15/2013 12:58 AM, Dmitry Kasatkin wrote: On 15/08/13 02:30, Joel Fernandes wrote: On 08/14/2013 06:12 PM, Joel Fernandes wrote: This patch series is a rewrite of the DMA portion of omap-aes driver and also adds support for PIO mode. Both these modes, give better performance than before.

Re: [ 00/17] 3.4.58-stable review

2013-08-15 Thread Guenter Roeck
On 08/14/2013 11:36 PM, Greg Kroah-Hartman wrote: On Wed, Aug 14, 2013 at 03:14:11AM -0700, Guenter Roeck wrote: On 08/14/2013 01:26 AM, Geert Uytterhoeven wrote: On Wed, Aug 14, 2013 at 12:36 AM, Guenter Roeck li...@roeck-us.net wrote: cris/...: In file included from

Re: [GIT PULL] bcache fixes for 3.11

2013-08-15 Thread Kent Overstreet
On Thu, Aug 15, 2013 at 08:43:22AM +0200, Stefan Priebe - Profihost AG wrote: Am 15.08.2013 00:59, schrieb Kent Overstreet: Jens, here's the latest bcache fixes. Some urgent stuff in here: The following changes since commit 79826c35eb99cd3c0873b8396f45fa26c87fb0b0: bcache:

Re: [PATCH] block: add command line partition parser

2013-08-15 Thread Brian Norris
On Thu, Aug 15, 2013 at 06:16:04AM +, Caizhiyong wrote: -Original Message- From: Brian Norris [mailto:computersforpe...@gmail.com] Sent: Thursday, August 15, 2013 1:00 PM To: Caizhiyong Cc: Andrew Morton; Karel Zak; linux-...@lists.infradead.org;

Re: [PATCH 28/29] drivers/input/{keyboard,serio}: simplify use of devm_ioremap_resource

2013-08-15 Thread Dmitry Torokhov
On Wed, Aug 14, 2013 at 04:51:02PM +0530, Viresh Kumar wrote: On Wed, Aug 14, 2013 at 4:33 PM, Julia Lawall julia.law...@lip6.fr wrote: From: Julia Lawall julia.law...@lip6.fr Remove unneeded error handling on the result of a call to platform_get_resource when the value is passed to

Re: page fault scalability (ext3, ext4, xfs)

2013-08-15 Thread Dave Chinner
On Wed, Aug 14, 2013 at 11:14:37PM -0700, Andy Lutomirski wrote: On Wed, Aug 14, 2013 at 11:01 PM, Dave Chinner da...@fromorbit.com wrote: On Wed, Aug 14, 2013 at 09:32:13PM -0700, Andy Lutomirski wrote: On Wed, Aug 14, 2013 at 7:10 PM, Dave Chinner da...@fromorbit.com wrote: On Wed, Aug

Re: [PATCH 03/10] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO

2013-08-15 Thread Alexander Graf
On 01.08.2013, at 06:44, Alexey Kardashevskiy wrote: This is to reserve a capablity number for upcoming support of VFIO-IOMMU DMA operations in real mode. Signed-off-by: Alexey Kardashevskiy a...@ozlabs.ru --- Changes: 2013/07/16: * changed the number 2013/07/11: * changed order

Re: [PATCH] thermal: new asus driver

2013-08-15 Thread Zhang Rui
On 二, 2013-08-06 at 17:48 -0500, Felipe Contreras wrote: Simple driver to enable control of the fan in ASUS laptops. So far this has only been tested in ASUS Zenbook Prime UX31A, but according to some online reference [1], it should work in other models as well. I'd rather prefer to do this

Re: [PATCH 03/10] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO

2013-08-15 Thread Alexey Kardashevskiy
On 08/15/2013 05:16 PM, Alexander Graf wrote: On 01.08.2013, at 06:44, Alexey Kardashevskiy wrote: This is to reserve a capablity number for upcoming support of VFIO-IOMMU DMA operations in real mode. Signed-off-by: Alexey Kardashevskiy a...@ozlabs.ru --- Changes: 2013/07/16: *

Re: [PATCH] thermal: new asus driver

2013-08-15 Thread Zhang Rui
On 四, 2013-08-15 at 15:22 +0800, Zhang Rui wrote: On 二, 2013-08-06 at 17:48 -0500, Felipe Contreras wrote: Simple driver to enable control of the fan in ASUS laptops. So far this has only been tested in ASUS Zenbook Prime UX31A, but according to some online reference [1], it should work in

Re: [PATCH RFC v2] mmc: sdhci-msm: Add support for MSM chipsets

2013-08-15 Thread Ivan T. Ivanov
Hi Georgi, I have several comments below. On Tue, 2013-08-13 at 17:06 +0300, Georgi Djakov wrote: This platform driver adds the support of Secure Digital Host Controller Interface compliant controller in MSM chipsets. CC: Asutosh Das asuto...@codeaurora.org CC: Venkat Gopalakrishnan

Re: [PATCH 03/10] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO

2013-08-15 Thread Alexander Graf
On 15.08.2013, at 09:22, Alexey Kardashevskiy wrote: On 08/15/2013 05:16 PM, Alexander Graf wrote: On 01.08.2013, at 06:44, Alexey Kardashevskiy wrote: This is to reserve a capablity number for upcoming support of VFIO-IOMMU DMA operations in real mode. Signed-off-by: Alexey

Re: nouveau: temperature on nv40 is unavailable since ad40d73ef533ab0ad16b4a1ab2f7870c1f8ab954

2013-08-15 Thread Pali Rohár
On Thursday 15 August 2013 04:07:24 Martin Peres wrote: On 14/08/2013 05:02, Pali Rohár wrote: On Tuesday 13 August 2013 15:55:28 Martin Peres wrote: On 13/08/2013 09:53, Pali Rohár wrote: On utorok, 13. augusta 2013 15:32:45 CEST, Martin Peres wrote: On 13/08/2013 09:23, Pali Rohár

Re: [PATCH 03/10] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO

2013-08-15 Thread Alexander Graf
On 15.08.2013, at 09:24, Alexander Graf wrote: On 15.08.2013, at 09:22, Alexey Kardashevskiy wrote: On 08/15/2013 05:16 PM, Alexander Graf wrote: On 01.08.2013, at 06:44, Alexey Kardashevskiy wrote: This is to reserve a capablity number for upcoming support of VFIO-IOMMU DMA

Re: [PATCH v5 1/1] input: ideapad_slidebar: new input driver

2013-08-15 Thread Dmitry Torokhov
Hi Andrey, On Mon, Aug 12, 2013 at 02:23:23PM +0400, Andrey Moiseev wrote: v5: __initconst goes after var name ideapad_slidebar is a new driver which enables slidebars on some Lenovo IdeaPad laptops (the slidebars work with SlideNav/Desktop Navigator under Windows) Fixes this:

Re: [PATCH 02/10] crypto: omap-aes: Add useful debug macros

2013-08-15 Thread Joel Fernandes
On 08/15/2013 01:23 AM, Dmitry Kasatkin wrote: On 15/08/13 06:12, Joel Fernandes wrote: On 08/14/2013 07:47 PM, Joe Perches wrote: On Wed, 2013-08-14 at 18:40 -0500, Joel Fernandes wrote: On 08/14/2013 06:29 PM, Joe Perches wrote: On Wed, 2013-08-14 at 18:12 -0500, Joel Fernandes wrote: When

Re: [PATCH 03/10] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO

2013-08-15 Thread Alexey Kardashevskiy
On 08/15/2013 05:25 PM, Alexander Graf wrote: On 15.08.2013, at 09:24, Alexander Graf wrote: On 15.08.2013, at 09:22, Alexey Kardashevskiy wrote: On 08/15/2013 05:16 PM, Alexander Graf wrote: On 01.08.2013, at 06:44, Alexey Kardashevskiy wrote: This is to reserve a capablity number

Re: [ 00/17] 3.4.58-stable review

2013-08-15 Thread Guenter Roeck
On 08/14/2013 11:31 PM, Greg Kroah-Hartman wrote: On Tue, Aug 13, 2013 at 01:19:36PM -0700, Guenter Roeck wrote: I copied the individual log files for the 3.4 build to http://roeck-us.net/linux/logs in case you want to browse through it. Here is a summary. mips/allmodconfig:

Re: [PATCH 03/10] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO

2013-08-15 Thread Alexander Graf
On 15.08.2013, at 09:42, Alexey Kardashevskiy wrote: On 08/15/2013 05:25 PM, Alexander Graf wrote: On 15.08.2013, at 09:24, Alexander Graf wrote: On 15.08.2013, at 09:22, Alexey Kardashevskiy wrote: On 08/15/2013 05:16 PM, Alexander Graf wrote: On 01.08.2013, at 06:44, Alexey

Re: [PATCH] mm: skip the page buddy block instead of one page

2013-08-15 Thread Xishi Qiu
On 2013/8/15 12:24, Minchan Kim wrote: Please read full thread in detail. Mel suggested following as if (PageBuddy(page)) { int nr_pages = (1 page_order(page)) - 1; if (PageBuddy(page)) { nr_pages = min(nr_pages, MAX_ORDER_NR_PAGES - 1);

Re: page fault scalability (ext3, ext4, xfs)

2013-08-15 Thread Jan Kara
On Thu 15-08-13 17:11:42, Dave Chinner wrote: On Wed, Aug 14, 2013 at 11:14:37PM -0700, Andy Lutomirski wrote: On Wed, Aug 14, 2013 at 11:01 PM, Dave Chinner da...@fromorbit.com wrote: On Wed, Aug 14, 2013 at 09:32:13PM -0700, Andy Lutomirski wrote: On Wed, Aug 14, 2013 at 7:10 PM, Dave

RE: [PATCH] block: add command line partition parser

2013-08-15 Thread Caizhiyong
-Original Message- From: Brian Norris [mailto:computersforpe...@gmail.com] Sent: Thursday, August 15, 2013 3:10 PM To: Caizhiyong Cc: Andrew Morton; Karel Zak; linux-...@lists.infradead.org; linux-kernel@vger.kernel.org; Wanglin (Albert); Artem Bityutskiy; Shmulik Ladkani; Huang

Re: [PATCH] mm: memcontrol: fix handling of swapaccount parameter

2013-08-15 Thread Michal Hocko
[Let's CC Andrew] On Wed 14-08-13 23:22:23, Gergely Risko wrote: On Wed, 14 Aug 2013 20:49:56 +0200, Michal Hocko mho...@suse.cz writes: On Wed 14-08-13 20:36:04, Michal Hocko wrote: On Wed 14-08-13 15:21:35, Gergely Risko wrote: Fixed swap accounting option parsing to enable if called

[PATCH v8] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO

2013-08-15 Thread Alexey Kardashevskiy
This is to reserve a capablity number for upcoming support of VFIO-IOMMU DMA operations in real mode. The last ioctl in the group which KVM_CREATE_SPAPR_TCE_IOMMU is added to is 0xac, the next two numbers are taken - 0xad for KVM_KVMCLOCK_CTRL and 0xae for KVM_ARM_VCPU_INIT. So the

Re: [PATCH 3/4] printk: Defer printing to irq work when we printed too much

2013-08-15 Thread Jan Kara
On Wed 14-08-13 21:38:18, Steven Rostedt wrote: On Wed, 14 Aug 2013 15:28:27 +0200 Jan Kara j...@suse.cz wrote: A CPU can be caught in console_unlock() for a long time (tens of seconds are reported by our customers) when other CPUs are using printk heavily and serial console makes

Re: [GIT PULL 00/21] perf/core improvements and fixes

2013-08-15 Thread Ingo Molnar
* Arnaldo Carvalho de Melo a...@infradead.org wrote: From: Arnaldo Carvalho de Melo a...@ghostprotocols.net Hi Ingo, Please consider pulling, Flushing it out now before processing another batch. - Arnaldo The following changes since commit

Re: [PATCH] MAINTAINERS: ADI Linux development mailing lists change to the new server.

2013-08-15 Thread Geert Uytterhoeven
On Wed, Aug 14, 2013 at 8:20 AM, Sonic Zhang sonic@gmail.com wrote: ANALOG DEVICES INC ASOC DRIVERS -L: uclinux-dist-de...@blackfin.uclinux.org +L: adi-buidroot-de...@lists.sourceforge.net adi-buildroot-de...@lists.sourceforge.net, unless you really don't want to receive big

Re: [PATCH 03/10] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO

2013-08-15 Thread Alexey Kardashevskiy
On 08/15/2013 05:43 PM, Alexander Graf wrote: On 15.08.2013, at 09:42, Alexey Kardashevskiy wrote: On 08/15/2013 05:25 PM, Alexander Graf wrote: On 15.08.2013, at 09:24, Alexander Graf wrote: On 15.08.2013, at 09:22, Alexey Kardashevskiy wrote: On 08/15/2013 05:16 PM, Alexander Graf

Re: [ 00/17] 3.4.58-stable review

2013-08-15 Thread Geert Uytterhoeven
On Thu, Aug 15, 2013 at 9:43 AM, Guenter Roeck li...@roeck-us.net wrote: I screwed up my stable repo clone again :(, so the full build will take a bit. mips builds on on 3.4 with all patches applied now fail with: arch/mips/include/asm/page.h: Assembler messages:

[tip:perf/core] perf sched: Remove thread lookup in sample handler

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: ffb273dd7e3bd72e7d964fc0a0f6d441aceb7dae Gitweb: http://git.kernel.org/tip/ffb273dd7e3bd72e7d964fc0a0f6d441aceb7dae Author: David Ahern dsah...@gmail.com AuthorDate: Wed, 7 Aug 2013 22:50:45 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12 Aug 2013

[tip:perf/core] perf kvm: Update documentation with live command

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: 9a6d316692d59c4400a66b01db675abac432b4b2 Gitweb: http://git.kernel.org/tip/9a6d316692d59c4400a66b01db675abac432b4b2 Author: David Ahern dsah...@gmail.com AuthorDate: Wed, 7 Aug 2013 21:56:39 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12 Aug 2013

[tip:perf/core] perf sched: Remove sched_process_exit tracepoint

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: 4a957e4df1a212c447fd162d18dc7ee6320c1621 Gitweb: http://git.kernel.org/tip/4a957e4df1a212c447fd162d18dc7ee6320c1621 Author: David Ahern dsah...@gmail.com AuthorDate: Wed, 7 Aug 2013 22:50:46 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12 Aug 2013

[patch] PM / devfreq: create_freezable_workqueue() doesn't return an ERR_PTR

2013-08-15 Thread Dan Carpenter
The create_freezable_workqueue() function returns a NULL on error and not an ERR_PTR. Signed-off-by: Dan Carpenter dan.carpen...@oracle.com diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c index e94e619..5088523 100644 --- a/drivers/devfreq/devfreq.c +++

[tip:perf/core] perf sched: Remove sched_process_fork tracepoint

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: cb627505ae028a0cd88cc29ed72a4c168a08751d Gitweb: http://git.kernel.org/tip/cb627505ae028a0cd88cc29ed72a4c168a08751d Author: David Ahern dsah...@gmail.com AuthorDate: Wed, 7 Aug 2013 22:50:47 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12 Aug 2013

Re: DoS with unprivileged mounts

2013-08-15 Thread Eric W. Biederman
Andy Lutomirski l...@amacapital.net writes: On Wed, Aug 14, 2013 at 11:45 PM, Eric W. Biederman ebied...@xmission.com wrote: Miklos Szeredi mik...@szeredi.hu writes: Part of me does prefer the semantics Andy has suggested where instead of unmounting things we have something like a skeleton

[tip:perf/core] perf evsel: Add option to limit stack depth in callchain dumps

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: 307cbb92aa2bdc9eed7c74409ff4d5fc9135b4e2 Gitweb: http://git.kernel.org/tip/307cbb92aa2bdc9eed7c74409ff4d5fc9135b4e2 Author: David Ahern dsah...@gmail.com AuthorDate: Wed, 7 Aug 2013 22:50:53 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12 Aug 2013

[tip:perf/core] perf session: Change perf_session__has_traces to actually check for tracepoints

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: 93ea01c29d4ed5a9fcf6d9a95bc584e54a420834 Gitweb: http://git.kernel.org/tip/93ea01c29d4ed5a9fcf6d9a95bc584e54a420834 Author: David Ahern dsah...@gmail.com AuthorDate: Wed, 7 Aug 2013 22:50:58 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12 Aug 2013

[tip:perf/core] perf machine: Add symbol filter to struct machine

2013-08-15 Thread tip-bot for Adrian Hunter
Commit-ID: 611a5ce8aa4cdb2daefbd9bed77ec3b3e9bd00ea Gitweb: http://git.kernel.org/tip/611a5ce8aa4cdb2daefbd9bed77ec3b3e9bd00ea Author: Adrian Hunter adrian.hun...@intel.com AuthorDate: Thu, 8 Aug 2013 14:32:20 +0300 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12

[tip:perf/core] perf evsel: Add option to print stack trace on single line

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: b0b35f0179161a5e256eebffa274b0b6f023f451 Gitweb: http://git.kernel.org/tip/b0b35f0179161a5e256eebffa274b0b6f023f451 Author: David Ahern dsah...@gmail.com AuthorDate: Wed, 7 Aug 2013 22:50:52 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12 Aug 2013

[tip:perf/core] perf tool: Simplify options to perf_evsel__print_ip

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: a6ffaf91302dc1689fc72da0068b87226747fbe0 Gitweb: http://git.kernel.org/tip/a6ffaf91302dc1689fc72da0068b87226747fbe0 Author: David Ahern dsah...@gmail.com AuthorDate: Wed, 7 Aug 2013 22:50:51 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12 Aug 2013

[tip:perf/core] perf report: Set the machines symbol filter

2013-08-15 Thread tip-bot for Adrian Hunter
Commit-ID: b8681711271a0124d9495dae2e1ac0616b0ed47a Gitweb: http://git.kernel.org/tip/b8681711271a0124d9495dae2e1ac0616b0ed47a Author: Adrian Hunter adrian.hun...@intel.com AuthorDate: Thu, 8 Aug 2013 14:32:22 +0300 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12

[tip:perf/core] perf top: Set the machines symbol filter

2013-08-15 Thread tip-bot for Adrian Hunter
Commit-ID: 36035f78ae1714a0762a2b38b64942d6dcb6471d Gitweb: http://git.kernel.org/tip/36035f78ae1714a0762a2b38b64942d6dcb6471d Author: Adrian Hunter adrian.hun...@intel.com AuthorDate: Thu, 8 Aug 2013 14:32:21 +0300 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12

[tip:perf/core] perf mem: Remove unused symbol filter member

2013-08-15 Thread tip-bot for Adrian Hunter
Commit-ID: 2d8cc6851c7b92857e1171ba5fe587d38d886161 Gitweb: http://git.kernel.org/tip/2d8cc6851c7b92857e1171ba5fe587d38d886161 Author: Adrian Hunter adrian.hun...@intel.com AuthorDate: Thu, 8 Aug 2013 14:32:23 +0300 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12

[tip:perf/core] perf annotate: Set the machines symbol filter

2013-08-15 Thread tip-bot for Adrian Hunter
Commit-ID: 476d35c2f3a48f81691daad06bc9668c516428d9 Gitweb: http://git.kernel.org/tip/476d35c2f3a48f81691daad06bc9668c516428d9 Author: Adrian Hunter adrian.hun...@intel.com AuthorDate: Thu, 8 Aug 2013 14:32:24 +0300 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12

[tip:perf/core] perf tests: Fix compile failure on do_sort_something

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: 309b5185047c5309bbc576025f6c5e257edd9f69 Gitweb: http://git.kernel.org/tip/309b5185047c5309bbc576025f6c5e257edd9f69 Author: David Ahern dsah...@gmail.com AuthorDate: Tue, 13 Aug 2013 22:32:12 -0600 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed, 14 Aug

[tip:perf/core] perf tools: Remove filter parameter of thread__find_addr_map()

2013-08-15 Thread tip-bot for Adrian Hunter
Commit-ID: 326f59bf645ea6c99709c67d9712df46019fa7a8 Gitweb: http://git.kernel.org/tip/326f59bf645ea6c99709c67d9712df46019fa7a8 Author: Adrian Hunter adrian.hun...@intel.com AuthorDate: Thu, 8 Aug 2013 14:32:27 +0300 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12

[tip:perf/core] perf tools: Improve robustness of topology parsing code

2013-08-15 Thread tip-bot for Stephane Eranian
Commit-ID: c5885749e4ebe568cca969d43488a233e69e6454 Gitweb: http://git.kernel.org/tip/c5885749e4ebe568cca969d43488a233e69e6454 Author: Stephane Eranian eran...@google.com AuthorDate: Wed, 14 Aug 2013 12:04:26 +0200 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed, 14

[tip:perf/core] perf tools: Remove filter parameter of thread__find_addr_location()

2013-08-15 Thread tip-bot for Adrian Hunter
Commit-ID: 61710bdee324aab1c148c8573ee49cea59d05874 Gitweb: http://git.kernel.org/tip/61710bdee324aab1c148c8573ee49cea59d05874 Author: Adrian Hunter adrian.hun...@intel.com AuthorDate: Thu, 8 Aug 2013 14:32:26 +0300 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12

[tip:perf/core] perf trace: Allow specifying which syscalls to trace

2013-08-15 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 2ae3a312c0ccd8ff615372f00aab1700aac27474 Gitweb: http://git.kernel.org/tip/2ae3a312c0ccd8ff615372f00aab1700aac27474 Author: Arnaldo Carvalho de Melo a...@redhat.com AuthorDate: Fri, 9 Aug 2013 12:28:31 -0300 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed,

[tip:perf/core] perf tools: Remove filter parameter of perf_event__preprocess_sample()

2013-08-15 Thread tip-bot for Adrian Hunter
Commit-ID: e44baa3ea1eaa09d7d247a9b245fcff06561bf96 Gitweb: http://git.kernel.org/tip/e44baa3ea1eaa09d7d247a9b245fcff06561bf96 Author: Adrian Hunter adrian.hun...@intel.com AuthorDate: Thu, 8 Aug 2013 14:32:25 +0300 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12

Re: [PATCH 03/10] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO

2013-08-15 Thread Alexander Graf
On 15.08.2013, at 09:54, Alexey Kardashevskiy wrote: On 08/15/2013 05:43 PM, Alexander Graf wrote: On 15.08.2013, at 09:42, Alexey Kardashevskiy wrote: On 08/15/2013 05:25 PM, Alexander Graf wrote: On 15.08.2013, at 09:24, Alexander Graf wrote: On 15.08.2013, at 09:22, Alexey

[tip:perf/core] perf kvm: Option to print events that exceed a duration

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: 70f7b4a7f3f9a46807b644aa0fcfa7daa0d553e4 Gitweb: http://git.kernel.org/tip/70f7b4a7f3f9a46807b644aa0fcfa7daa0d553e4 Author: David Ahern dsah...@gmail.com AuthorDate: Wed, 7 Aug 2013 21:56:38 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12 Aug 2013

[tip:perf/core] perf sched: Simplify arguments to read_events

2013-08-15 Thread tip-bot for David Ahern
Commit-ID: ad9def7ca020ef5b54968c89194f52d18ef1ef49 Gitweb: http://git.kernel.org/tip/ad9def7ca020ef5b54968c89194f52d18ef1ef49 Author: David Ahern dsah...@gmail.com AuthorDate: Wed, 7 Aug 2013 22:50:44 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon, 12 Aug 2013

Re: [PATCH tip/perf/core 0/3] [GIT PULL][3.12] tracing/perf: Optimization for perf tracing

2013-08-15 Thread Ingo Molnar
* Steven Rostedt rost...@goodmis.org wrote: Ingo, These three patches from Oleg are more perf related, but they are based on some of the updates that Oleg did that are in 3.11-rc5. I based this work off of v3.11-rc5 as it seems that tip/perf/core is still based on 3.11-rc1. You may

Re: [ 00/17] 3.4.58-stable review

2013-08-15 Thread Guenter Roeck
On 08/15/2013 12:55 AM, Geert Uytterhoeven wrote: On Thu, Aug 15, 2013 at 9:43 AM, Guenter Roeck li...@roeck-us.net wrote: I screwed up my stable repo clone again :(, so the full build will take a bit. mips builds on on 3.4 with all patches applied now fail with: arch/mips/include/asm/page.h:

Re: [GIT PULL] EDAC fixes for 3.12

2013-08-15 Thread Ingo Molnar
* Borislav Petkov b...@alien8.de wrote: Hi guys, this is all 3.12 material, please pull. Thanks! The following changes since commit 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b: Linux 3.11-rc2 (2013-07-21 12:05:29 -0700) are available in the git repository at:

Re: [PATCH] Revert cxgb3: Check and handle the dma mapping errors

2013-08-15 Thread David Miller
From: Divy Le ray d...@chelsio.com Date: Wed, 14 Aug 2013 08:57:24 -0700 On 08/14/2013 02:19 AM, Alexey Kardashevskiy wrote: This reverts commit f83331bab149e29fa2c49cf102c0cd8c3f1ce9f9. As the tests PPC64 (powernv platform) show, IOMMU pages are leaking when transferring big amount of small

Re: [PATCH] MAINTAINERS: ADI Linux development mailing lists change to the new server.

2013-08-15 Thread Sonic Zhang
Hi Geert, Thanks. Sonic On Thu, Aug 15, 2013 at 3:53 PM, Geert Uytterhoeven ge...@linux-m68k.org wrote: On Wed, Aug 14, 2013 at 8:20 AM, Sonic Zhang sonic@gmail.com wrote: ANALOG DEVICES INC ASOC DRIVERS -L: uclinux-dist-de...@blackfin.uclinux.org +L:

[PATCH v2] MAINTAINERS: ADI Linux development mailing lists change to the new server.

2013-08-15 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Update Blackfin arch branch maintainer's email as well. Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- MAINTAINERS | 42 -- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/MAINTAINERS

Re: [PATCH v8 2/2] iio: twl6030-gpadc: TWL6030, TWL6032 GPADC driver

2013-08-15 Thread Jonathan Cameron
On 08/15/13 06:45, Oleksandr Kozaruk wrote: Hello Jonathan, Thank you for the review and valuable comments. Multiple authors are done by having multiple MODULE_AUTHOR lines rather as one long string. See include/linux/module.h. I fixed that up and dealt with some trivial fuzz

Re: [PATCH] block: add command line partition parser

2013-08-15 Thread Brian Norris
On 08/15/2013 12:45 AM, Caizhiyong wrote: -Original Message- From: Brian Norris [mailto:computersforpe...@gmail.com] ... On Thu, Aug 15, 2013 at 06:16:04AM +, Caizhiyong wrote: I want to use the MTD command line partition method on block devices (eMMC). It is very suitable for

Re: [PATCH net-next v2 1/3] net/usb/r8152: support aggregation

2013-08-15 Thread David Miller
From: Hayes Wang hayesw...@realtek.com Date: Wed, 14 Aug 2013 20:54:38 +0800 Enable the tx/rx aggregation which could contain one or more packets for each bulk in/out. This could reduce the loading of the host controller by sending less bulk transfer. The rx packets in the bulk in buffer

Re: [PATCH net-next v2 3/3] net/usb/r8152: enable interrupt transfer

2013-08-15 Thread David Miller
From: Hayes Wang hayesw...@realtek.com Date: Wed, 14 Aug 2013 20:54:40 +0800 Use the interrupt transfer to replace polling link status. Signed-off-by: Hayes Wang hayesw...@realtek.com Applied. -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: [PATCH net-next v2 2/3] net/usb/r8152: enable tx checksum

2013-08-15 Thread David Miller
From: Hayes Wang hayesw...@realtek.com Date: Wed, 14 Aug 2013 20:54:39 +0800 Enable tx checksum. Signed-off-by: Hayes Wang hayesw...@realtek.com Applied. -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

[PATCH] bond: Don't set skb-queue_mapping in netpoll.

2013-08-15 Thread Tao Ma
From: Tao Ma boyu...@taobao.com When we are using netpoll, we don't go through the normal transmit process. In this case, bond_select_queue is not called and qdisc_skb_cb(skb)-slave_dev_queue_mapping isn't set. So when netpoll_send_skb_on_dev calls ndo_start_xmit and we enter

Re: [PATCH] drivers/net/ethernet/via/via-velocity.c: update napi implementation

2013-08-15 Thread David Miller
From: Julia Lawall julia.law...@lip6.fr Date: Wed, 14 Aug 2013 16:26:53 +0200 From: Julia Lawall julia.law...@lip6.fr Drivers supporting NAPI should use a NAPI-specific function for receiving packets. Hence netif_rx is changed to netif_receive_skb. Furthermore netif_napi_del should be

Re: [ 00/17] 3.4.58-stable review

2013-08-15 Thread Guenter Roeck
On 08/14/2013 11:36 PM, Greg Kroah-Hartman wrote: On Wed, Aug 14, 2013 at 03:14:11AM -0700, Guenter Roeck wrote: On 08/14/2013 01:26 AM, Geert Uytterhoeven wrote: On Wed, Aug 14, 2013 at 12:36 AM, Guenter Roeck li...@roeck-us.net wrote: cris/...: In file included from

Re: [PATCH] mm: memcontrol: fix handling of swapaccount parameter

2013-08-15 Thread Gergely Risko
On Thu, 15 Aug 2013 09:47:14 +0200, Michal Hocko mho...@suse.cz writes: Ohh, I have totally missed those left-overs. I would rather fix the doc than reintroduce the handling without any value. Okay, fine with me, thanks for fixing these left-overs! Gergely -- To unsubscribe from this list:

Re: [RFC][PATCH 0/5] preempt_count rework

2013-08-15 Thread Mike Galbraith
On Wed, 2013-08-14 at 08:43 -0700, H. Peter Anvin wrote: On 08/14/2013 08:39 AM, Mike Galbraith wrote: ..so could the rq = cpu_rq(cpu) sequence be improved cycle expenditure wise by squirreling rq pointer away in a percpu this_rq, and replacing cpu_rq(cpu) above with a

  1   2   3   4   5   6   7   8   9   10   >