[PATCH v9 03/11] perf, tools, list: Update perf list to output descriptions

2015-04-13 Thread Sukadev Bhattiprolu
From: Andi Kleen Add support to perf list to print aliases with descriptions. Support word wrapping for descriptions. Fix up the sorting code to put aliases with descriptions last. Signed-off-by: Andi Kleen Signed-off-by: Sukadev Bhattiprolu --- Changelov[v9] by Sukadev Bhattiprolu Re

[PATCH v9 01/11] perf, tools: Add jsmn `jasmine' JSON parser

2015-04-13 Thread Sukadev Bhattiprolu
From: Andi Kleen I need a JSON parser. This adds the simplest JSON parser I could find -- Serge Zaitsev's jsmn `jasmine' -- to the perf library. I merely converted it to (mostly) Linux style and added support for non 0 terminated input. The parser is quite straight forward and does not copy any

[PATCH v9 00/11] Add support for JSON event files.

2015-04-13 Thread Sukadev Bhattiprolu
This is another attempt to resurrect Andi Kleen's patchset so users can specify perf events by their event names rather than raw codes. This is a rebase of Andi Kleen's patchset from Jul 30, 2014[1] to 4.0. (I fixed minor and not so minor conflicts). This patchset includes the perf-download tool

[PATCH v9 07/11] perf, tools: Query terminal width and use in perf list

2015-04-13 Thread Sukadev Bhattiprolu
From: Andi Kleen Automatically adapt the now wider and word wrapped perf list output to wider terminals. This requires querying the terminal before the auto pager takes over, and exporting this information from the pager subsystem. Acked-by: Namhyung Kim Signed-off-by: Andi Kleen Signed-off-by

Re: [PATCH 0/3] dm-crypt: Adds support for wiping key when doing suspend/hibernation

2015-04-13 Thread Pavel Machek
On Thu 2015-04-09 09:12:08, Mike Snitzer wrote: > On Mon, Apr 06 2015 at 9:29am -0400, > Pali Rohár wrote: > > > On Monday 06 April 2015 15:00:46 Mike Snitzer wrote: > > > On Sun, Apr 05 2015 at 1:20pm -0400, > > > > > > Pali Rohár wrote: > > > > This patch series increase security of suspend

[PATCH v9 08/11] perf, tools: Add a new pmu interface to iterate over all events

2015-04-13 Thread Sukadev Bhattiprolu
From: Andi Kleen With calling a callback. To be used in test code added in the next patch. Signed-off-by: Andi Kleen Signed-off-by: Sukadev Bhattiprolu --- Changelog[v9] by Sukadev Bhattiprolu Rebase to 4.0 and fix conflicts in: tools/perf/util/pmu.c too

[PATCH v9 04/11] perf, tools: Add support for reading JSON event files

2015-04-13 Thread Sukadev Bhattiprolu
From: Andi Kleen Add a parser for Intel style JSON event files. This allows to use an Intel event list directly with perf. The Intel event lists can be quite large and are too big to store in unswappable kernel memory. The parser code knows how to convert the JSON fields to perf fields. The conv

Re: [PATCH v5 10/10] module: Rework module_addr_{min,max}

2015-04-13 Thread Peter Zijlstra
On Tue, Apr 14, 2015 at 12:25:45PM +0930, Rusty Russell wrote: > Ingo Molnar writes: > > * Peter Zijlstra wrote: > > > >> __module_address() does an initial bound check before doing the > >> {list/tree} iteration to find the actual module. The bound variables > >> are nowhere near the mod_tree

Re: [PATCH v5 00/10] latched RB-trees and __module_address()

2015-04-13 Thread Peter Zijlstra
On Tue, Apr 14, 2015 at 12:27:05PM +0930, Rusty Russell wrote: > I was tempted to sneak in those module rcu fixes for 4.1, but seeing > Ingo's comments I'll wait for 4.2. I can get you a new version of that if you want. See below. The fixups are unmodified of the posting (patches 2,3). --- Subje

Re: [Linux-nvdimm] [GIT PULL] PMEM driver for v4.1

2015-04-13 Thread Boaz Harrosh
On 04/13/2015 08:19 PM, Christoph Hellwig wrote: > On Mon, Apr 13, 2015 at 02:11:56PM +0300, Yigal Korman wrote: >> mlock() > > DAX files always are in-memory so this just sounds like an oversight. > method. Yes mlock on DAX can just return true, but mlock implies MAP_POPULATE. Which means "I wo

[PATCH v9 10/11] perf, tools: Add a --no-desc flag to perf list

2015-04-13 Thread Sukadev Bhattiprolu
From: Andi Kleen Add a --no-desc flag to perf list to not print the event descriptions that were earlier added for JSON events. This may be useful to get a less crowded listing. It's still default to print descriptions as that is the more useful default for most users. Before: % perf list ...

[PATCH v9 09/11] perf, tools, test: Add test case for alias and JSON parsing

2015-04-13 Thread Sukadev Bhattiprolu
From: Andi Kleen Add a simple test case to perf test that parses all the available events, including json events. This needs adding an all event iterator to pmu.c Acked-by: Namhyung Kim Signed-off-by: Andi Kleen Signed-off-by: Sukadev Bhattiprolu --- Changelog[v9] by Sukadev Bhattiprolu

[PATCH v9 11/11] perf-download: Download the events json file

