Re: [PATCH] UEFI: Don't pass boot services regions to SetVirtualAddressMap()

2013-06-04 Thread Matt Fleming
On 06/02/2013 11:12 PM, Matthew Garrett wrote: > We need to map boot services regions during startup in order to avoid > firmware bugs, but we shouldn't be passing those regions to > SetVirtualAddressMap(). Ensure that we're only passing regions that are > marked as being mapped at runtime. > > Si

Re: linux-next: manual merge of the akpm tree with the percpu tree

2013-06-04 Thread Tejun Heo
Hello, Sorry about that. Forgot that the series was already in -mm. Due to the interface change, the old aio patches won't work on top of the new percpu-ref patch. Kent is rebasing the rest but until then we need to either drop the aio patches from -mm or keep using the old percpu-ref patch. Given

Re: [v5][PATCH 5/6] mm: vmscan: batch shrink_page_list() locking operations

2013-06-04 Thread Minchan Kim
On Mon, Jun 03, 2013 at 11:10:02PM -0700, Dave Hansen wrote: > On 06/03/2013 10:01 PM, Minchan Kim wrote: > >> > +static int __remove_mapping_batch(struct list_head *remove_list, > >> > + struct list_head *ret_pages, > >> > + struct

Re: [PATCH] timekeeping: handle epoch roll-over (2038) on 32-bit systems

2013-06-04 Thread Tobias Waldekranz
On Mon, Jun 03, 2013 at 04:34:25PM +0200, Thomas Gleixner wrote: > B1;2601;0cOn Mon, 3 Jun 2013, Tobias Waldekranz wrote: > > In ktime_get_update_offsets, calculate the current time in the same > > way as in ktime_get. > > > > On 32-bit systems, the current time is truncated via the call to > > kt

Re: [net-next rfc V2 7/8] macvtap: add TUNSETQUEUE ioctl

2013-06-04 Thread Michael S. Tsirkin
On Tue, Jun 04, 2013 at 01:54:56PM +0800, Jason Wang wrote: > On 06/03/2013 07:09 PM, Michael S. Tsirkin wrote: > > On Mon, Jun 03, 2013 at 01:20:58PM +0800, Jason Wang wrote: > >> On 06/02/2013 07:22 PM, Michael S. Tsirkin wrote: > >>> On Fri, May 31, 2013 at 05:53:24PM +0800, Jason Wang wrote: >

Re: [PATCH] ARM: daVinci: remove __init modifier from function declaration

2013-06-04 Thread Prabhakar Lad
Hi Sekhar, On Mon, Apr 1, 2013 at 5:03 PM, Prabhakar lad wrote: > From: Lad, Prabhakar > > This patch removes the __init modifier from function declaration > of all the header files for davinci platform. > gentle ping for v3.11 Regards, --Prabhakar Lad -- To unsubscribe from this list: send the

Re: [PATCH 07/10] pinctrl: add pinctrl driver for Rockchip SoCs

2013-06-04 Thread Linus Walleij
On Mon, Jun 3, 2013 at 12:59 AM, Heiko Stübner wrote: > This driver adds support the Cortex-A9 based SoCs from Rockchip, > so at least the RK2928, RK3066 (a and b) and RK3188. > Earlier Rockchip SoCs seem to use similar mechanics for gpio > handling so should be supportable with relative small ch

[RESEND][PATCH 3/7] net, ipw2x00: remove redundant D0 power state set

2013-06-04 Thread Yijing Wang
Pci_enable_device() will set device power state to D0, so it's no need to do it again in ipw2100_pci_init_one(). Signed-off-by: Yijing Wang Cc: Stanislav Yakovlev Cc: "John W. Linville" Cc: net...@vger.kernel.org Cc: linux-wirel...@vger.kernel.org --- drivers/net/wireless/ipw2x00/ipw2100.c |

[RESEND][PATCH] net: wireless: iwlegacy: fix build error for il_pm_ops

2013-06-04 Thread Yijing Wang
Fix build error for il_pm_ops if CONFIG_PM is set but CONFIG_PM_SLEEP is not set. ERROR: "il_pm_ops" [drivers/net/wireless/iwlegacy/iwl4965.ko] undefined! ERROR: "il_pm_ops" [drivers/net/wireless/iwlegacy/iwl3945.ko] undefined! make[1]: *** [__modpost] Error 1 make: *** [modules] Error 2 Acked-by

Re: [PATCH 09/11] mmc: omap_hsmmc: enhance pinctrl support

2013-06-04 Thread Linus Walleij
On Fri, May 31, 2013 at 12:13 PM, Hebbar Gururaja wrote: > Amend the hsmmc controller to optionally take a pin control handle and > set the state of the pins to: > > - "default" on boot, resume and before performing a mmc transfer > - "idle" after initial default, after resume default, and after

Re: [PATCH RFC V9 9/19] Split out rate limiting from jump_label.h

2013-06-04 Thread Raghavendra K T
On 06/03/2013 09:26 PM, Konrad Rzeszutek Wilk wrote: On Sun, Jun 02, 2013 at 12:54:22AM +0530, Raghavendra K T wrote: Split jumplabel ratelimit I would change the title a bit, perhaps prefix it with: "jump_label: " From: Andrew Jones Commit b202952075f62603bea9bfb6ebc6b0420db11949 introduc

Re: [PATCH RFC V9 12/19] xen: Enable PV ticketlocks on HVM Xen

2013-06-04 Thread Raghavendra K T
On 06/03/2013 09:27 PM, Konrad Rzeszutek Wilk wrote: On Sun, Jun 02, 2013 at 12:55:03AM +0530, Raghavendra K T wrote: xen: Enable PV ticketlocks on HVM Xen There is more to it. You should also revert 70dd4998cb85f0ecd6ac892cc7232abefa432efb Yes, true. Do you expect the revert to be folded

Re: Exotic architecture fixes

2013-06-04 Thread Geert Uytterhoeven
On Mon, Jun 3, 2013 at 3:28 AM, Stephen Rothwell wrote: > On Sun, 2 Jun 2013 21:39:38 +0200 Geert Uytterhoeven > wrote: >> On Tue, May 28, 2013 at 11:38 AM, Geert Uytterhoeven >> wrote: >> > On Thu, May 23, 2013 at 10:09 PM, Geert Uytterhoeven >> > wrote: >> >> I created a branch where I colle

[RESEND][PATCH 2/7] usb, dwc3: remove redundant D0 power state set

2013-06-04 Thread Yijing Wang
Pci_enable_device() will set device power state to D0, so it's no need to do it again in dwc3_pci_probe(). Signed-off-by: Yijing Wang Cc: Felipe Balbi Cc: linux-o...@vger.kernel.org Cc: linux-...@vger.kernel.org --- drivers/usb/dwc3/dwc3-pci.c |1 - 1 files changed, 0 insertions(+), 1 delet

Re: [PATCH RFC V9 16/19] kvm : Paravirtual ticketlocks support for linux guests running on KVM hypervisor

2013-06-04 Thread Raghavendra K T
On 06/03/2013 09:30 PM, Konrad Rzeszutek Wilk wrote: On Sun, Jun 02, 2013 at 12:55:57AM +0530, Raghavendra K T wrote: kvm : Paravirtual ticketlocks support for linux guests running on KVM hypervisor From: Srivatsa Vaddagiri During smp_boot_cpus paravirtualied KVM guest detects if the hypervi

Re: [PATCH 1/2, v2] PM / Runtime: Rework the "runtime idle" helper routine

2013-06-04 Thread Lan Tianyu
2013/6/3 Rafael J. Wysocki : > From: Rafael J. Wysocki > > The "runtime idle" helper routine, rpm_idle(), currently ignores > return values from .runtime_idle() callbacks executed by it. > However, it turns out that many subsystems use > pm_generic_runtime_idle() which checks the return value of t

Re: [PATCH RFC V9 5/19] xen/pvticketlock: Xen implementation for PV ticket locks

2013-06-04 Thread Raghavendra K T
On 06/03/2013 09:33 PM, Konrad Rzeszutek Wilk wrote: On Sat, Jun 01, 2013 at 12:23:14PM -0700, Raghavendra K T wrote: xen/pvticketlock: Xen implementation for PV ticket locks From: Jeremy Fitzhardinge Replace the old Xen implementation of PV spinlocks with and implementation of xen_lock_spinn

Re: [Patch 3/3] clk: Avoid re-parenting orphan clk's having invalid parent index.

2013-06-04 Thread Ambresh K
On Wednesday 29 May 2013 12:48 PM, Mike Turquette wrote: > Quoting Ambresh K (2013-05-01 23:25:29) >> From: Ambresh K >> >> Add orhan clk nodes having invalid parent index to list and use >> the list to skip re-parenting orphan clk having invalid parents. >> >> Signed-off-by: Ambresh K >> --- >

Re: [PATCH v2 0/2] USB: PHY: Improve PHY selection logic

2013-06-04 Thread Roger Quadros
On 06/03/2013 08:47 PM, Greg KH wrote: > On Fri, May 31, 2013 at 02:29:01PM +0300, Roger Quadros wrote: >> Hi, >> >> Improve Kconfig so that the relevant PHY driver can be explicitely >> selected by the controller driver instead of relying on the user >> to do so. >> >> Detailed description in patc

Re: [PATCH RFC V9 18/19] Documentation/kvm : Add documentation on Hypercalls and features used for PV spinlock

2013-06-04 Thread Raghavendra K T
On 06/03/2013 09:34 PM, Konrad Rzeszutek Wilk wrote: On Sun, Jun 02, 2013 at 12:56:24AM +0530, Raghavendra K T wrote: Documentation/kvm : Add documentation on Hypercalls and features used for PV spinlock From: Raghavendra K T KVM_HC_KICK_CPU hypercall added to wakeup halted vcpu in paravirt

[PATCH v4] arm: zynq: Add cpuidle support

2013-06-04 Thread Michal Simek
Add support for cpuidle. Signed-off-by: Michal Simek --- Changes in v4: - Add record to MAINTAINERS file - Use long license in header + Maintainer record - Remove unused headers - Fix indentations - s/zynq_init_cpuidle/zynq_cpuidle_init/g - use cpuidle_register function - Do not use module_init,

Re: [PATCH 02/11] leds: leds-gpio: Enhance pinctrl support

2013-06-04 Thread Linus Walleij
On Fri, May 31, 2013 at 12:13 PM, Hebbar Gururaja wrote: > struct gpio_leds_priv { > int num_leds; > + /* Two optional pin states - default & sleep */ > + struct pinctrl *pinctrl; > + struct pinctrl_state*pins_default; > + struct pinctrl_state*pin

Re: [PATCH 09/11] mmc: omap_hsmmc: enhance pinctrl support

2013-06-04 Thread Linus Walleij
On Tue, Jun 4, 2013 at 9:11 AM, Linus Walleij wrote: > On Fri, May 31, 2013 at 12:13 PM, Hebbar Gururaja > wrote: > >> Amend the hsmmc controller to optionally take a pin control handle and >> set the state of the pins to: >> >> - "default" on boot, resume and before performing a mmc transfer >>

Re: [PATCH] mfd: DT bindings for the palmas family MFD

2013-06-04 Thread Lee Jones
On Mon, 03 Jun 2013, Stephen Warren wrote: > On 06/03/2013 08:18 AM, Lee Jones wrote: > > On Mon, 03 Jun 2013, J Keerthy wrote: > >> Add the various binding files for the palmas family of chips. There is a > >> top level MFD binding then a seperate binding for regulators IP blocks on > >> chips.

Handling NUMA page migration

2013-06-04 Thread Frank Mehnert
Hi, our memory management on Linux hosts conflicts with NUMA page migration. I assume this problem existed for a longer time but Linux 3.8 introduced automatic NUMA page balancing which makes the problem visible on multi-node hosts leading to kernel oopses. NUMA page migration means that the phys

Re: [PATCH V3] mfd: replace strict_strtoul() with kstrtoul()

2013-06-04 Thread Lee Jones
On Tue, 04 Jun 2013, Jingoo Han wrote: > The usage of strict_strtoul() is not preferred, because > strict_strtoul() is obsolete. Thus, kstrtoul() should be > used. > > Signed-off-by: Jingoo Han > Reviewed-by: Andy Shevchenko > --- > Changes since v1: > - Removed redundant variables 'u8 reg'. >

Re: [PATCH 1/3] sched: don't repeat the initialization in sched_init()

2013-06-04 Thread Michael Wang
Hi, Paul On 06/04/2013 02:52 PM, Paul Turner wrote: > On Mon, Jun 3, 2013 at 11:23 PM, Michael Wang [snip] > > This comment has become unglued from what it's supposed to be attached > to (it's tied to root_task_group.shares & init_tg_cfs_entry, not > init_cfs_bandwidth). Thanks for your review

Re: [PATCH RFC V9 19/19] kvm hypervisor: Add directed yield in vcpu block path

2013-06-04 Thread Raghavendra K T
On 06/03/2013 09:35 PM, Konrad Rzeszutek Wilk wrote: On Sun, Jun 02, 2013 at 12:56:45AM +0530, Raghavendra K T wrote: kvm hypervisor: Add directed yield in vcpu block path From: Raghavendra K T We use the improved PLE handler logic in vcpu block patch for scheduling rather than plain schedule

Re: [PATCH 11/11] i2c: omap: enhance pinctrl support

2013-06-04 Thread Linus Walleij
On Fri, May 31, 2013 at 8:07 PM, Kevin Hilman wrote: > But that brings up a bigger question about whether or not we should be > doing the rest of this (idle/sleep) pin management in the drivers or in > the driver core as well. I would much prefer it be handled by the > driver core. Yes. See my

Re: [PATCH 00/11] drivers: Add Pinctrl PM support

2013-06-04 Thread Linus Walleij
On Fri, May 31, 2013 at 7:04 PM, Dmitry Torokhov wrote: > As with the original introduction of pinctrl states my question is: "Can > all of this be handled in the driver/bus core instead of adding a lot > of boilerplate code to the individual drivers". It can. Per the suggestion in 2/11: - Addi

Re: [PATCH] dmatest: add ability to disable pq and xor

2013-06-04 Thread Andy Shevchenko
On Tue, Jun 4, 2013 at 2:29 AM, Jon Mason wrote: > On Fri, May 31, 2013 at 11:22:10AM +0300, Andy Shevchenko wrote: >> On Fri, May 17, 2013 at 8:54 PM, Jon Mason wrote: >> > dmatest would create a thread to stress XOR and PQ, if the capability is >> > present in the hardware. Add the ability to

Re: [PATCH] clean up scary strncpy(dst, src, strlen(src)) uses

2013-06-04 Thread Ursula Braun
On Friday, May 31, 2013 09:18:07 AM Kees Cook wrote: > Fix various weird constructions of strncpy(dst, src, strlen(src)). > Length > limits should be about the space available in the destination, not > repurposed as a method to either always include or always exclude > a trailing NULL byte. Either

linux-next: build warning after merge of the final tree (net tree related)

2013-06-04 Thread Stephen Rothwell
Hi all, After merging the final tree, today's linux-next build (i386_defconfig, sparc64_defconfig) produced this warning: net/ipv6/ping.c: In function 'pingv6_init': net/ipv6/ping.c:87:27: warning: assignment from incompatible pointer type [enabled by default] Probably caused by commit 2a7851bf

Re: [PATCH 1/1] kernel:time Export symbols of functions declared in linux/alarmtimer.h

2013-06-04 Thread Marcus Gelderie
On Mon, Jun 03, 2013 at 12:21:22PM -0700, John Stultz wrote: > These probably should be EXPORT_SYMBOL_GPL, no? Also there's a bunch of > new alarm functions that Todd Poynor that I have queued, which will > probably need similar. > > thanks > -john Opps, yes they should, thanks. I've corrected t

Re: [PATCHv2 2/2] mfd: ssbi: Use devm_* and simplify code

2013-06-04 Thread Lee Jones
On Mon, 03 Jun 2013, Stephen Boyd wrote: > Use devm_ioremap_resource and devm_kzalloc to simplify error > paths and reduce lines of code. Also use dev_err() to keep > consistency and drop the .remove function because the devm > functions take care of what it's doing besides the now obsolete > plat

[PATCH] sched: Rename sched.c as sched/core.c in comments and Documentation

2013-06-04 Thread Viresh Kumar
Most of the stuff from kernel/sched.c was moved to kernel/sched/core.c long time back and the comments/Documentation never got updated. I figured it out when I was going through sched-domains.txt and so thought of fixing it globally. I haven't crossed check if the stuff that is referenced in sche

linux-next: Tree for Jun 4

2013-06-04 Thread Stephen Rothwell
Hi all, Changes since 20130603: The pci tree gained a conflict against Linus' tree. The wireless-next tree gained conflicts against the net and net-next trees. The staging tree gained a build failure so I disabled a driver. The msm tree still has its build failure for which I applied a fix pat

[GIT PULL] arch/microblaze fixes for 3.10-rc5

2013-06-04 Thread Michal Simek
Hi Linus, please pull these two fixes to your tree. One is fixing warning reported by sparse and the second warning was reported by Geert in his build regressions/improvements status update for -rc4. Thanks, Michal The following changes since commit d683b96b072dc4680fc74964eca77e6a23d1fa6e: L

Re: [PATCH v2 1/3] PCI/AER: Fix incorrect return from aer_hest_parse()

2013-06-04 Thread Chen Gong
On Thu, May 30, 2013 at 08:39:27AM -0600, Betty Dall wrote: > Date: Thu, 30 May 2013 08:39:27 -0600 > From: Betty Dall > To: r...@sisk.pl, bhelg...@google.com > Cc: ying.hu...@intel.com, linux-a...@vger.kernel.org, > linux-kernel@vger.kernel.org, linux-...@vger.kernel.org, Betty Dall > > Subjec

Re: [PATCH] net/macb: fix ISR clear-on-write behavior only for some SoC

2013-06-04 Thread Nicolas Ferre
On 04/06/2013 08:49, Steffen Trumtrar : On Tue, Jun 04, 2013 at 08:15:45AM +0200, Michal Simek wrote: On 05/14/2013 07:52 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: On 08:58 Tue 14 May , Hein Tibosch wrote: On 5/14/2013 12:05 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: On May 14, 2013, a

Re: [PATCH] net/macb: fix ISR clear-on-write behavior only for some SoC

2013-06-04 Thread Michal Simek
On 06/04/2013 09:51 AM, Nicolas Ferre wrote: > On 04/06/2013 08:49, Steffen Trumtrar : >> On Tue, Jun 04, 2013 at 08:15:45AM +0200, Michal Simek wrote: >>> On 05/14/2013 07:52 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: On 08:58 Tue 14 May , Hein Tibosch wrote: > On 5/14/2013 12:05 AM,

Re: [PATCH 3/3] clocksource: dw_apb_timer_of: use clocksource_of_init

2013-06-04 Thread Heiko Stübner
Am Dienstag, 4. Juni 2013, 06:36:20 schrieb Baruch Siach: > Hi Heiko, > > On Mon, Jun 03, 2013 at 09:59:55PM +0200, Heiko Stübner wrote: > > dw_apb_timer_init used to search the devicetree for matching timer > > devices, making calls to it from board files necessary. > > > > Change the dw_apb_tim

Re: [PATCH v2 2/3] ACPI/APEI: Force fatal AER severity when bus has been reset

2013-06-04 Thread Chen Gong
On Thu, May 30, 2013 at 08:39:28AM -0600, Betty Dall wrote: > Date: Thu, 30 May 2013 08:39:28 -0600 > From: Betty Dall > To: r...@sisk.pl, bhelg...@google.com > Cc: ying.hu...@intel.com, linux-a...@vger.kernel.org, > linux-kernel@vger.kernel.org, linux-...@vger.kernel.org, Betty Dall > > Subjec

[GIT PULL] fuse bugfixes for 3.10-rc5

2013-06-04 Thread Miklos Szeredi
Hi Linus, Please pull the following bugfixes for fuse: git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git for-linus One patch fixes an Oops introduced in 3.9 with the readdirplus feature. The rest are fixes for async-dio in 3.10. Thanks, Miklos --- Brian Foster (4): fuse:

Re: linux-next: Tree for May 30

2013-06-04 Thread Stephen Rothwell
Hi Nicolas, On Mon, 3 Jun 2013 10:45:15 +0200 Nicolas Ferre wrote: > > Is it possible for you to move the building to the replacement defconfigs: > at91sam9260_9g20_defconfig > at91sam9261_9g10_defconfig Done. -- Cheers, Stephen Rothwells...@canb.auug.org.au pgp_G__qS2WpD

[PATCH 2/2] xen: remove bm_rld_set of xen_processor_flags

2013-06-04 Thread liguang
bm_rld_set seems obsolete now Signed-off-by: liguang --- include/xen/interface/platform.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/include/xen/interface/platform.h b/include/xen/interface/platform.h index c57d5f6..733 100644 --- a/include/xen/interface/platfor

[PATCH 1/2] acpi/processor: remove bm_rld_set of acpi_processor_flags

2013-06-04 Thread liguang
bm_rld_set seems obsolete now Signed-off-by: liguang --- include/acpi/processor.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/include/acpi/processor.h b/include/acpi/processor.h index ea69367..cfec509 100644 --- a/include/acpi/processor.h +++ b/include/acpi/processor

Re: [PATCH] scsi: Introduce a help function local_time_seconds() to simplify the getting time stamp operation

2013-06-04 Thread Gu Zheng
ping... On 05/29/2013 05:33 PM, Gu Zheng wrote: >>From 4d4caa16f3886ae910ad6dfe13353fc836f546cc Mon Sep 17 00:00:00 2001 > From: Gu Zheng > Date: Wed, 29 May 2013 17:34:22 +0900 > Subject: [PATCH] driver/scsi: Introduce a help function local_time_seconds() > to simplify the getting time stamp o

Re: [PATCH 2/2] xen: remove bm_rld_set of xen_processor_flags

2013-06-04 Thread Jan Beulich
>>> On 04.06.13 at 10:05, liguang wrote: > bm_rld_set seems obsolete now > > Signed-off-by: liguang > --- > include/xen/interface/platform.h |1 - > 1 files changed, 0 insertions(+), 1 deletions(-) > > diff --git a/include/xen/interface/platform.h > b/include/xen/interface/platform.h > in

Re: [PATCH 0/4] EFI 1:1 mapping

2013-06-04 Thread Borislav Petkov
On Mon, Jun 03, 2013 at 03:54:12PM +0100, Matt Fleming wrote: > On Mon, 03 Jun, at 03:32:52PM, Matthew Garrett wrote: > > We can only pass one set of addresses to SetVirtualAddressMap(), but it > > doesn't seem like there's any intrinsic reason we can't the runtime > > regions mapped to multiple

Re: [PATCH 2/2] xen: remove bm_rld_set of xen_processor_flags

2013-06-04 Thread li guang
在 2013-06-04二的 09:13 +0100,Jan Beulich写道: > >>> On 04.06.13 at 10:05, liguang wrote: > > bm_rld_set seems obsolete now > > > > Signed-off-by: liguang > > --- > > include/xen/interface/platform.h |1 - > > 1 files changed, 0 insertions(+), 1 deletions(-) > > > > diff --git a/include/xen/int

Re: [PATCH] sched: fix clear NOHZ_BALANCE_KICK

2013-06-04 Thread Vincent Guittot
On 4 June 2013 00:48, Frederic Weisbecker wrote: > On Thu, May 30, 2013 at 05:23:05PM +0200, Vincent Guittot wrote: >> I have faced a sequence where the Idle Load Balance was sometime not >> triggered for a while on my platform. >> >> CPU 0 and CPU 1 are running tasks and CPU 2 is idle >> >> CPU

Re: [PATCH 16/16] perf, persistent: Allow multiple users for an event

2013-06-04 Thread Borislav Petkov
On Mon, Jun 03, 2013 at 03:49:25PM +0200, Jiri Olsa wrote: > maybe check for valid cpu, since perf_get_persistent_event_fd is > called directly from syscall allowing anything in cpu That should be fine - we're traversing a per-cpu list of events there. > (unrelated to this patch, but I couldn't f

Re: [PATCH] net: emaclite: include linux/of_irq.h

2013-06-04 Thread Michal Simek
On 06/03/2013 11:39 PM, Arnd Bergmann wrote: > The emaclite driver now calls of_irq_to_resource, which is > declared in linux/of_irq.h. Without this patch, I get a build > error on ARM. What about to just change it to use platform_get_resource()? I will test it. Thanks, Michal -- Michal Simek,

Re: [Xen-devel] [PATCH] PVH: vcpu info placement, load selectors, and remove debug printk.

2013-06-04 Thread Jan Beulich
>>> On 04.06.13 at 02:43, Mukesh Rathor wrote: > @@ -1327,6 +1329,18 @@ static void __init xen_setup_stackprotector(void) > /* PVH TBD/FIXME: investigate setup_stack_canary_segment */ > if (xen_feature(XENFEAT_auto_translated_physmap)) { > switch_to_new_gdt(0); > + > +

Re: [PATCH 01/10] clocksource: dw_apb_timer_of: use the clocksource as sched clock if necessary

2013-06-04 Thread Heiko Stübner
Am Dienstag, 4. Juni 2013, 08:34:44 schrieb Linus Walleij: > On Mon, Jun 3, 2013 at 12:56 AM, Heiko Stübner wrote: > > Currently the dw_apb_timer always expects a separate special timer to be > > availbable for the sched_clock. Some devices using dw_apb_timers do not > > have the sptimer but can u

[PATCH V2 1/1] kvm/vmx: Add a tracepoint write_tsc_offset

2013-06-04 Thread Yoshihiro YUNOMAE
Add a tracepoint write_tsc_offset for tracing TSC offset change. We want to merge ftrace's trace data of guest OSs and the host OS using TSC for timestamp in chronological order. We need "TSC offset" values for each guest when merge those because the TSC value on a guest is always the host TSC plus

[PATCH V2 0/1] kvm/vmx: Output TSC offset

2013-06-04 Thread Yoshihiro YUNOMAE
Hi All, I'd like to propose a patch which adds a tracepoint at write_tsc_offset for tracing guests TSC offset changes. It is required for sorting the trace data of a guest and the host in chronological order. In a virtualization environment, it is difficult to analyze performance problems, such a

[EXAMPLE] tools: a tool for merging trace data of a guest and a host

2013-06-04 Thread Yoshihiro YUNOMAE
This tool merges trace data of a guest and a host in chronological order. Restrictions of this tool is as follows: - one guest (not for multiple guests) - stable TSC (not backward TSC) - synchronized TSC - unchanged TSC offset (the guest does not execute write_TSC) - How to use 1. [host] Enable k

Re: [PATCH] drm/tegra: add support for runtime pm

2013-06-04 Thread Mayuresh Kulkarni
On Tuesday 28 May 2013 02:40 PM, Thierry Reding wrote: * PGP Signed by an unknown key On Tue, May 28, 2013 at 08:45:03AM +0300, Terje Bergström wrote: On 27.05.2013 18:45, Thierry Reding wrote: On Mon, May 27, 2013 at 07:19:28PM +0530, Mayuresh Kulkarni wrote: +#ifdef CONFIG_PM_RUNTIME +stati

Re: [PATCH v2 3/3] PCI/AER: Provide reset_link for firmware first root port

2013-06-04 Thread Chen Gong
On Thu, May 30, 2013 at 08:39:29AM -0600, Betty Dall wrote: > Date: Thu, 30 May 2013 08:39:29 -0600 > From: Betty Dall > To: r...@sisk.pl, bhelg...@google.com > Cc: ying.hu...@intel.com, linux-a...@vger.kernel.org, > linux-kernel@vger.kernel.org, linux-...@vger.kernel.org, Betty Dall > > Subjec

Re: [PATCH 06/10] mmc: dw_mmc-pltfm: add Rockchip variant

2013-06-04 Thread Heiko Stübner
Am Dienstag, 4. Juni 2013, 06:06:39 schrieb Jaehoon Chung: > On 06/03/2013 07:59 AM, Heiko Stübner wrote: > > Cortex-A9 SoCs from Rockchip use a slightly modified variant of dw_mmc > > controllers that seems to require the SDMMC_CMD_USE_HOLD_REG bit to > > always be set. > > > > There also seem to

Re: [PATCH] net: emaclite: include linux/of_irq.h

2013-06-04 Thread Arnd Bergmann
On Tuesday 04 June 2013 10:21:01 Michal Simek wrote: > On 06/03/2013 11:39 PM, Arnd Bergmann wrote: > > The emaclite driver now calls of_irq_to_resource, which is > > declared in linux/of_irq.h. Without this patch, I get a build > > error on ARM. > > What about to just change it to use platform_ge

Re: [tip:perf/urgent] perf: Fix perf mmap bugs

2013-06-04 Thread Peter Zijlstra
Ingo asked for a delta against the patch already included in -tip. Vince; perf_fuzzer crashed after about 567 iterations -- not sure you're aware it will crash at times. Anyway at this time accounting was still good. --- Subject: perf: Fix mmap() accounting hole Vince's fuzzer once again fo

Re: [PATCH] net: emaclite: include linux/of_irq.h

2013-06-04 Thread Michal Simek
On 06/04/2013 10:44 AM, Arnd Bergmann wrote: > On Tuesday 04 June 2013 10:21:01 Michal Simek wrote: >> On 06/03/2013 11:39 PM, Arnd Bergmann wrote: >>> The emaclite driver now calls of_irq_to_resource, which is >>> declared in linux/of_irq.h. Without this patch, I get a build >>> error on ARM. >> >

Re: A bug about system call on ARM

2013-06-04 Thread Will Deacon
On Tue, Jun 04, 2013 at 06:33:20AM +0100, Wang, Yalin wrote: > Hi Will, Hello, > Could I know what's your git branch is mainly used for ? > > https://git.kernel.org/cgit/linux/kernel/git/will/linux.git > > > I mean if the branch is used for ARM arch maintenance ? I send most of my patches

Re: [RFC PATCH v1 4/8] zram: destroy all devices on error recovery path in zram_init()

2013-06-04 Thread Dan Carpenter
Everyone stop putting RFC on their bugfixes! :P No one wants to pre-review patches. On Mon, Jun 03, 2013 at 11:42:16PM +0800, Jiang Liu wrote: > On error recovery path of zram_init(), it leaks the zram device object > causing the failure. > This is a real bug but the fix isn't right. The obje

[PATCH v2] mfd: DT bindings for the palmas family MFD

2013-06-04 Thread J Keerthy
From: Graeme Gregory Add the various binding files for the palmas family of chips. There is a top level MFD binding then a seperate binding for regulators IP blocks on chips. Signed-off-by: Graeme Gregory Signed-off-by: J Keerthy Signed-off-by: Ian Lartey --- Changes from v1: * Corrected ti,l

[PATCH] cris: kgdb: use native hex2bin

2013-06-04 Thread Andy Shevchenko
There are kernel native helpers to convert hex ascii to the binary format: hex_to_bin() and hex2bin(). Thus, no need to reimplement them customly. Signed-off-by: Andy Shevchenko Cc: Geert Uytterhoeven --- arch/cris/arch-v10/kernel/kgdb.c | 36 +++-- arch/cris/arch-v32/kernel

Re: [PATCH v8 net-next 5/7] net: simple poll/select low latency socket poll

2013-06-04 Thread Eliezer Tamir
On 03/06/2013 16:59, Eliezer Tamir wrote: On 03/06/2013 16:15, Eric Dumazet wrote: On Mon, 2013-06-03 at 11:02 +0300, Eliezer Tamir wrote: sock = file->private_data; -return sock->ops->poll(file, sock, wait); + +poll_result = sock->ops->poll(file, sock, wait); + +if (!(poll_re

Re: [PATCH RFC -tip 0/6] perf: IRQ-bound performance events

2013-06-04 Thread Jiri Olsa
On Mon, Jun 03, 2013 at 09:41:21PM +0200, Frederic Weisbecker wrote: > On Mon, Jun 03, 2013 at 02:22:23PM +0200, Ingo Molnar wrote: > > > > * Alexander Gordeev wrote: SNIP > How about we define finegrained context on top of perf events themselves? > Like we could tell perf to count a task's ins

Re: [PATCH] ARM: ux500: Reduce PRCMU reg-names to shorter form for u8540 DT

2013-06-04 Thread Linus Walleij
On Thu, May 30, 2013 at 10:31 AM, Lee Jones wrote: > After some discussion and deliberation we have decided to only use the > short form of the PRCMU register names i.e. not mention the peripheral > in which the registers reside. > > Signed-off-by: Lee Jones Patch applied. Yours, Linus Walleij

Re: [PATCH v4 2/6] staging: android: binder: fix binder interface for 64bit compat layer

2013-06-04 Thread Serban Constantinescu
On 03/06/13 22:41, Arve Hjønnevåg wrote: On Wed, May 22, 2013 at 3:12 AM, Serban Constantinescu wrote: The changes in this patch will fix the binder interface for use on 64bit machines and stand as the base of the 64bit compat support. The changes apply to the structures that are passed between

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

2013-06-04 Thread Peng Tao
On Tue, Jun 4, 2013 at 1:42 PM, Greg KH wrote: > On Tue, Jun 04, 2013 at 02:57:00PM +1000, Stephen Rothwell wrote: >> Hi Greg, >> >> After merging the staging tree, today's linux-next build (x86_64 >> allmodconfig) failed like this: >> >> In file included from >> drivers/staging/lustre/lustre/fid

Re: [PATCH 1/4] ARM: ux540: Add ccu8540-uib-v3 Device Tree Machine

2013-06-04 Thread Linus Walleij
On Thu, May 30, 2013 at 3:20 PM, Gabriel Fernandez wrote: [Lee] >> Is it a new board, or just a UIB? > > For me it's a new board. > > ccu8540.dts is a board without uib. > You can can plug on this board some different uibs. > That's why, i created a ccu8540-uib-v3.dts board in which i included a

Re: [PATCH 1/5] ARM: ux500: Fix trivial typo in v-anamic1 comment

2013-06-04 Thread Linus Walleij
On Thu, May 30, 2013 at 3:27 PM, Fabio Baltieri wrote: > Fix VAMIC1 LDO comment in DT files to be make it coherent with the > others. > > Signed-off-by: Fabio Baltieri Patch applied to my ux500-devicetree branch. Yours, Linus Walleij -- To unsubscribe from this list: send the line "unsubscribe

Re: [PATCH 2/5] ARM: ux500: Correct anamic2 typo in DT files

2013-06-04 Thread Linus Walleij
On Thu, May 30, 2013 at 3:27 PM, Fabio Baltieri wrote: > Fix typo of VAMIC2 LDO regulator name in some DT-related files. This > patch replaces all occurrences with the right name. > > Signed-off-by: Fabio Baltieri Patch applied to my ux500-devicetree branch. Yours, Linus Walleij -- To unsubsc

Re: [PATCH 3/5] ARM: ux500: Add DT regulators for ab8500-codec

2013-06-04 Thread Linus Walleij
On Thu, May 30, 2013 at 3:27 PM, Fabio Baltieri wrote: > Add regulator DT bindings for the ab8500-codec driver. > > Signed-off-by: Fabio Baltieri Patch applied to my ux500-devicetree branch. Yours, Linus Walleij -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the

Re: [RFC PATCH v1 0/8] small bugfixes and code improvements for zram

2013-06-04 Thread Minchan Kim
Hello, On Mon, Jun 03, 2013 at 11:42:12PM +0800, Jiang Liu wrote: > This patchset is to fix issues in zram found by code inspection. > There is still one more issue left: should we repalce zram_stat64_xxx() > with atomic64_xxx()? > > Jiang Liu (8): > zram: simplify and optimize zram_to_dev() >

Re: [PATCH v3 8/8] powerpc/pseries: Read common partition via pstore

2013-06-04 Thread Aruna Balakrishnaiah
On Saturday 01 June 2013 10:22 AM, Benjamin Herrenschmidt wrote: On Thu, 2013-04-25 at 15:49 +0530, Aruna Balakrishnaiah wrote: diff --git a/fs/pstore/inode.c b/fs/pstore/inode.c index 8d4fb65..88cc050 100644 --- a/fs/pstore/inode.c +++ b/fs/pstore/inode.c @@ -330,6 +330,9 @@ int pstore_mkfile(

Re: [RFC PATCH v1 2/8] zram: avoid invalid memory access in zram_exit()

2013-06-04 Thread Minchan Kim
On Mon, Jun 03, 2013 at 11:42:14PM +0800, Jiang Liu wrote: > Memory for zram->disk object may have already been freed after returning > from destroy_device(zram), then it's unsafe for zram_reset_device(zram) > to access zram->disk again. > > Fix it by holding an extra reference to zram->disk befor

Re: [PATCH 4/5] ARM: ux500: Provide auxdata to ux500 ASoC driver

2013-06-04 Thread Linus Walleij
On Thu, May 30, 2013 at 3:27 PM, Fabio Baltieri wrote: > Ux500 ASoC driver is expected to have a specific device name to get > clock resources correctly. This patch provides the necessary > OF_DEV_AUXDATA to match the name in DT and non-DT cases. > > Signed-off-by: Fabio Baltieri Patch applied

Re: [PATCH 5/5] mfd: ab8500-core: Add of_compatible property for ab8500-codec

2013-06-04 Thread Linus Walleij
On Thu, May 30, 2013 at 3:27 PM, Fabio Baltieri wrote: > Add of_compatible string to the ab8500-codec cell to allow the driver to > grab handlers such as regulators from device-tree when available. > > Signed-off-by: Fabio Baltieri Acked-by: Linus Walleij I think Lee is queueing ab8500 patche

Re: [PATCH 1/1] KVM: add kvm_para_available to asm-generic/kvm_para.h

2013-06-04 Thread Gleb Natapov
On Wed, May 22, 2013 at 12:29:22PM +0100, James Hogan wrote: > According to include/uapi/linux/kvm_para.h architectures should define > kvm_para_available, so add an implementation to asm-generic/kvm_para.h > which just returns false. > What is this fixing? The only user of kvm_para_available() th

Re: [PATCH 0/5] Various DT fixes related to ux500 ASoC driver

2013-06-04 Thread Linus Walleij
On Thu, May 30, 2013 at 4:53 PM, Lee Jones wrote: > All look good to me. > > For patches 1-4: > > Acked-by: Lee Jones OK added this. > For patch 5: > Applied thanks. Thanks! Yours, Linus Walleij -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a messa

Re: [PATCH 3/3] powerpc/pseries: Support compression of oops text via pstore

2013-06-04 Thread Aruna Balakrishnaiah
Hi Ben, On Saturday 01 June 2013 10:24 AM, Benjamin Herrenschmidt wrote: On Fri, 2013-04-26 at 15:26 +0530, Aruna Balakrishnaiah wrote: The patch set supports compression of oops messages while writing to NVRAM, this helps in capturing more of oops data to lnx,oops-log. The pstore file for oops

Re: [RFC PATCH] regulator: palmas: enable all modes for SMPS10

2013-06-04 Thread Kishon Vijay Abraham I
Hi, On Sunday 02 June 2013 02:35 AM, Mark Brown wrote: On Sun, Jun 02, 2013 at 12:33:10AM +0530, Laxman Dewangan wrote: On Sunday 02 June 2013 12:15 AM, Mark Brown wrote: No, that makes no sense at all to me. Why do you think this maps onto the set mode API? Modes are all about accuracy of

**Short Note**

2013-06-04 Thread info
Your Email-ID has been Granted £1,000,000.00 Pounds in Uk National Lottery, To Receive, Send Your Name: Address: Telephone: Country to email: claims.jonesgre...@hotmail.co.uk -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.k

Re: [PATCH -next v2] dmaengine: ste_dma40: fix error return code in d40_probe()

2013-06-04 Thread Linus Walleij
On Thu, May 30, 2013 at 7:33 PM, Vinod Koul wrote: > On Thu, May 30, 2013 at 09:41:38AM +0200, Linus Walleij wrote: >> On Thu, May 30, 2013 at 6:32 AM, Wei Yongjun wrote: >> >> > From: Wei Yongjun >> > >> > In many of the error handling case, the return value 'ret' not set >> > and 0 will be ret

Re: [PATCH v2] ARM: ux500: Allocate correct amount of memory for the u8540 in DT

2013-06-04 Thread Linus Walleij
On Fri, May 31, 2013 at 5:15 PM, Lee Jones wrote: > As it stands, the memory node in the u8540 Device Tree is ignored and > memory is actually stipulated by the bootloader via ATAGS. ARM core > architecture code then extracts the memory ATAG and inserts it into the > Device Tree. In the u8540 the

Re: [RESEND][PATCH 3/7] net, ipw2x00: remove redundant D0 power state set

2013-06-04 Thread Stanislav Yakovlev
Hi Yijing, On 4 June 2013 00:07, Yijing Wang wrote: > Pci_enable_device() will set device power state to D0, > so it's no need to do it again in ipw2100_pci_init_one(). > > Signed-off-by: Yijing Wang > Cc: Stanislav Yakovlev > Cc: "John W. Linville" > Cc: net...@vger.kernel.org > Cc: linux-wir

Re: [patch] mm, memcg: add oom killer delay

2013-06-04 Thread Michal Hocko
On Mon 03-06-13 14:30:18, Johannes Weiner wrote: > On Mon, Jun 03, 2013 at 12:48:39PM -0400, Johannes Weiner wrote: > > On Mon, Jun 03, 2013 at 05:34:32PM +0200, Michal Hocko wrote: [...] > > > I am just afraid about all the other archs that do not support (from > > > quick grep it looks like: blac

Re: [PATCH] ARM: ux500: Enable HIGHMEM in the u8540 defconfig

2013-06-04 Thread Linus Walleij
On Fri, May 31, 2013 at 5:09 PM, Lee Jones wrote: > In order to utilise all of the memory located on ux500 based devices > we have to enable HIGHMEM. Without it the kernel truncates memory down > to what's left after the PAGE_OFFSET has been applied, which doesn't > leave an awful lot, especially

Re: [PATCH v2 1/5] arm/xen: define xen_remap as ioremap_cached

2013-06-04 Thread Ian Campbell
On Mon, 2013-06-03 at 16:33 +0100, Stefano Stabellini wrote: > Define xen_remap as ioremap_cache (MT_MEMORY and MT_DEVICE_CACHED end up > having the same AttrIndx encoding). The entries in static struct mem_type mem_types[] look entirely different to me. What am I missing? [MT_DEVICE_CACH

[PATCH 4/6] perf gtk/hists: Make column headers resizable

2013-06-04 Thread Namhyung Kim
From: Namhyung Kim Sometimes it's annoying to see when some symbols have very wierd long names. So it might be a good idea to make column size changable. Reviewed-by: Pekka Enberg Signed-off-by: Namhyung Kim --- tools/perf/ui/gtk/hists.c | 11 --- 1 file changed, 8 insertions(+), 3 d

[PATCH 5/6] perf gtk/hists: Add a double-click handler for callchains

2013-06-04 Thread Namhyung Kim
From: Namhyung Kim If callchain is displayed, add "row-activated" signal handler for handling double-click or pressing ENTER key action. Reviewed-by: Pekka Enberg Signed-off-by: Namhyung Kim --- tools/perf/ui/gtk/hists.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/tool

[PATCH 6/6] perf gtk/hists: Set rules hint for the hist browser

2013-06-04 Thread Namhyung Kim
From: Namhyung Kim The 'rules' means that every second line of the tree view has a shaded background, which makes it easier to see which cell belongs to which row in the tree view. It can be useful for a tree view that has a lot of rows. Cc: Pekka Enberg Signed-off-by: Namhyung Kim --- tools

[PATCH 3/6] perf gtk/hists: Display callchain overhead also

2013-06-04 Thread Namhyung Kim
From: Namhyung Kim Display callchain percent value in the overhead column. Cc: Pekka Enberg Signed-off-by: Namhyung Kim --- tools/perf/ui/gtk/hists.c | 27 --- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/tools/perf/ui/gtk/hists.c b/tools/perf/ui/gtk/

[PATCHSET 0/6] perf report: Add support for callchains on GTK browser (v2)

2013-06-04 Thread Namhyung Kim
Hi, This patchset implements callchain support in GTK report browser as Pekka requested. Please take a look and give me comments. v2 changes) * fix a bug on percent calculation of children nodes * show topmost symbol only when multiple paths exist for a node * add alternating background color

[PATCH 2/6] perf gtk/hists: Add support for callchains

2013-06-04 Thread Namhyung Kim
From: Namhyung Kim Display callchain information in the symbol column. It's only enabled when recorded with -g and has symbol sort key. Cc: Pekka Enberg Signed-off-by: Namhyung Kim --- tools/perf/ui/gtk/hists.c | 65 +++ 1 file changed, 65 insertio

  1   2   3   4   5   6   7   8   9   10   >