Re: [RFC Part1 PATCH 00/20 v2] Add namespace support for audit

2013-12-04 Thread Gao feng
Hi On 10/24/2013 03:31 PM, Gao feng wrote: Here is the v1 patchset: http://lwn.net/Articles/549546/ The main target of this patchset is allowing user in audit namespace to generate the USER_MSG type of audit message, some userspace tools need to generate audit message, or these tools will

Re: [PATCH 00/41] percpu: Consistent per cpu operations V1

2013-12-04 Thread Ingo Molnar
* Christoph Lameter c...@linux.com wrote: The kernel has never been audited to ensure that this_cpu operations are consistently used throughout the kernel. The code generated in many places can be improved through the use of this_cpu operations (which uses a segment register for

Re: [PATCH RFC] mm readahead: Fix the readahead fail in case of empty numa node

2013-12-04 Thread Andrew Morton
On Wed, 04 Dec 2013 14:00:09 +0530 Raghavendra K T raghavendra...@linux.vnet.ibm.com wrote: I don't recall the rationale for the current code and of course we didn't document it. It might be in the changelogs somewhere - could you please do the git digging and see if you can find out?

Re: [PATCH -tip v4 0/6] kprobes: introduce NOKPROBE_SYMBOL() and fixes crash bugs

2013-12-04 Thread Sandeepa Prabhu
On 4 December 2013 13:09, Masami Hiramatsu masami.hiramatsu...@hitachi.com wrote: (2013/12/04 11:54), Sandeepa Prabhu wrote: On 4 December 2013 06:58, Masami Hiramatsu masami.hiramatsu...@hitachi.com wrote: Hi, Here is the version 4 of NOKPORBE_SYMBOL series. In this version, I removed the

Re: [PATCH -tip v4 0/6] kprobes: introduce NOKPROBE_SYMBOL() and fixes crash bugs

2013-12-04 Thread Ingo Molnar
* Masami Hiramatsu masami.hiramatsu...@hitachi.com wrote: Hi, Here is the version 4 of NOKPORBE_SYMBOL series. In this version, I removed the cleanup patches and add bugfixes I've found, since those bugs will be critical. Rest of the cleanup and visible blacklists will be proposed later

Re: [PATCH] net: mac80211: tx.c: be sure of 'sdata-vif.type' must be NL80211_IFTYPE_AP when be in NL80211_IFTYPE_AP case

2013-12-04 Thread Johannes Berg
On Wed, 2013-12-04 at 16:41 +0800, Chen Gang wrote: According to our original discussion, it seems we agree that I am not the suitable member to finish it, so I suggest you or another members to try. There's nothing to finish here. The code is fine. The compiler is wrong, but we haven't found

Re: [PATCH] atmel_lcdfb: fix module autoload

2013-12-04 Thread Tomi Valkeinen
On 2013-12-02 20:25, Nicolas Ferre wrote: On 22/10/2013 18:36, Johan Hovold : Add missing module device table which is needed for module autoloading. Signed-off-by: Johan Hovold jhov...@gmail.com Acked-by: Nicolas Ferre nicolas.fe...@atmel.com Jean-Christophe, Tomi, Can you please

Re: [tip:x86/urgent] x86-64, build: Always pass in -mno-sse

2013-12-04 Thread Ingo Molnar
* tip-bot for H. Peter Anvin tip...@zytor.com wrote: Commit-ID: 5551a34e5aeab868f8d37f70d8754868921b4ee5 Gitweb: http://git.kernel.org/tip/5551a34e5aeab868f8d37f70d8754868921b4ee5 Author: H. Peter Anvin h...@linux.intel.com AuthorDate: Wed, 20 Nov 2013 13:31:49 -0800 Committer: H.

Re: [PATCH] net: mac80211: tx.c: be sure of 'sdata-vif.type' must be NL80211_IFTYPE_AP when be in NL80211_IFTYPE_AP case

2013-12-04 Thread Chen Gang
On 12/04/2013 04:49 PM, Johannes Berg wrote: On Wed, 2013-12-04 at 16:41 +0800, Chen Gang wrote: According to our original discussion, it seems we agree that I am not the suitable member to finish it, so I suggest you or another members to try. There's nothing to finish here. The code is

Re: Regression due to 0c44c2d0f459 x86: Use asm goto to implement better modify_and_test() functions

2013-12-04 Thread Ingo Molnar
* H. Peter Anvin h...@zytor.com wrote: Hi guys, 0c44c2d0f459 x86: Use asm goto to implement better modify_and_test() functions causes a regression, because it incorrectly changed the constraints of bitops. Specifically, the GEN_BINARY_RMWcc() hardcodes a constraint as er, but it

[PATCH] perf/x86: fix bug in event constraint end marker macro

2013-12-04 Thread Stephane Eranian
[repost because typo in Ingo's email address] The EVENT_CONSTRAINT_END macro defines the end marker as a constraint with a weight of zero. This was all fine until we blacklisted the corrupting memory events on Intel IvyBridge. These events are blacklisted by using a counter bitmask of zero. Thus,

Re: [PATCH RFC] mm readahead: Fix the readahead fail in case of empty numa node

2013-12-04 Thread Raghavendra K T
On 12/04/2013 02:11 PM, Andrew Morton wrote: On Wed, 04 Dec 2013 14:00:09 +0530 Raghavendra K T raghavendra...@linux.vnet.ibm.com wrote: Unfaortunately, from my search, I saw that the code belonged to pre git time, so could not get much information on that. Here:

Re: [PATCH] perf/x86: fix bug in event constraint end marker macro

2013-12-04 Thread Ingo Molnar
* Stephane Eranian eran...@google.com wrote: #define EVENT_CONSTRAINT_END \ - EVENT_CONSTRAINT(0, 0, 0) + { .idxmsk64 = 0,\ + .code = 0,\ + .cmask = 0, \ + .weight = -1, \ +

Re: [PATCH 4/4] sched: bias to target cpu load to reduce task moving

2013-12-04 Thread Yuanhan Liu
On Tue, Dec 03, 2013 at 05:05:56PM +0800, Alex Shi wrote: Task migration happens when target just a bit less then source cpu load. To reduce such situation happens, aggravate the target cpu load with sd-imbalance_pct/100. This patch removes the hackbench thread regression on Daniel's Intel

Re: [PATCH] vmcore: call remap_pfn_range() separately for respective partial pages

2013-12-04 Thread HATAYAMA Daisuke
(2013/12/04 0:12), Vivek Goyal wrote: On Tue, Dec 03, 2013 at 02:16:35PM +0900, HATAYAMA Daisuke wrote: [..] Even if copying partial pages into the 2nd kernel, we need to use ioremap() once on them, and I think the ioremap() is exactly similar to remap_pfn_range() for a single page. There

Re: [PATCH v2 2/6] x86: Add Intel graphics stolen memory quirk for gen2 platforms

2013-12-04 Thread Ingo Molnar
* ville.syrj...@linux.intel.com ville.syrj...@linux.intel.com wrote: v2: Rewrite to use the TOM-TSEG_SIZE-stolen_size and TOUD methods I guess v2 is a reaction to my review feedback? I got no reply to my mail from you so I'm not sure and I'd like to know whether all feedback was addressed.

Re: [PATCH 3/4] usb: chipidea: msm: Initialize offset of the capability registers

2013-12-04 Thread Ivan T. Ivanov
On Wed, 2013-12-04 at 13:43 +0800, Peter Chen wrote: On Mon, Nov 11, 2013 at 03:35:36PM +0200, Ivan T. Ivanov wrote: From: Ivan T. Ivanov iiva...@mm-sol.com The commit log is needed. Will fix it. Regards, Ivan Signed-off-by: Ivan T. Ivanov iiva...@mm-sol.com ---

Re: [PATCH] cpuidle: Check for dev before deregistering it.

2013-12-04 Thread Daniel Lezcano
On 12/03/2013 10:33 PM, Rafael J. Wysocki wrote: On Tuesday, December 03, 2013 10:59:58 AM Konrad Rzeszutek Wilk wrote: If not, we could end up in the unfortunate situation where we dereference a NULL pointer b/c we have cpuidle disabled. This is the case when booting under Xen (which uses the

Re: [GIT PULL v2] dynticks updates for 3.14

2013-12-04 Thread Ingo Molnar
* Frederic Weisbecker fweis...@gmail.com wrote: Ingo, Please pull the timers/core-v2 branch that can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/frederic/linux-dynticks.git timers/core-v2 It's a rebase of the previous pull request against 3.13-rc2 which addresses

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

2013-12-04 Thread Ingo Molnar
* Arnaldo Carvalho de Melo a...@infradead.org wrote: From: Arnaldo Carvalho de Melo a...@ghostprotocols.net Hi Ingo, Please consider pulling, - Arnaldo The following changes since commit 0ed1e0bee0b2c6b4cc6d7a63787739a9d3ac8aa8: Merge tag 'perf-core-for-mingo' of

Re: [PATCH] mutexes: Add CONFIG_DEBUG_MUTEX_FASTPATH=y debug variant to debug SMP races

2013-12-04 Thread Simon Kirby
On Tue, Dec 03, 2013 at 10:10:29AM -0800, Linus Torvalds wrote: On Tue, Dec 3, 2013 at 12:52 AM, Ingo Molnar mi...@kernel.org wrote: I'd expect such bugs to be more prominent with unlucky object size/alignment: if mutex-count lies on a separate cache line from mutex-wait_lock. I doubt

[PATCH 1/2] usb: chipidea: fix mistake in device tree binding of nspire-usb to use vendor name 'lsi' instead of SoC name 'zevio'

2013-12-04 Thread dt . tangr
From: Daniel Tang dt.ta...@gmail.com The SoC name was mistakenly used instead of the vendor name in the device tree binding for nspire-usb. This patch fixes this before the driver becomes widely adopted. Signed-off-by: Daniel Tang dt.ta...@gmail.com ---

[PATCH 2/2] arm: nspire: modify device tree to use the nspire-usb driver

2013-12-04 Thread dt . tangr
From: Daniel Tang dt.ta...@gmail.com This patch adds the needed compatible key to the device tree for TI-Nspires. Signed-off-by: Daniel Tang dt.ta...@gmail.com --- arch/arm/boot/dts/nspire.dtsi |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/boot/dts/nspire.dtsi

Re: [PATCH v3 1/3] mfd: tps6586x: add version detection

2013-12-04 Thread Thierry Reding
On Tue, Dec 03, 2013 at 08:57:27PM +0100, Stefan Agner wrote: Use the VERSIONCRC to determine the exact device version. According to the datasheet this register can be used as device identifier. The identification is needed since some tps6586x regulators use a different voltage table.

Re: [RFC PATCH tip 3/5] Extended BPF (64-bit BPF) design document

2013-12-04 Thread Ingo Molnar
* Alexei Starovoitov a...@plumgrid.com wrote: It's possible to teach it for multi-level, but then analyzer will become too large and won't be suitable for kernel. Btw., even if we want to start simple with most things, the above statement is not actually true in the broad sense: the

[PATCH 1/2] macvtap: update file current position

2013-12-04 Thread Zhi Yong Wu
From: Zhi Yong Wu wu...@linux.vnet.ibm.com Signed-off-by: Zhi Yong Wu wu...@linux.vnet.ibm.com --- drivers/net/macvtap.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/net/macvtap.c b/drivers/net/macvtap.c index 9093004..957cc5c 100644 ---

[PATCHv2 1/2] clocksource: zevio-timer: fix compile-time warnings

2013-12-04 Thread dt . tangr
From: Daniel Tang dt.ta...@gmail.com Fix incorrect function definition of zevio_timer_add so the correct function pointer is passed to CLOCKSOURCE_OF_DECLARE. Signed-off-by: Daniel Tang dt.ta...@gmail.com --- drivers/clocksource/zevio-timer.c | 19 +-- 1 file changed, 9

Re: [Xen-devel] [PATCH RFC] xen-block: correctly define structures in public headers

2013-12-04 Thread Ian Campbell
On Tue, 2013-12-03 at 15:11 -0500, Konrad Rzeszutek Wilk wrote: If Konrad and Boris agree that breaking the kernel's ABI in this way is acceptable in this specific case, I'll defer to them. My opinion as Xen on ARM hypervisor maintainer is that this is the right thing to do in this

[PATCH 2/2] macvtap: remove unused paramter in macvtap_do_read()

2013-12-04 Thread Zhi Yong Wu
From: Zhi Yong Wu wu...@linux.vnet.ibm.com Signed-off-by: Zhi Yong Wu wu...@linux.vnet.ibm.com --- drivers/net/macvtap.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/macvtap.c b/drivers/net/macvtap.c index 957cc5c..c0d412e 100644 ---

[PATCHv2 2/2] arm: nspire: fix compile-time warnings

2013-12-04 Thread dt . tangr
From: Daniel Tang dt.ta...@gmail.com Fix nspire_restart to take enum reboot_mode instead of a char so the correct function pointer is passed to DT_MACHINE_START. Signed-off-by: Daniel Tang dt.ta...@gmail.com --- arch/arm/mach-nspire/nspire.c | 2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH v3 2/3] regulator: tps6586x: add and use correct voltage table

2013-12-04 Thread Thierry Reding
On Tue, Dec 03, 2013 at 08:57:28PM +0100, Stefan Agner wrote: [...] Changes since v2: - Removed reg_ from reg_version - Moved walk through version dependent tables to find_regulator_info, removed the inline definition. This reduces .o size and encapsulates the logic of finding the

Re: [RFC PATCH tip 0/5] tracing filters with BPF

2013-12-04 Thread Ingo Molnar
* Alexei Starovoitov a...@plumgrid.com wrote: On Tue, Dec 3, 2013 at 1:16 AM, Ingo Molnar mi...@kernel.org wrote: Very cool! (Added various other folks who might be interested in this to the Cc: list.) I have one generic concern: It would be important to make it easy to extract

Re: [PATCHv2 RESEND] irqchip: Add support for TI-NSPIRE irqchip

2013-12-04 Thread Daniel Tang
Hi, I've noticed this patch hasn't gotten a reply for a while now. Just wondering what's the status of this patch and whether there is anything else I should fix before this can get accepted. Cheers, Daniel Tang On 25/11/2013, at 3:02 PM, dt.ta...@gmail.com wrote: From: Daniel Tang

Re: [PATCH 4/4] usb: chipidea: msm: Use USB PHY API to control PHY state

2013-12-04 Thread Ivan T. Ivanov
Hi Peter, On Wed, 2013-12-04 at 13:37 +0800, Peter Chen wrote: On Mon, Nov 11, 2013 at 04:36:09PM +0200, Ivan T. Ivanov wrote: Hi Peter, On Mon, 2013-11-11 at 21:59 +0800, Peter Chen wrote: On Mon, Nov 11, 2013 at 03:35:37PM +0200, Ivan T. Ivanov wrote: From: Ivan T. Ivanov

Re: [PATCH] xen/pvhvm: If xen_platform_pci=0 is set don't blow up.

2013-12-04 Thread Ian Campbell
On Tue, 2013-12-03 at 16:14 -0500, Konrad Rzeszutek Wilk wrote: The user has the option of disabling the platform driver: 00:02.0 Unassigned class [ff80]: XenSource, Inc. Xen Platform Device (rev 01) which is used to unplug the emulated drivers (IDE, Realtek 8169, etc) and allow the PV

Re: [PATCH 1/3] clk: bcm281xx: define kona clock binding

2013-12-04 Thread Mark Rutland
On Wed, Dec 04, 2013 at 03:56:58AM +, Alex Elder wrote: Document the device tree binding for Broadcom Kona architecture clock control units and clocks. Kona device nodes are represented with compatible strings having bcm11351 in their name. Kona clocks are managed by clock control units

Re: [PATCH v2] OF: base: match each node compatible against all given matches first

2013-12-04 Thread Thierry Reding
On Tue, Dec 03, 2013 at 11:55:07PM +0100, Sebastian Hesselbarth wrote: On 12/03/2013 09:14 PM, Meelis Roos wrote: Currently, of_match_node compares each given match against all node's compatible strings with of_device_is_compatible. To achieve multiple compatible strings per node with

Re: [Xen-devel] [PATCH RFC] xen-block: correctly define structures in public headers

2013-12-04 Thread Roger Pau Monné
On 04/12/13 10:28, Ian Campbell wrote: On Tue, 2013-12-03 at 15:11 -0500, Konrad Rzeszutek Wilk wrote: If Konrad and Boris agree that breaking the kernel's ABI in this way is acceptable in this specific case, I'll defer to them. My opinion as Xen on ARM hypervisor maintainer is that this is

I Have a donation for you

2013-12-04 Thread dav.angela9085
I Have a donation for you...Kindly contact me for more details DAVE ANGELA ang_dav...@3mail.ie -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please

Re: [PATCH v4 2/3] regulator: tps6586x: add and use correct voltage table

2013-12-04 Thread Thierry Reding
On Tue, Dec 03, 2013 at 11:18:47PM +0100, Stefan Agner wrote: [...] diff --git a/drivers/regulator/tps6586x-regulator.c b/drivers/regulator/tps6586x-regulator.c [...] + /* Search version specific table first */ + if (table) { + for (i = 0; i num; i++) { +

Re: [PATCH 3/3] usb: phy-generic: Add ULPI VBUS support

2013-12-04 Thread Heikki Krogerus
Hi Chris, On Wed, Dec 04, 2013 at 03:16:21PM +0800, Chris Ruehl wrote: On Tuesday, December 03, 2013 04:15 PM, Heikki Krogerus wrote: On Mon, Dec 02, 2013 at 03:05:19PM +0800, Chris Ruehl wrote: @@ -154,6 +164,27 @@ int usb_phy_gen_create_phy(struct device *dev, struct usb_phy_gen_xceiv

[PATCH 0/5] perf tools: some update for perf tool.

2013-12-04 Thread Dongsheng Yang
Hi all, When I read the code and document of perf tool as a newbie, I feel confused in some places. Then I made some patches here to make them more clear. Please help to review them. Note: The last 3 commits are all about perf-kvm.txt. I splite them to make the logic more clear.

[PATCH 5/5] perf tool: Fix a type of '=' in Document of perf-kvm.

2013-12-04 Thread Dongsheng Yang
As option --host and --guest request no input for it, there should not be a '=' after them in Document. And --output request a filename as the input, so there should be a '=' after it. This patch remove the wrong '=' after --guest and --host, and add a '=' after --output in perf-kvm.txt.

[PATCH 4/5] perf tools: Add more detail about buildid-list in Document of perf-kvm.

2013-12-04 Thread Dongsheng Yang
As the buildid is read from /sys/kernel/notes, then if we use perf kvm buildid-list with a perf data file captured by perf kvm record with --guestkallsyms and --guestmodules, there is no result in output. This patch add a explanation about it and add a limit of using perf kvm buildid-list.

[PATCH 1/5] perf tools: Remove condition in machine__get_kernel_start_addr.

2013-12-04 Thread Dongsheng Yang
In machine__get_kernel_start_addr, the code, which is using machine-root_dir to build filename, works for both host and guests initialized from guestmount. So this patch remove the branch for machine__is_host. Signed-off-by: Dongsheng Yang yangds.f...@cn.fujitsu.com --- tools/perf/util/machine.c

[PATCH 3/5] perf tools: Update the Document for perf kvm record for new behavior.

2013-12-04 Thread Dongsheng Yang
As we have changed the default behavior of perf kvm to --guest enabled, the document about perf kvm record is outdated. This patch update it to show the correct output with --host/--guest/neither/both of them. Signed-off-by: Dongsheng Yang yangds.f...@cn.fujitsu.com ---

Re: [PATCH 1/3] perf tools: Record total sampling time

2013-12-04 Thread Ingo Molnar
* David Ahern dsah...@gmail.com wrote: On 12/2/13, 10:44 PM, Namhyung Kim wrote: Right now 'perf stat -i' i used for '--no-inherit', perhaps we can just have --no-inherit have no short option and grab -i to have the same meaning as in 'report', 'script', etc. Agreed. Maybe we could

Re: [PATCH 1/6] GenWQE PCI support, health monitoring and recovery

2013-12-04 Thread Frank Haverkamp
Hi Arnd, thanks for helping to review the code. Am Dienstag, den 03.12.2013, 16:05 +0100 schrieb Arnd Bergmann: On Tuesday 03 December 2013, Frank Haverkamp wrote: Ohh, sorry __u64 of course: /* common struct for chip image exchange */ struct genwqe_bitstream { __u64

[PATCH 2/5] perf tools: Move the checking of which map function to call into function.

2013-12-04 Thread Dongsheng Yang
Check for cpu_map__dummy_new() or cpu_map__new() to be called in perf_evlist__create_maps() is more complicated. This patch moves the checking work into target.h, combining two conditions and making perf_evlist__create_maps() more readable. Signed-off-by: Dongsheng Yang yangds.f...@cn.fujitsu.com

Re: [PATCH v2 0/3] ARM: OMAP2+: USB Host bug fixes for 3.13 rc

2013-12-04 Thread Tomi Valkeinen
On 2013-12-03 16:25, Roger Quadros wrote: Hi, This is a follow up solution to the original series in [1] The first patch fixes the OMAP4 Panda USB detection problems on 3.13-rc1 with u-boot v2013.10. The remaining 2 patches are required if SOFTRESET needs to be done for the USB Host

Re: [PATCHv6 05/13] iommu/core: add ops-{bound,unbind}_driver()

2013-12-04 Thread Will Deacon
Hi Hiroshi, On Wed, Dec 04, 2013 at 07:40:27AM +, Hiroshi Doyu wrote: On Mon, 25 Nov 2013 14:49:37 +0100 Hiroshi Doyu hd...@nvidia.com wrote: Hi Joerg, Do you have some time to review this patch along with the following ones? [PATCHv6 02/13] iommu/of: introduce a global

Re: [PATCH 1/3] perf tools: Record total sampling time

2013-12-04 Thread Ingo Molnar
* Arnaldo Carvalho de Melo a...@ghostprotocols.net wrote: Em Mon, Dec 02, 2013 at 05:36:20PM +0100, Ingo Molnar escreveu: * Namhyung Kim namhy...@kernel.org wrote: 2013-12-02 (́›”), 13:57 +0100, Ingo Molnar: So basically, in the end I think it should be possible to have the

Re: [PATCH] usb: phy-tegra-usb.c: wrong pointer check for remap UTMI

2013-12-04 Thread Thierry Reding
On Wed, Dec 04, 2013 at 10:02:44AM +0800, Chris Ruehl wrote: usb: phy-tegra-usb.c: wrong pointer check for remap UTMI A wrong pointer was used to test the result of devm_ioremap() Signed-off-by: Chris Ruehl chris.ru...@gtsys.com.hk Acked-by: Venu Byravarasu vbyravar...@nvidia.com ---

Re: [PATCH 1/6] GenWQE PCI support, health monitoring and recovery

2013-12-04 Thread Frank Haverkamp
Hi, Am Dienstag, den 03.12.2013, 15:28 +0100 schrieb Frank Haverkamp: + */ +struct genwqe_mem { + unsigned long addr; + unsigned long size; + int direction; +}; + +#define GENWQE_PIN_MEM _IOWR(GENWQE_IOC_CODE, 40, struct genwqe_mem *) +#define GENWQE_UNPIN_MEM

Re: [PATCH v8 1/2] PWM: atmel-pwm: add PWM controller driver

2013-12-04 Thread Thierry Reding
On Wed, Dec 04, 2013 at 10:59:46AM +0800, Bo Shen wrote: Hi Thierry, On 12/03/2013 05:43 PM, Thierry Reding wrote: On Tue, Dec 03, 2013 at 11:09:12AM +0800, Bo Shen wrote: On 12/02/2013 06:59 PM, Thierry Reding wrote: On Mon, Nov 18, 2013 at 05:13:21PM +0800, Bo Shen wrote: [...] diff

Re: [PATCH v4 1/3] mfd: tps6586x: add version detection

2013-12-04 Thread Lee Jones
On Wed, 04 Dec 2013, Stefan Agner wrote: Am 2013-12-04 09:10, schrieb Lee Jones: +int tps6586x_get_version(struct device *dev) +{ + struct tps6586x *tps6586x = dev_get_drvdata(dev); + + return tps6586x-version; +} +EXPORT_SYMBOL_GPL(tps6586x_get_version); I thought Mark

Re: [PATCH] memcg: remove KMEM_ACCOUNTED_ACTIVATED

2013-12-04 Thread Glauber Costa
Could you do something clever with just one flag? Probably yes. But I doubt it would be that much cleaner, this is just the way that patching sites work. Thank you for spending your time to listen to me. Don't worry! I thank you for carrying this forward. Let me try to explain what is

[PATCH V7 2/2] arm64: perf: add support for percpu pmu interrupt

2013-12-04 Thread Vinayak Kale
Add support for irq registration when pmu interrupt is percpu. Signed-off-by: Vinayak Kale vk...@apm.com Signed-off-by: Tuan Phan tp...@apm.com --- arch/arm64/kernel/perf_event.c | 108 +--- 1 file changed, 78 insertions(+), 30 deletions(-) diff --git

[PATCH V7 0/2] genirq: arm64: perf: support for percpu pmu interrupt

2013-12-04 Thread Vinayak Kale
This patch series adds support to handle interrupt registration/deregistration in arm64 pmu driver when pmu interrupt type is percpu. Changelog: V7: * In arm64 pmu driver: Instead of passing 'struct arm_pmu' pointer, pass the irq number directly to armpmu_[enable/disable]_percpu_irq().

[PATCH v2 0/4] Add Exynos5 USB 3.0 phy driver based on generic PHY framework

2013-12-04 Thread Vivek Gautam
Adding a phy driver for USB 3.0 PHY controller present on Exynos5 series of SoCs alongwith DWC3 controller for USB 3.0 operations. Few functions used in this driver to translate ref clock rate are common to Kamil's usb2.0 phy driver [1]. So we can figure out how to re-use them across these

[PATCH v2 3/4] dt: exynos5420: Enable support for USB 3.0 PHY controller

2013-12-04 Thread Vivek Gautam
Add device tree nodes for USB 3.0 PHY present alongwith USB 3.0 controller Exynos 5420 SoC. This phy driver is based on generic phy framework. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com --- arch/arm/boot/dts/exynos5420.dtsi | 20 1 files changed, 20

[PATCH V7 1/2] genirq: Add an accessor for IRQ_PER_CPU flag

2013-12-04 Thread Vinayak Kale
This patch adds an accessor function for IRQ_PER_CPU flag. The accessor function is useful to determine whether an IRQ is percpu or not. This patch is based on an older patch posted by Chris Smith here [1]. There is a minor change w.r.t. Chris's original patch: The accessor function is renamed as

Re: [PATCH 3/3] perf report: Add --show-time-info option

2013-12-04 Thread Ingo Molnar
* Arnaldo Carvalho de Melo a...@ghostprotocols.net wrote: Em Mon, Dec 02, 2013 at 12:58:35PM -0700, David Ahern escreveu: On 12/2/13, 12:38 PM, Arnaldo Carvalho de Melo wrote: Can you suggest a better name for the option being discussed? Perhaps one of: --show-event-time

Re: [PATCH v4 2/3] perf diff: color the Ratio column

2013-12-04 Thread Ramkumar Ramachandra
Arnaldo Carvalho de Melo wrote: static inline percent_color_snprintf(...) { return value_color_snprintf(...); } The issue with this suggestion is that the prototype of percent_color_snprintf() is: int percent_color_snprintf(char *bf, size_t size, const char *fmt, ...) So, I can

[PATCH v2 2/4] dt: exynos5250: Enable support for generic USB 3.0 phy

2013-12-04 Thread Vivek Gautam
Update device tree bindings for DWC3 controller and USB 3.0 phy present on Exynos 5250 SoC, to start using the phy driver based on generic phy framework. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com --- arch/arm/boot/dts/exynos5250.dtsi | 16 ++-- 1 files changed, 6

[PATCH v2 4/4] dt: exynos5420: Enable support for DWC3 controller

2013-12-04 Thread Vivek Gautam
Add device tree nodes for DWC3 controller present on Exynos 5420 SoC, to enable support for USB 3.0. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com --- arch/arm/boot/dts/exynos5420.dtsi | 38 +++- 1 files changed, 36 insertions(+), 2 deletions(-) diff

[PATCH v2 1/4] phy: Add new Exynos5 USB 3.0 PHY driver

2013-12-04 Thread Vivek Gautam
Add a new driver for the USB 3.0 PHY on Exynos5 series of SoCs. The new driver uses the generic PHY framework and will interact with DWC3 controller present on Exynos5 series of SoCs. Thereby, removing old phy-samsung-usb3 driver and related code used untill now which was based on usb/phy

Re: [RFC part1 PATCH 7/7] ARM64 / ACPI: Enable ARM64 in Kconfig

2013-12-04 Thread Graeme Gregory
On Wed, Dec 04, 2013 at 12:36:51AM +0800, Hanjun Guo wrote: Add Kconfigs to build ACPI on ARM64, and make ACPI runable on ARM64. acpi_idle driver is x86/IA64 dependent now, so make CONFIG_ACPI_PROCESSOR depends on X86 || IA64, and implement it on ARM in the furture. In order to make

[PATCH] ARM: pxa: Remove unused variables

2013-12-04 Thread Thierry Reding
The conf and of_id variables are assigned but never used, so they may as well just be removed. Signed-off-by: Thierry Reding thierry.red...@gmail.com --- arch/arm/mach-pxa/irq.c | 4 1 file changed, 4 deletions(-) diff --git a/arch/arm/mach-pxa/irq.c b/arch/arm/mach-pxa/irq.c index

Re: [PATCH 3.4 00/60] 3.4.72-stable review

2013-12-04 Thread Satoru Takeuchi
At Mon, 2 Dec 2013 11:05:41 -0800, Greg Kroah-Hartman wrote: This is the start of the stable review cycle for the 3.4.72 release. There are 60 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.

Re: [PATCH 3.10 000/173] 3.10.22-stable review

2013-12-04 Thread Satoru Takeuchi
At Mon, 2 Dec 2013 11:09:43 -0800, Greg Kroah-Hartman wrote: This is the start of the stable review cycle for the 3.10.22 release. There are 173 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.

[PATCH] aio: clean up aio ring in the fail path

2013-12-04 Thread Gu Zheng
Clean up the aio ring file in the fail path of aio_setup_ring and ioctx_alloc. And maybe it can fix the GPF issue reported by Dave Jones: https://lkml.org/lkml/2013/11/25/898 Signed-off-by: Gu Zheng guz.f...@cn.fujitsu.com --- fs/aio.c |8 ++-- 1 files changed, 6 insertions(+), 2

Re: [PATCH] ARM: pxa: Remove unused variables

2013-12-04 Thread Daniel Mack
On 12/04/2013 11:22 AM, Thierry Reding wrote: The conf and of_id variables are assigned but never used, so they may as well just be removed. Signed-off-by: Thierry Reding thierry.red...@gmail.com Acked-by: Daniel Mack zon...@gmail.com --- arch/arm/mach-pxa/irq.c | 4 1 file

Re: [PATCH v2] ARM: davinci: aemif: get rid of davinci-nand driver dependency on aemif

2013-12-04 Thread ivan.khoronzhuk
On 11/29/2013 06:38 AM, Sekhar Nori wrote: On Wednesday 27 November 2013 08:01 PM, Ivan Khoronzhuk wrote: The problem that the set timings code contains the call of Davinci platform function davinci_aemif_setup_timing() which is not accessible if kernel is built for another platform like

Re: [PATCH v4 3/4] pwm: add LP3943 PWM driver

2013-12-04 Thread Thierry Reding
On Wed, Sep 25, 2013 at 01:24:38PM +0900, Milo Kim wrote: This is the other of the LP3943 MFD driver. LP3943 can be used as a PWM generator, up to 2 channels. * Two PWM generators supported * Supported PWM operations request, free, config, enable and disable * Pin assignment A

Re: [PATCHv2 RESEND] irqchip: Add support for TI-NSPIRE irqchip

2013-12-04 Thread Thomas Gleixner
On Mon, 25 Nov 2013, dt.ta...@gmail.com wrote: diff --git a/drivers/irqchip/irq-zevio.c b/drivers/irqchip/irq-zevio.c +static void zevio_irq_ack(struct irq_data *irqd) +{ + struct irq_chip_generic *gc = irq_data_get_irq_chip_data(irqd); + struct irq_chip_regs *regs = +

Re: [PATCH v4 4/4] Documentation: add LP3943 DT bindings and document

2013-12-04 Thread Thierry Reding
On Wed, Sep 25, 2013 at 01:25:09PM +0900, Milo Kim wrote: Bindings for LP3943 MFD, GPIO and PWM controller are added. Cc: devicet...@vger.kernel.org Cc: Lee Jones lee.jo...@linaro.org Cc: Linus Walleij linus.wall...@linaro.org Cc: Samuel Ortiz sa...@linux.intel.com Cc: Thierry Reding

[PATCH V4 05/10] perf, documentation: Description for conditional branch filter

2013-12-04 Thread Anshuman Khandual
Adding documentation support for conditional branch filter. Signed-off-by: Anshuman Khandual khand...@linux.vnet.ibm.com Reviewed-by: Stephane Eranian eran...@google.com --- tools/perf/Documentation/perf-record.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH V4 01/10] perf: Add PERF_SAMPLE_BRANCH_COND

2013-12-04 Thread Anshuman Khandual
POWER8 PMU based BHRB supports filtering for conditional branches. This patch introduces new branch filter PERF_SAMPLE_BRANCH_COND which will extend the existing perf ABI. Other architectures can provide this functionality with either HW filtering support (if present) or with SW filtering of

[PATCH V4 10/10] powerpc, perf: Cleanup SW branch filter list look up

2013-12-04 Thread Anshuman Khandual
This patch adds enumeration for all available SW branch filters in powerpc book3s code and also streamlines the look for the SW branch filter entries while trying to figure out which all branch filters can be supported in SW. Signed-off-by: Anshuman Khandual khand...@linux.vnet.ibm.com ---

[PATCH V4 00/10] perf: New conditional branch filter

2013-12-04 Thread Anshuman Khandual
This patchset is the re-spin of the original branch stack sampling patchset which introduced new PERF_SAMPLE_BRANCH_COND branch filter. This patchset also enables SW based branch filtering support for book3s powerpc platforms which have PMU HW backed branch stack sampling

[PATCH V4 08/10] powerpc, perf: Enable SW filtering in branch stack sampling framework

2013-12-04 Thread Anshuman Khandual
This patch enables SW based post processing of BHRB captured branches to be able to meet more user defined branch filtration criteria in perf branch stack sampling framework. These changes increase the number of branch filters and their valid combinations on any powerpc64 server platform with BHRB

Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator

2013-12-04 Thread Thierry Reding
On Wed, Sep 25, 2013 at 01:22:55PM +0900, Milo Kim wrote: LP3943 is an integrated device capable of driving 16 output channels. It can be used for GPIO expander and PWM generators. LP3493 registers are controlled via the I2C interface. This patch-set consists of four parts - MFD, GPIO, PWM

[PATCH V4 09/10] power8, perf: Change BHRB branch filter configuration

2013-12-04 Thread Anshuman Khandual
Powerpc kernel now supports SW based branch filters for book3s systems with some specifc requirements while dealing with HW supported branch filters in order to achieve overall OR semantics prevailing in perf branch stack sampling framework. This patch adapts the BHRB branch filter configuration

[PATCH V4 06/10] powerpc, perf: Change the name of HW PMU branch filter tracking variable

2013-12-04 Thread Anshuman Khandual
This patch simply changes the name of the variable from bhrb_filter to bhrb_hw_filter in order to add one more variable which will track SW filters in generic powerpc book3s code which will be implemented in the subsequent patch. Signed-off-by: Anshuman Khandual khand...@linux.vnet.ibm.com ---

[PATCH V4 07/10] powerpc, lib: Add new branch instruction analysis support functions

2013-12-04 Thread Anshuman Khandual
Generic powerpc branch instruction analysis support added in the code patching library which will help the subsequent patch on SW based filtering of branch records in perf. This patch also converts and exports some of the existing local static functions through the header file to be used else

[PATCH V4 02/10] powerpc, perf: Enable conditional branch filter for POWER8

2013-12-04 Thread Anshuman Khandual
Enables conditional branch filter support for POWER8 utilizing MMCRA register based filter and also invalidates any BHRB branch filter combination. Signed-off-by: Anshuman Khandual khand...@linux.vnet.ibm.com --- arch/powerpc/perf/power8-pmu.c | 10 ++ 1 file changed, 10 insertions(+)

[PATCH V4 03/10] perf, tool: Conditional branch filter 'cond' added to perf record

2013-12-04 Thread Anshuman Khandual
Adding perf record support for new branch stack filter criteria PERF_SAMPLE_BRANCH_COND. Signed-off-by: Anshuman Khandual khand...@linux.vnet.ibm.com Reviewed-by: Stephane Eranian eran...@google.com --- tools/perf/builtin-record.c | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH V4 04/10] x86, perf: Add conditional branch filtering support

2013-12-04 Thread Anshuman Khandual
This patch adds conditional branch filtering support, enabling it for PERF_SAMPLE_BRANCH_COND in perf branch stack sampling framework by utilizing an available software filter X86_BR_JCC. Signed-off-by: Anshuman Khandual khand...@linux.vnet.ibm.com Reviewed-by: Stephane Eranian eran...@google.com

[PATCH v6 0/3] mfd: max14577: Add max14577 MFD drivers

2013-12-04 Thread Krzysztof Kozlowski
Hi, This is sixth version of patchset adding drivers for MAXIM 14577 chip. Some parts (MFD, extcon) were already merged by maintainers so I removed them from the patchset. This version of patchset depends on the max14577 MFD core driver: - mfd: max14577: Add max14577 MFD driver core Merged

[PATCH v6 1/3] charger: max14577: Add charger support for Maxim 14577

2013-12-04 Thread Krzysztof Kozlowski
MAX14577 chip is a multi-function device which includes MUIC, charger and voltage regulator. The driver is located in drivers/mfd. This patch supports battery charging control of MAX14577 chip and provides power supply class information to userspace. Signed-off-by: Krzysztof Kozlowski

[PATCH v6 3/3] mfd: max14577: Add device tree bindings document

2013-12-04 Thread Krzysztof Kozlowski
Add document describing device tree bindings for MAX14577 MFD driver. Signed-off-by: Krzysztof Kozlowski k.kozlow...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- Documentation/devicetree/bindings/mfd/max14577.txt | 48 1 file changed, 48

[PATCH v6 2/3] regulator: max14577: Add regulator driver for Maxim 14577

2013-12-04 Thread Krzysztof Kozlowski
MAX14577 chip is a multi-function device which includes MUIC, charger and voltage regulator. The driver is located in drivers/mfd. This patch adds regulator driver for MAX14577 chip. There are two regulators in this chip: 1. Safeout LDO with constant voltage output of 4.9V. It can be only

Re: [PATCH] xen/pvhvm: If xen_platform_pci=0 is set don't blow up.

2013-12-04 Thread Stefano Stabellini
On Tue, 3 Dec 2013, Konrad Rzeszutek Wilk wrote: diff --git a/arch/x86/xen/platform-pci-unplug.c b/arch/x86/xen/platform-pci-unplug.c index 0a78524..087dfeb 100644 --- a/arch/x86/xen/platform-pci-unplug.c +++ b/arch/x86/xen/platform-pci-unplug.c @@ -69,6 +69,24 @@ static int

Re: [PATCH v6 3/3] mfd: max14577: Add device tree bindings document

2013-12-04 Thread Chanwoo Choi
Hi Krzysztof, On 12/04/2013 07:40 PM, Krzysztof Kozlowski wrote: Add document describing device tree bindings for MAX14577 MFD driver. Signed-off-by: Krzysztof Kozlowski k.kozlow...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---

Re: [PATCH v2] pinctrl: baytrail: lock IRQs when starting them

2013-12-04 Thread Mika Westerberg
On Tue, Dec 03, 2013 at 06:02:18PM +0200, Mathias Nyman wrote: On 12/03/2013 05:00 PM, Linus Walleij wrote: This uses the new API for tagging GPIO lines as in use by IRQs. This enforces a few semantic checks on how the underlying GPIO line is used. Cc: Andy Shevchenko

Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator

2013-12-04 Thread Lee Jones
LP3943 is an integrated device capable of driving 16 output channels. It can be used for GPIO expander and PWM generators. LP3493 registers are controlled via the I2C interface. This patch-set consists of four parts - MFD, GPIO, PWM and documents. Update from v3 to v4: Move the

Re: [PATCH] xen/pvhvm: If xen_platform_pci=0 is set don't blow up.

2013-12-04 Thread Stefano Stabellini
On Wed, 4 Dec 2013, Ian Campbell wrote: +bool xen_has_pv_devices(void) +{ + if (!xen_domain()) + return false; + + if (xen_hvm_domain()) { + /* User requested no unplug, so no PV drivers. */ + if (xen_emul_unplug XEN_UNPLUG_NEVER) +

Re: [PATCH v6 3/3] mfd: max14577: Add device tree bindings document

2013-12-04 Thread Krzysztof Kozlowski
On Wed, 2013-12-04 at 19:50 +0900, Chanwoo Choi wrote: Hi Krzysztof, On 12/04/2013 07:40 PM, Krzysztof Kozlowski wrote: Add document describing device tree bindings for MAX14577 MFD driver. Signed-off-by: Krzysztof Kozlowski k.kozlow...@samsung.com Signed-off-by: Kyungmin Park

Re: [PATCH] xen/pvhvm: If xen_platform_pci=0 is set don't blow up.

2013-12-04 Thread Ian Campbell
On Wed, 2013-12-04 at 10:51 +, Stefano Stabellini wrote: On Wed, 4 Dec 2013, Ian Campbell wrote: +bool xen_has_pv_devices(void) +{ + if (!xen_domain()) + return false; + + if (xen_hvm_domain()) { + /* User requested no unplug, so no PV drivers. */ +

<    4   5   6   7   8   9   10   11   12   13   >