2015-04-13 Thread Sukadev Bhattiprolu
Add a downloader to automatically download the right files from a download site. This is implemented as a script calling curl, similar to perf archive. The perf driver automatically calls the right binary. The downloader is extensible, but currently only implements an Intel and Powerpc event downl

[PATCH v9 02/11] perf, tools: Add support for text descriptions of events and alias add

2015-04-13 Thread Sukadev Bhattiprolu
From: Andi Kleen Change pmu.c to allow descriptions of events and add interfaces to add aliases at runtime from another file. To be used by jevents in a followon patch Acked-by: Namhyung Kim Signed-off-by: Andi Kleen Signed-off-by: Sukadev Bhattiprolu --- Changelog[v9] by Sukadev Bhattiprolu

[PATCH v9 05/11] perf, tools: Automatically look for event file name for cpu

2015-04-13 Thread Sukadev Bhattiprolu
From: Andi Kleen When no JSON event file is specified automatically look for a suitable file in ~/.cache/pmu-events. The event file format is per architecture, but can be extended for other architectures. Acked-by: Namhyung Kim Signed-off-by: Andi Kleen Signed-off-by: Sukadev Bhattiprolu ---

Re: [PATCH v6 2/2] memory: pl353: Add driver for arm pl353 static memory controller

2015-04-13 Thread punnaiah choudary kalluri
Hi Paul Bolle On Tue, Apr 14, 2015 at 12:19 AM, Paul Bolle wrote: > On Mon, 2015-04-13 at 21:41 +0530, Punnaiah Choudary Kalluri wrote: >> --- a/drivers/memory/Kconfig >> +++ b/drivers/memory/Kconfig > >> +config PL353_SMC >> + bool "ARM PL353 Static Memory Controller (SMC) driver" >> + d

Re: [PATCH RESEND v6 4/6] regulator: axp20x: add support for AXP22X regulators

2015-04-13 Thread Lee Jones
On Fri, 10 Apr 2015, Mark Brown wrote: > On Fri, Apr 10, 2015 at 12:09:04PM +0800, Chen-Yu Tsai wrote: > > > This patch depends on the previous patch "regulator: axp20x: prepare > > support for multiple AXP chip families" and the mfd header from the > > first patch "mfd: axp20x: add AXP22x PMIC s

[PATCH v9 06/11] powerpc/perf: Implement get_cpu_str()

2015-04-13 Thread Sukadev Bhattiprolu
With a file ~/.cache/pmu-events/004d0100-core.json describing Power8 PMU events we would need to run: perf stat \ --events-file ~/.cache/pmu-events/004d0100-core.json \ -e pm_cyc sleep 1 With this get_cpu_str(), on Powerpc, we can skip the --events-file opt

[GIT PULL] s390 patches for the 4.1 merge window

2015-04-13 Thread Martin Schwidefsky
Hi Linus, please pull from the 'for-linus' branch of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git for-linus to receive the following updates: The major change in this merge is the removal of the support for 31-bit kernels. Naturally 31-bit user space will continue to wor

Re: [PATCH] spi: bcm2835: Add GPIOLIB dependency

2015-04-13 Thread Martin Sperl
> On 14.04.2015, at 06:24, Guenter Roeck wrote: > > by adding the now mandatory GPIOLIB dependency. > Note this shows up during automated randconfig testing. > Fixes: a30a555d7435 ("spi: bcm2835: transform native-cs to gpio-cs > on first spi_setup") > Cc: Martin Sperl > Signed-off-by: G

Re: [PATCH] hso: fix refcnt leak in recent patch.

2015-04-13 Thread Olivier Sobrie
Hello Neil, On Tue, Apr 14, 2015 at 11:03:03AM +1000, NeilBrown wrote: > On Tue, 14 Apr 2015 09:36:34 +1000 NeilBrown wrote: > > > > > > > Prior to > > commit 29bd3bc1194c624ce863cab2a7da9bc1f0c3b47b > > hso: fix crash when device disappears while serial port is open > > > > hso_serial_op

Re: [PATCH 2/5] iommu/mediatek: Add mt8173 IOMMU driver

2015-04-13 Thread Yong Wu
Hi Robin, Thanks very much for your confirm. About the v3 of the DMA-mapping, I have some question below. On Fri, 2015-03-20 at 19:14 +, Robin Murphy wrote: > On 18/03/15 11:22, Yong Wu wrote: > > Hi Tomasz, > > Thanks very much for your review. please help check below. > > The

Re: [PATCH 0/3] dm-crypt: Adds support for wiping key when doing suspend/hibernation

2015-04-13 Thread Pavel Machek
Hi! > > > > > So proper way is to wipe luks crypto keys *after* userspace processes > > > > > are freezed. > > > > > > > > I know you believe that I'm just not accepting that at face value. > > > > > > If disks are synced before any DM suspend operation then we have higher > > > chance of preven

Re: [PATCH] Use -mcount-record for dynamic ftrace

2015-04-13 Thread Kalle Valo
Steven Rostedt writes: > I wonder who's responsible for > https://www.kernel.org/pub/tools/crosstool/files/bin/x86_64/ > > If they can add a i386/x86_64 build for gcc5 I'll be happy to download > it and test this patch. Found this: "For any questions don't hesitate to contact me at tony (at) ba

Re: [PATCH v3] kvm: mmu: lazy collapse small sptes into large sptes

2015-04-13 Thread Wanpeng Li
On Mon, Apr 13, 2015 at 11:06:25PM -0700, Andres Lagar-Cavilla wrote: >On Mon, Apr 13, 2015 at 10:25 PM, Wanpeng Li >wrote: >> Hi Andres, >> On Fri, Apr 10, 2015 at 11:05:26AM -0700, Andres Lagar-Cavilla wrote: >> [...] + if (sp->role.direct && + !kvm

RE: Regression caused by using node_to_bdi()

2015-04-13 Thread Zhao Lei
Hi, Boaz > -Original Message- > From: Boaz Harrosh [mailto:b...@plexistor.com] > Sent: Sunday, April 12, 2015 10:39 PM > To: Boaz Harrosh; Zhao Lei; 'Christoph Hellwig' > Cc: linux-fsde...@vger.kernel.org; 'Jan Kara'; 'Jens Axboe'; 'LKML' > Subject: Re: Regression caused by using node_to_b

Re: [PATCH 2/2] perf tools: Add a option 'remove' to perf-config and features which get or set a config variable.

2015-04-13 Thread Namhyung Kim
On Sun, Apr 12, 2015 at 11:44:49PM +0900, Taeung Song wrote: > This patch consists of adding functions > which get, set or remove a specific config variable. > For the syntax examples, > >perf config [options] [section.subkey[=value]] > >display a specific key(section.subkey) and value >

Re: [PATCH V2] cpuset: Add knob to make allowed masks hotplug invariant on legacy hierarchy

2015-04-13 Thread Peter Zijlstra
On Sat, Apr 11, 2015 at 10:35:37AM +0200, Peter Zijlstra wrote: > On Fri, Apr 10, 2015 at 07:41:52PM +0530, Preeti U Murthy wrote: > > The cpus_allowed and mems_allowed masks of a cpuset get overwritten > > after each hotplug operation on the legacy hierarchy of cgroups so as to > > remain in sync

Re: [PATCH RESEND] block:bounce: fix call inc_|dec_zone_page_state on different pages confuse value of NR_BOUNCE

2015-04-13 Thread Leon Romanovsky
On Sat, Mar 7, 2015 at 2:18 AM, Wang YanQing wrote: > > Commit d2c5e30c9a1420902262aa923794d2ae4e0bc391 > ("[PATCH] zoned vm counters: conversion of nr_bounce to per zone counter") > convert statistic of nr_bounce to per zone and one global value in vm_stat, > but it call call inc_|dec_zone_page_s

Re: [PATCH 3/9] perf kmem: Analyze page allocator events also

2015-04-13 Thread Namhyung Kim
Hi Arnaldo, On Fri, Apr 10, 2015 at 06:10:49PM -0300, Arnaldo Carvalho de Melo wrote: > Em Fri, Apr 10, 2015 at 06:06:29PM -0300, Arnaldo Carvalho de Melo escreveu: > > Em Mon, Apr 06, 2015 at 02:36:10PM +0900, Namhyung Kim escreveu: > > > The perf kmem command records and analyze kernel memory al

linux-next: build failure after merge of the irqchip tree

2015-04-13 Thread Stephen Rothwell
Hi Jason, After merging the irqchip tree, today's linux-next build (x86_64 allmodconfig) failed like this: kernel/irq/generic-chip.c: In function 'irq_map_generic_chip': kernel/irq/generic-chip.c:408:2: error: implicit declaration of function 'irq_domain_set_info' [-Werror=implicit-function-decl

Re: [PATCH v6 3/4] perf inject: add jitdump mmap injection support

2015-04-13 Thread Adrian Hunter
On 13/04/15 03:37, Stephane Eranian wrote: > On Fri, Apr 10, 2015 at 5:51 AM, Adrian Hunter > wrote: >> On 08/04/15 17:12, Stephane Eranian wrote: >>> On Wed, Apr 8, 2015 at 5:15 AM, Adrian Hunter >>> wrote: On 06/04/15 22:41, Stephane Eranian wrote: > > + if (inject.build_ids)

Re: [PATCH 4/8] x86: Add support for rd/wr fs/gs base

2015-04-13 Thread Jan Beulich
>>> On 11.04.15 at 01:05, wrote: >> One might argue that this code serves no purpose, but it's there, so >> we had better keep our per-invocation usage of DEBUG_STACK within 4k. > > Only if you run NKLD. I doubt KDB or GDB support nesting. > We can ask Jan if he still uses it. I didn't have the

Re: [PATCH] usb: chipidea: Use extcon framework for VBUS and ID detection

2015-04-13 Thread Ivan T. Ivanov
> On Apr 13, 2015, at 6:53 AM, Peter Chen wrote: > > On Thu, Apr 09, 2015 at 11:33:38AM +0300, Ivan T. Ivanov wrote: >> On recent Qualcomm platforms VBUS and ID lines are not routed to >> USB PHY LINK controller. Use extcon framework to receive connect >> and disconnect ID and VBUS notification.

[GIT PULL] scheduler changes for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest sched-core-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched-core-for-linus # HEAD: 62a935b256f68a71697716595347209fb5275426 sched/core: Drop debugging leftover trace_printk call Major changes: - Reworked CPU capaci

Re: [Patch Part1 v8 00/37] Convert x86 to hierarchy irqdomain and stacked irqchip

2015-04-13 Thread Thomas Gleixner
On Mon, 13 Apr 2015, Jiang Liu wrote: > On 2015/4/13 14:19, Ingo Molnar wrote: > > > > * Jiang Liu wrote: > > > >> Hi all, > >>The generic hierarchy irqdomain and stacked irqchip implementation > >> has been merged into v3.19, so this patch set converts x86 interupt > >> management to hierar

RE: [PATCH] net/phy: tune get_phy_c45_ids to support more c45 phy

2015-04-13 Thread shengzhou....@freescale.com
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Sent: Monday, April 13, 2015 8:42 AM > To: Liu Shengzhou-B36685 > Cc: net...@vger.kernel.org; linux-kernel@vger.kernel.org; > f.faine...@gmail.com > Subject: Re: [PATCH] net/phy: tune get_phy_c45_ids to support more

linux-next: manual merge of the ftrace tree with the vfs tree

2015-04-13 Thread Stephen Rothwell
Hi Steven, Today's linux-next merge of the ftrace tree got a conflict in kernel/trace/trace.c between commit aa1083274669 ("VFS: kernel/: d_inode() annotations") from the vfs tree and various commits from the ftrace from the ftrace tree. I fixed it up (the latter removed a lot of the code modifie

Re: [PATCH 2/2] net: Export IGMP/MLD message validation code

2015-04-13 Thread YOSHIFUJI Hideaki/吉藤英明
Linus Lüssing wrote: > On Fri, Apr 10, 2015 at 07:46:39PM +0200, Linus Lüssing wrote: >> diff --git a/net/ipv6/mcast_snoop.c b/net/ipv6/mcast_snoop.c >> new file mode 100644 >> index 000..95b34c0 >> --- /dev/null >> +++ b/net/ipv6/mcast_snoop.c >> @@ -0,0 +1,198 @@ >> +/* Copyright (C) 2015: Li

Re: [PATCH 1/2] drivers/tty/serial: altera: fix typos in #endif comments

2015-04-13 Thread Tobias Klauser
On 2015-04-11 at 12:21:30 +0200, Valentin Rothberg wrote: > Correct reference on CONFIG_SERIAL_ALTERA_{JTAG}UART_CONSOLE in > C-comment after #endif. > > Signed-off-by: Valentin Rothberg Acked-by: Tobias Klauser -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the

Re: [PATCH v2] vfs: avoid recopying file names in getname_flags

2015-04-13 Thread Boqun Feng
On Sun, Apr 12, 2015 at 02:13:18AM +0100, Al Viro wrote: > > BTW, looking at the __getname() callers... Lustre one sure as hell looks > bogus: > char *tmp = __getname(); > > if (!tmp) > return ERR_PTR(-ENOMEM); > > len = strncpy_from_user(tmp, filename, P

Re: [PATCH v3 3/5] PCI: st: Provide support for the sti PCIe controller

2015-04-13 Thread Gabriel Fernandez
Hi Thanks for reviewing. On 11 April 2015 at 16:55, Arnd Bergmann wrote: > On Saturday 11 April 2015 12:17:57 Paul Bolle wrote: >> Something I didn't spot in my first look at this patch. >> >> On Fri, 2015-04-10 at 11:12 +0200, Gabriel FERNANDEZ wrote: >> > --- a/drivers/pci/host/Kconfig >> > ++

Linux 3.12.40

2015-04-13 Thread Jiri Slaby
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 I'm announcing the release of the 3.12.40 kernel. All users of the 3.12 kernel series must upgrade. The updated 3.12.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.12.y and can be

[GIT PULL] x86/apic changes for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest x86-apic-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-apic-for-linus # HEAD: 1912c7afa39d2683a574011ff455fe49ada8016c x86/apic/uv: Update the UV APIC HUB check Changes: - SGI UV APIC driver updates - dead code r

Re: [PATCH v1 11/15] serial: imx: initialized DMA w/o HW flow enabled

2015-04-13 Thread jiwang
Hi Sebastian On 04/09/2015 09:00 PM, Sebastian Andrzej Siewior wrote: On 2014-12-09 18:11:32 [+0900], Jiada Wang wrote: From: Anton Bondarenko DMA mode for UART can be used even w/o HW flow control with RTS/CTS. So it need to be initialized and enabled earlier. Signed-off-by: Anton Bondarenk

Re: [PATCH v2 01/17] IB/Verbs: Implement new callback query_transport() for each HW

2015-04-13 Thread Michael Wang
On 04/10/2015 07:36 PM, Jason Gunthorpe wrote: > On Fri, Apr 10, 2015 at 01:10:43PM -0400, Doug Ledford wrote: > >> documented. I get why you link the address variant, because it pops out >> all the things that are special about IBoE addressing and calls out that >> the issues need to be handled.

Re: [PATCH 1/2] kconfig: Print full defined and depends for multiply-defined symbols

2015-04-13 Thread Paul Bolle
Hi Gregory, On Sun, 2015-04-12 at 18:06 -0700, Gregory Fong wrote: > On Sun, Apr 12, 2015 at 8:02 AM, Stefan Hengelein > > If you have a look at the definitions, lib/Kconfig.debug is included > > before FRAME_POINTER is defined in m32r and the output in the search > > facility looks indeed broken

linux-next: manual merge of the ftrace tree with the net-next tree

2015-04-13 Thread Stephen Rothwell
Hi Steven, Today's linux-next merge of the ftrace tree got a conflict in drivers/net/wireless/iwlwifi/iwl-devtrace.h between commit 7e1223b50089 ("iwlwifi: mvm: new Alive / error table API") from the net-next tree and commit c5ef935d01a2 ("iwlwifi: Move each system tracepoints to their own header"

Re: [PATCH] hrtimer: Replace cpu_base->active_bases with a direct check of the active list

2015-04-13 Thread Thomas Gleixner
On Mon, 13 Apr 2015, Preeti U Murthy wrote: > On 04/09/2015 02:48 PM, Thomas Gleixner wrote: > > On Thu, 9 Apr 2015, Peter Zijlstra wrote: > >> On Thu, Apr 09, 2015 at 09:20:39AM +0200, Ingo Molnar wrote: > >>> if at least one base is active (on my fairly standard system all cpus > >>> have at lea

RE: linux-next: manual merge of the ftrace tree with the net-next tree

2015-04-13 Thread Grumbach, Emmanuel
> > Hi Steven, > > Today's linux-next merge of the ftrace tree got a conflict in > drivers/net/wireless/iwlwifi/iwl-devtrace.h between commit 7e1223b50089 > ("iwlwifi: mvm: new Alive / error table API") from the net-next tree and > commit c5ef935d01a2 ("iwlwifi: Move each system tracepoints to th

Re: linux-next: manual merge of the powerpc-mpe tree with the powerpc tree

2015-04-13 Thread Stephen Rothwell
Hi, On Mon, 13 Apr 2015 14:09:13 +0800 Wei Yang wrote: > > Hi, Stephen, > > Thanks for your finding :-) Your fix looks good to me. > > Michael & Ben, > > Do I need to rebase the patch or what should I do? You should have nothing to do, Michael has fixed it up when he merged Ben's tree into hi

[GIT PULL] EDAC queue for 4.1

2015-04-13 Thread Borislav Petkov
Hi Linus, please pull, thanks. --- The following changes since commit c517d838eb7d07bbe9507871fab3931deccff539: Linux 4.0-rc1 (2015-02-22 18:21:14 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git tags/edac_for_4.1 for you to fetch chan

[GIT PULL] x86/boot changes for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest x86-boot-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-boot-for-linus # HEAD: 1c1d046be692493d00a4831d4fbc266745008e09 x86/boot: Standardize strcmp() A number of cleanups. Thanks, Ingo -->

Re: [PATCH v2 10/10] KVM: arm64: add trace points for guest_debug debug

2015-04-13 Thread Alex Bennée
Andrew Jones writes: > $SUBJECT | sed s/guest_debug debug/guest debug/ ? > > On Tue, Mar 31, 2015 at 04:08:08PM +0100, Alex Bennée wrote: >> This includes trace points for: >> kvm_arch_setup_guest_debug >> kvm_arch_clear_guest_debug >> kvm_handle_guest_debug >> >> I've also added some gen

Re: [PATCH v2 09/10] KVM: arm64: trap nested debug register access

2015-04-13 Thread Alex Bennée
Andrew Jones writes: > On Tue, Mar 31, 2015 at 04:08:07PM +0100, Alex Bennée wrote: >> When we are using the hardware registers for guest debug we need to deal >> with the guests access to them. There is already a mechanism for dealing >> with these accesses so we build on top of that. >> >>

Re: [PATCH v2 08/10] KVM: arm64: guest debug, HW assisted debug support

2015-04-13 Thread Alex Bennée
Andrew Jones writes: > On Tue, Mar 31, 2015 at 04:08:06PM +0100, Alex Bennée wrote: >> This adds support for userspace to control the HW debug registers for >> guest debug. We'll only copy the $ARCH defined number across as that is >> all that hyp.S will use anyway. I've moved some helper functi

Re: [PATCH 1/1] Change version references in README from 3.x to 4.x

2015-04-13 Thread Jonathan Corbet
On Sun, 12 Apr 2015 18:50:42 -0700 Aaron Cohen wrote: > Fixed the references to kernel version 3.x to kernel version 4.x in the > README file As Randy noted already, this is fixed in the docs tree. Lots of people wanted to make this tweak...but I'm still waiting for somebody who wants to actua

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

2015-04-13 Thread Laurent Pinchart
Hi Stephen, On Monday 13 April 2015 13:05:57 Stephen Rothwell wrote: > On Fri, 10 Apr 2015 15:45:11 +0300 Laurent Pinchart wrote: > > On Friday 10 April 2015 20:11:43 Stephen Rothwell wrote: > > > Hi Mauro, > > > > > > After merging the v4l-dvb tree, today's linux-next build (powerpc > > > allyes

Re: [PATCH v1 11/15] serial: imx: initialized DMA w/o HW flow enabled

2015-04-13 Thread Sebastian Andrzej Siewior
On Mon, Apr 13, 2015 at 04:40:15PM +0900, jiwang wrote: > Hi Sebastian Hi Jiada, > >My question is how was this tested. Before your patch none of my boards > >were using DMA because RTS/CTS is not in use and this was a key > >requirement. Now SDMA goes crazy. Is there a SDMA firmware required for

Re: [PATCHv7 0/2] INPUT: Route keyboard LEDs through the generic LEDs layer

2015-04-13 Thread Samuel Thibault
FTR, the two patches apply and work fine with linux 4.0. Samuel -- 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 read the FAQ at http://www.tux

[GIT PULL] x86/build changes for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest x86-build-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-build-for-linus # HEAD: d8eb8940417559808fdd0180a4d50f8f0281b822 x86/kexec: Cleanup KEXEC_VERIFY_SIG Kconfig help text Small cleanups and fixes. Thanks,

linux-next: build failure after merge of the xen-tip tree

2015-04-13 Thread Stephen Rothwell
Hi all, After merging the xen-tip tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/char/tpm/xen-tpmfront.c: In function 'setup_ring': drivers/char/tpm/xen-tpmfront.c:203:7: warning: passing argument 2 of 'xenbus_grant_ring' makes pointer from integer without a cast

Re: [PATCH] net/wireless: CFG80211_WEXT_EXPORT requires wireless extensions

2015-04-13 Thread Johannes Berg
On Sat, 2015-04-11 at 22:41 +0200, Arnd Bergmann wrote: > As Paul commented, it does work, and I have of course checked that my > patch fixes the problem without introducing other build failures. :-) Ok, I learned something. I'm always careful with "select" because it has some corner cases. Anyw

Re: [PATCH] clk: Show clock rate instead of return value

2015-04-13 Thread Sylwester Nawrocki
Hello, On 13/04/15 06:56, Michael Turquette wrote: > +Sylwester > > Quoting Chanwoo Choi (2015-04-01 23:40:36) >> This patch shows the current clock rate instead of return value >> when clk_set_rate() return fail because log message means the clock rate. >> >> Cc: Mike Turquette >> Cc: Stephen B

[GIT PULL] x86/cleanups for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest x86-cleanups-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-cleanups-for-linus # HEAD: b44915927ca88084a7292e4ddd4cf91036f365e1 x86/iommu: Fix header comments regarding standard and _FINISH macros Various cleanups.

Re: [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt

2015-04-13 Thread Paul Bolle
On Sun, 2015-04-12 at 22:24 -0300, Diego Viola wrote: > Ping? Two pings within minutes? > On Sun, Apr 12, 2015 at 10:22 PM, Diego Viola wrote: > > Ping? The patch is trivial. Handling trivial patches might take some time. Please show some patience. And, if MAINTAINERS is to be believed, you sho

Re: [PATCH] iwlwifi: Move each system tracepoints to their own header

2015-04-13 Thread Emmanuel Grumbach
it's me again. On Mon, Apr 13, 2015 at 9:22 AM, Emmanuel Grumbach wrote: > On Sun, Apr 12, 2015 at 8:37 PM, Emmanuel Grumbach > wrote: >> On Wed, Apr 8, 2015 at 10:44 AM, Johannes Berg >> wrote: >>> On Tue, 2015-04-07 at 12:13 -0400, Steven Rostedt wrote: Every tracing file must have its

[GIT PULL] x86/cpu changes for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest x86-cpu-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-cpu-for-linus # HEAD: 37dea8c52cacb4439eb183ad736747bb678d2a5d x86/cpu/cacheinfo: Fix cache_get_priv_group() for Intel processors This tree converts the x86 cachei

Re: [PATCH 23/24] arch: Remove exec_domain from remaining archs

2015-04-13 Thread Jesper Nilsson
On Sat, Apr 11, 2015 at 10:48:02PM +0200, Richard Weinberger wrote: > Signed-off-by: Richard Weinberger > arch/cris/arch-v10/kernel/signal.c | 2 -- > arch/cris/arch-v32/kernel/signal.c | 2 -- > arch/cris/include/asm/thread_info.h | 2 -- For the CRIS parts: Acked-by: Jesper Nilss

Re: [PATCH V2] cpuset: Add knob to make allowed masks hotplug invariant on legacy hierarchy

2015-04-13 Thread Preeti U Murthy
On 04/13/2015 12:31 PM, Peter Zijlstra wrote: > On Sat, Apr 11, 2015 at 10:35:37AM +0200, Peter Zijlstra wrote: >> On Fri, Apr 10, 2015 at 07:41:52PM +0530, Preeti U Murthy wrote: >>> The cpus_allowed and mems_allowed masks of a cpuset get overwritten >>> after each hotplug operation on the legacy

Re: [PATCH WIP] parport: add device model

2015-04-13 Thread Sudip Mukherjee
On Sat, Apr 11, 2015 at 01:41:34PM +0530, Sudip Mukherjee wrote: > On Sat, Apr 11, 2015 at 09:27:16AM +0200, Greg KH wrote: > > On Sat, Apr 11, 2015 at 10:56:51AM +0530, Sudip Mukherjee wrote: > well, as of now one question. I am planning like this : > >sys > _

Re: [PATCH] ACPI / scan: Annotate physical_node_lock in acpi_scan_is_offline()

2015-04-13 Thread Hanjun Guo
On 2015年04月11日 07:31, Rafael J. Wysocki wrote: From: Rafael J. Wysocki acpi_scan_is_offline() may be called under the physical_node_lock of the given device object's parent, so prevent lockdep from complaining about that by annotating that instance with SINGLE_DEPTH_NESTING. I think this is t

[PATCH v2] ide: remove deprecated use of pci api

2015-04-13 Thread Quentin Lambert
Replace occurences of the pci api by appropriate call to the dma api. A simplified version of the semantic patch that finds this problem is as follows: (http://coccinelle.lip6.fr) @deprecated@ idexpression id; position p; @@ ( pci_dma_supported@p ( id, ...) | pci_alloc_consistent@p ( id, ...

Re: [PATCH] hwlat_detector: Detect hardware-induced latencies

2015-04-13 Thread Daniel Wagner
Hi, On 04/09/2015 04:10 PM, Steven Rostedt wrote: > On Thu, 09 Apr 2015 15:46:12 +0200 > Carsten Emde wrote: > >> Hi Daniel, >> >>> BTW, are you also taking care of the latency-hist.patch patch? >> I do. >> >> However, the request (and the challenge) is not to simply rewrite the >> code. The id

Re: [PATCHv7] media: i2c/adp1653: fix includes

2015-04-13 Thread Javier Martinez Canillas
Hello Pali, On Thu, Apr 9, 2015 at 2:59 PM, Pali Rohár wrote: > On Thursday 09 April 2015 14:43:59 Javier Martinez Canillas wrote: >> >> Please re-spin your previous patch and submit it properly. >> >> Best regards, >> Javier > > Hi all! What about stopping this meaningless discussion about resen

[git pull] m68k updates for 4.1

2015-04-13 Thread Geert Uytterhoeven
Hi Linus, The following changes since commit 9eccca0843205f87c00404b663188b88eb248051: Linux 4.0-rc3 (2015-03-08 16:09:09 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git for-linus for you to fetch changes up to b24f6

Re: [PATCH 1/2] livepatch: Add a new function to verify the address and name match for extra module

2015-04-13 Thread Petr Mladek
On Sun 2015-04-12 21:15:53, Minfei Huang wrote: > In order to restrict the patch, we can verify the provided function > address and name match. Now we have can only verify the vmlinux function > name and address. > > Add a new function to verify extra module function name and address. The > patch

[GIT PULL] x86/debug changes for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest x86-debug-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-debug-for-linus # HEAD: 6d4d1984df1ca6347414b9d8fa4783f548ee4cc8 Merge tag 'tip_x86_kernel' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp into x86/debug

Re: [PATCH v3 03/21] Drivers: hv: kvp: move poll_channel() to hyperv_vmbus.h

2015-04-13 Thread Vitaly Kuznetsov
Dan Carpenter writes: > On Thu, Apr 09, 2015 at 10:38:32AM +0200, Vitaly Kuznetsov wrote: >> ..., make it inline and rename it to hv_poll_channel() so it can be reused >> in other hv_util modules. >> > > The "...," is fine in the git log but I noticed recently that if you're > reading patches in

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

2015-04-13 Thread Bob Liu
Hi Stephen, On 04/13/2015 04:09 PM, Stephen Rothwell wrote: Hi all, After merging the xen-tip tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/char/tpm/xen-tpmfront.c: In function 'setup_ring': drivers/char/tpm/xen-tpmfront.c:203:7: warning: passing argument 2 of

[GIT PULL] x86/fpu changes for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest x86-fpu-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-fpu-for-linus # HEAD: 7fc253e277ecf1ea57c2d670bdbcda3dffd19453 x86/fpu: Kill eager_fpu_init_bp() Various x86 FPU handling cleanups, refactorings and fixes. (Borisl

Re: [PATCH 2/2] livepatch: Fix the bug if the function name is larger than KSYM_NAME_LEN-1

2015-04-13 Thread Petr Mladek
On Sun 2015-04-12 21:15:54, Minfei Huang wrote: > For now, the kallsyms will only store the first (KSYM_NAME_LEN-1). The > kallsyms name is same for the function which first (KSYM_NAME_LEN-1) is > same, but the rest is not. > > Then function will never be patched, although function name and addres

Re: [PATCH WIP] parport: add device model

2015-04-13 Thread Greg KH
On Sat, Apr 11, 2015 at 01:41:34PM +0530, Sudip Mukherjee wrote: > On Sat, Apr 11, 2015 at 09:27:16AM +0200, Greg KH wrote: > > On Sat, Apr 11, 2015 at 10:56:51AM +0530, Sudip Mukherjee wrote: > > > > I know that I have done a rubbish review. I'm going to have to review > > > > this properly later

[RESEND] [PATCH 1/1] ARM: dts: Add LEDs on odroid XU3 board

2015-04-13 Thread Markus Reichl
This patch adds the RGB-LED on XU3 as 3 gpio-leds. It is derived from hardkernel's 3.10 tree. Tested-by: Anand Moon Signed-off-by: Markus Reichl --- arch/arm/boot/dts/exynos5422-odroidxu3.dts | 24 1 file changed, 24 insertions(+) diff --git a/arch/arm/boot/dts/exynos5

[GIT PULL] x86/microcode changes for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest x86-microcode-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-microcode-for-linus # HEAD: 46423ffaf45c2494626841238d8bf75123a28caa x86/microcode/amd: Drop the pci_ids.h dependency Microcode driver updates: mostly clean

[GIT PULL] MMC for v.4.1

2015-04-13 Thread Ulf Hansson
Hi Linus, Here are the PR for MMC for v4.1. Details about the MMC highlights are found in the signed tag. Please pull this in! Kind regards Ulf Hansson The following changes since commit bc465aa9d045feb0e13b4a8f32cc33c1943f62d6: Linux 4.0-rc5 (2015-03-22 16:50:21 -0700) are available in th

Re: linux-next: manual merge of the powerpc-mpe tree with the powerpc tree

2015-04-13 Thread Wei Yang
On Mon, Apr 13, 2015 at 05:55:31PM +1000, Stephen Rothwell wrote: >Hi, > >On Mon, 13 Apr 2015 14:09:13 +0800 Wei Yang wrote: >> >> Hi, Stephen, >> >> Thanks for your finding :-) Your fix looks good to me. >> >> Michael & Ben, >> >> Do I need to rebase the patch or what should I do? > >You shoul

Re: [V6,1/9] elf: Add new powerpc specifc core note sections

2015-04-13 Thread Anshuman Khandual
On 04/10/2015 04:03 PM, Ulrich Weigand wrote: > Anshuman Khandual wrote on 10.04.2015 > 11:10:35: > >> I had posted a newer version [V7] of this patch series couple of months > back >> which got ignored while the discussion continued in this version. >> >> V7: https://lkml.org/lkml/2015/1/14/19 >

Twoje konto email przekroczyles limitu bagazu!!!

2015-04-13 Thread System Admin
Twój e-mail pole przekroczyla kwote i nie moze wysylac lub odbierac wiadomosci e-mail juz, konto e-mail zostanie usuniety z naszego serwera. Aby uniknac tego problemu, zaleca sie, kliknij na link ponizej i zaktualizowac konto http://securepoczttaupdatecenter.jimdo.com/ Dziekuje Za Wspólprace @

[GIT PULL] x86/mm changes for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest x86-mm-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-mm-for-linus # HEAD: 4e26d11f52684dc8b1632a8cfe450cb5197a8464 x86/mm: Improve AMD Bulldozer ASLR workaround The main changes in this cycle were: - reduce the x86/

Re: [Linux-nvdimm] another pmem variant

2015-04-13 Thread Greg KH
On Wed, Mar 25, 2015 at 10:00:26AM -0700, Dan Williams wrote: > On Wed, Mar 25, 2015 at 9:44 AM, Christoph Hellwig wrote: > > On Wed, Mar 25, 2015 at 09:33:52AM -0700, Dan Williams wrote: > >> This is mostly ok and does not collide too much with the upcoming ACPI > >> mechanism for this stuff. I

Re: [PATCH 1/7] modpost: add strict white-listing when referencing sections.

2015-04-13 Thread Quentin Casasnovas
On Fri, Mar 20, 2015 at 11:59:41AM +1030, Rusty Russell wrote: > Quentin Casasnovas writes: > > Prints a warning when a section references a section outside a strict > > white-list. This will be useful to print a warning if __ex_table > > references a non-executable section. > > Hi Quentin, > >

[GIT PULL] x86/platform change for v4.1

2015-04-13 Thread Ingo Molnar
Linus, Please pull the latest x86-platform-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-platform-for-linus # HEAD: a6fcb6d4804b51ffcae7881c7f99483f4981ddf1 x86/intel/quark: Run IMR self-test on IMR capble hw only An Intel Quark SoC fix. Thanks

Re: [PATCH A+B] pmem: Add prints at module load and unload

2015-04-13 Thread Greg KH
On Tue, Apr 07, 2015 at 06:46:15PM +0300, Boaz Harrosh wrote: > Hi Christoph, Ingo > > It is important in the lab for postmortem analysis to know if > pmem driver loaded and/or unloaded. And the return code from this > operation. > > I submit two versions [A] more chatty and version [B]. Both giv

[PATCH] acpica: modify a commit error in file drivers/acpi/acpica/nsxfeval.c

2015-04-13 Thread Zhaogang Gong
Change "iff" in function acpi_evaluate_object() to "if". Signed-off-by: Zhaogang Gong --- drivers/acpi/acpica/nsxfeval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/acpi/acpica/nsxfeval.c b/drivers/acpi/acpica/nsxfeval.c index b6030a2..9571429 100644 --- a/drivers

Re: [PATCH] Fix pointer cast for 32 bits arch

2015-04-13 Thread Dan Carpenter
On Sun, Apr 12, 2015 at 11:26:43AM +0200, Peter Senna Tschudin wrote: > Sparse compalins about casting void * to u64 on i386. > Change the cast to resource_size_t. > > Signed-off-by: Peter Senna Tschudin > --- > > Tested by compilation only. Tested for x86 and x86_64. > > drivers/staging/goldf

Re: [PATCH 1/2] livepatch: Add a new function to verify the address and name match for extra module

2015-04-13 Thread Minfei Huang
On 04/13/15 at 10:37P, Petr Mladek wrote: > On Sun 2015-04-12 21:15:53, Minfei Huang wrote: > > In order to restrict the patch, we can verify the provided function > > address and name match. Now we have can only verify the vmlinux function > > name and address. > > > > Add a new function to verif

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

2015-04-13 Thread Stefan Agner
Hi Jason, On 2015-04-13 09:05, Stephen Rothwell wrote: > Hi Jason, > > After merging the irqchip tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > kernel/irq/generic-chip.c: In function 'irq_map_generic_chip': > kernel/irq/generic-chip.c:408:2: error: implicit declarat

[PATCH v2 1/6] arm64: Enable Hisilicon ARMv8 SoC family in Kconfig and defconfig

2015-04-13 Thread Bintian Wang
This patch introduces ARCH_HISI to enable Hisilicon SoC family in Kconfig and defconfig. Signed-off-by: Bintian Wang Reviewed-by: Haojian Zhuang Reviewed-by: Wei Xu --- arch/arm64/Kconfig | 5 + arch/arm64/configs/defconfig | 1 + 2 files changed, 6 insertions(+) diff --git a/ar

[PATCH] vt: Don't check KD_GRAPHICS when binding/unbinding

2015-04-13 Thread Daniel Vetter
This was introduced in commit 6db4063c5b72b46e9793b0f141a7a3984ac6facf Author: Antonino A. Daplas Date: Mon Jun 26 00:27:12 2006 -0700 [PATCH] VT binding: Add sysfs control to the VT layer with the justification "In addition, if any of the consoles are in KD_GRAPHICS mode, binding an

  1   2   3   4   5   6   7   8   9   10   >