[PATCH] ASoC: fsl-esai: fix ESAI TDM slot setting

2014-02-09 Thread Xiubo Li
Cc: Nicolin Chen Signed-off-by: Xiubo Li --- sound/soc/fsl/fsl_esai.c | 4 ++-- sound/soc/fsl/fsl_esai.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sound/soc/fsl/fsl_esai.c b/sound/soc/fsl/fsl_esai.c index d0c72ed..c84026c 100644 --- a/sound/soc/fsl/fsl_esai.c +++ b/s

[PATCH v3 2/3] ACPI / processor_core: Rework _PDC related stuff to make it more arch-independent

2014-02-09 Thread Hanjun Guo
_PDC related stuff in processor_core.c is little bit X86/IA64 dependent, rework the code to make it more arch-independent, no functional change in this patch. Signed-off-by: Hanjun Guo Signed-off-by: Graeme Gregory --- arch/ia64/include/asm/acpi.h |5 + arch/ia64/kernel/acpi.c |

[PATCH v3 3/3] ACPI / processor: Introduce map_gic_id() to get apic id from MADT or _MAT method

2014-02-09 Thread Hanjun Guo
Get apic id from MADT or _MAT method is not implemented on arm/arm64, and ACPI 5.0 introduces GIC Structure for it, so this patch introduces map_gic_id() to get apic id followed the ACPI 5.0 spec. Signed-off-by: Hanjun Guo --- drivers/acpi/processor_core.c | 26 ++ 1 fi

[PATCH v3 1/3] ACPI / idle: Make idle_boot_override depend on x86 and ia64

2014-02-09 Thread Hanjun Guo
idle_boot_override depends on x86 and ia64 now, and we can not foresee it will be used on ARM or ARM64,so move the code into CONFIG_X86 and CONFIG_IA64 #ifdefs to make processor_core.c can be compiled on ARM64. Reviewed-by: Lan Tianyu Signed-off-by: Hanjun Guo --- drivers/acpi/processor_core.c

[PATCH v3 0/3] Prepare for running ACPI on !x86 and !ia64

2014-02-09 Thread Hanjun Guo
Some of the ACPI code is arch-dependent and make the code can't be compiled on !x86 or !ia64, the first two patches just do some rework on the idle_boot_override and _PDC related stuff to make the ACPI code more arch-independent. The third patch just introduce map_gic_id() for ACPI processor core

Re: [PATCH v2] mfd: MAX6650/6651 support

2014-02-09 Thread Laszlo Papp
>> + help >> + Say yes here to support for Maxim Semiconductor MAX6650/MAX6651. >> This is >> + a fan speed regulator and monitor IC. This driver provies common >> support > > s/provies/provides/ Good catch! (Note to myself: I should have run my vim spellchecker... ) >> + m

[PATCH v6 01/14] uprobes: allow ignoring of probe hits

2014-02-09 Thread David Long
From: "David A. Long" Allow arches to decided to ignore a probe hit. ARM will use this to only call handlers if the conditions to execute a conditionally executed instruction are satisfied. Signed-off-by: David A. Long Acked-by: Oleg Nesterov --- include/linux/uprobes.h | 1 + kernel/events/

[PATCH v6 09/14] ARM: Change more ARM kprobes symbol names to something more

2014-02-09 Thread David Long
From: "David A. Long" Change kprobe_emulate_none, kprobe_simulate_nop, and arm_kprobe_decode_init function names to something more appropriate for code being shared outside of the kprobes subsystem. Also, move the new arm_probes_decode_init declaration out of the kprobes.h include file and into t

[PATCH v6 06/14] ARM: Disable jprobes test when built into thumb-mode kernel

2014-02-09 Thread David Long
From: "Jon Medhurst (Tixy)" For now the jprobes tests fail on ARM for when built into a kernel compiled in thumb mode. They work fine for ARM kernels, and when built as a loadable module. Signed-off-by: "Jon Medhurst (Tixy)" Acked-by: Jon Medhurst Signed-off-by: David A. Long --- arch/arm/ke

[PATCH v6 11/14] ARM: Change the remaining shared kprobes/uprobes symbols to something generic

2014-02-09 Thread David Long
From: "David A. Long" Any more ARM kprobes/uprobes symbols which have "kprobe" in the name must be changed to the more generic "probes" or other non-kprobes specific symbol. Signed-off-by: David A. Long Acked-by: Jon Medhurst --- arch/arm/include/asm/probes.h| 13 ++--- arch/arm/k

[PATCH v6 10/14] ARM: Rename the shared kprobes/uprobe return value enum

2014-02-09 Thread David Long
From: "David A. Long" Change the name of kprobes_insn to probes_insn so it can be shared between kprobes and uprobes without confusion. Signed-off-by: David A. Long Acked-by: Jon Medhurst --- arch/arm/kernel/kprobes-common.c | 2 +- arch/arm/kernel/kprobes-thumb.c | 16 arc

[PATCH v6 08/14] ARM: Make the kprobes condition_check symbol names more generic

2014-02-09 Thread David Long
From: "David A. Long" In preparation for sharing the ARM kprobes instruction interpreting code with uprobes, make the symbols names less kprobes-specific. Signed-off-by: David A. Long Acked-by: Jon Medhurst --- arch/arm/include/asm/probes.h| 11 +++--- arch/arm/kernel/kprobes-arm.c| 1

[PATCH v6 02/14] ARM: move shared uprobe/kprobe definitions into new include file

2014-02-09 Thread David Long
From: "David A. Long" Separate the kprobe-only definitions from the definitions needed by both kprobes and uprobes. Signed-off-by: David A. Long Acked-by: Jon Medhurst --- arch/arm/include/asm/kprobes.h | 15 +- arch/arm/include/asm/{kprobes.h => probes.h} | 44 +

[PATCH v6 14/14] ARM: add uprobes support

2014-02-09 Thread David Long
From: "David A. Long" Using Rabin Vincent's ARM uprobes patches as a base, enable uprobes support on ARM. Caveats: - Thumb is not supported Signed-off-by: Rabin Vincent Signed-off-by: David A. Long --- arch/arm/Kconfig | 3 + arch/arm/include/asm/ptrace.h | 6 +

[PATCH v6 12/14] ARM: Add an emulate flag to the kprobes/uprobes instruction decode functions

2014-02-09 Thread David Long
From: "David A. Long" Add an emulate flag into the instruction interpreter, primarily for uprobes support. Signed-off-by: David A. Long Acked-by: Jon Medhurst --- arch/arm/kernel/kprobes.c | 2 +- arch/arm/kernel/kprobes.h | 1 + arch/arm/kernel/probes-arm.c | 4 ++-- arch/arm/

[PATCH v6 13/14] ARM: Make arch_specific_insn a define for new arch_probes_insn structure

2014-02-09 Thread David Long
From: "David A. Long" Because the common underlying code for ARM kprobes and uprobes needs to share a common architecrure-specific context structure, and because the generic kprobes include file insists on defining this to a dummy structure when kprobes is not configured, a new common structure i

[PATCH v6 07/14] ARM: Remove use of struct kprobe from generic probes code

2014-02-09 Thread David Long
From: "David A. Long" Change the generic ARM probes code to pass in the opcode and architecture-specific structure separately instead of using struct kprobe, so we do not pollute code being used only for uprobes or other non-kprobes instruction interpretation. Signed-off-by: David A. Long Acke

[PATCH v6 00/14] uprobes: Add uprobes support for ARM

2014-02-09 Thread David Long
From: "David A. Long" This patch series adds basic uprobes support to ARM. It is based on patches developed earlier by Rabin Vincent. That approach of adding hooks into the kprobes instruction parsing code was not well received. This approach separates the ARM instruction parsing code in kprobes

Re: [PATCH v2] mfd: MAX6650/6651 support

2014-02-09 Thread Krzysztof Kozlowski
Hi, On Sat, 2014-02-08 at 11:33 +, Laszlo Papp wrote: > MAX6650/MAX6651 chip is a multi-function device with I2C busses. The > chip includes fan-speed regulators and monitors, GPIO, and alarm. > > This patch is an initial release of a MAX6650/6651 MFD driver that > supports to enable the chip

[PATCH v5 07/11] drm/i915: Add 180 degree sprite rotation support

2014-02-09 Thread sagar . a . kamble
From: Ville Syrjälä The sprite planes (in fact all display planes starting from gen4) support 180 degree rotation. Add the relevant low level bits to the sprite code to make use of that feature. The upper layers are not yet plugged in. v2: HSW handles the rotated buffer offset automagically Cc

Re: [PATCH part1 v5 5/7] PCI: Add pci_dummy_ops to isolate pci device temporarily

2014-02-09 Thread Oliver Neukum
On Mon, 2014-02-10 at 12:04 +0800, Yijing Wang wrote: > +static DEFINE_SPINLOCK(pci_freeze_lock); The lock is used only here. > +/** > + * pci_bus_freeze_device - freeze pci bus to access pci device > + * @bus: the pci bus to freeze > + * > + * Replace pci bus ops by pci_dummy_ops, protect syste

[PATCH v5 10/11] drm/i915: Add 180 degree primary plane rotation support

2014-02-09 Thread sagar . a . kamble
From: Sagar Kamble Primary planes support 180 degree rotation. Expose the feature through rotation drm property. v2: Calculating linear/tiled offsets based on pipe source width and height. Added 180 degree rotation support in ironlake_update_plane. v3: Checking if CRTC is active before issueing

[PATCH v5 06/11] drm: Add drm_rotation_simplify()

2014-02-09 Thread sagar . a . kamble
From: Ville Syrjälä drm_rotation_simplify() can be used to eliminate unsupported rotation flags. It will check if any unsupported flags are present, and if so it will modify the rotation to an alternate form by adding 180 degrees to rotation angle, and flipping the reflect x and y bits. The hope

[PATCH v5 11/11] drm/i915: Calling rotate and inverse rotate transformations after clipping

2014-02-09 Thread sagar . a . kamble
From: Sagar Kamble With clipped sprites these transformations are not working. these functions transform complete sprite irrespective of clipping present. This leads to invisible portion of sprite show up when rotate 180 if it was out of visible area before. v4: Moved rotate transform for source

[PATCH v5 09/11] drm/i915: Add rotation property for sprites

2014-02-09 Thread sagar . a . kamble
From: Ville Syrjälä Sprite planes support 180 degree rotation. The lower layers are now in place, so hook in the standard rotation property to expose the feature to the users. Cc: Daniel Vetter Cc: Jani Nikula Cc: David Airlie Cc: dri-de...@lists.freedesktop.org Cc: linux-kernel@vger.kernel.o

[PATCH v5 08/11] drm/i915: Make intel_plane_restore() return an error

2014-02-09 Thread sagar . a . kamble
From: Ville Syrjälä Propagate the error from intel_update_plane() up through intel_plane_restore() to the caller. This will be used for rollback purposes when setting properties fails. Cc: Daniel Vetter Cc: Jani Nikula Cc: David Airlie Cc: dri-de...@lists.freedesktop.org Cc: linux-kernel@vger

[PATCH v5 05/11] drm: Add drm_rect rotation functions

2014-02-09 Thread sagar . a . kamble
From: Ville Syrjälä Add some helper functions to move drm_rects between different rotated coordinate spaces. One function does the forward transform and another does the inverse. Cc: David Airlie Cc: dri-de...@lists.freedesktop.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Ville Syrjälä

[PATCH v5 04/11] drm/omap: Switch omapdrm over to drm_mode_create_rotation_property()

2014-02-09 Thread sagar . a . kamble
From: Ville Syrjälä Use the new drm_mode_create_rotation_property() in omapdrm. v5: Fixed conflict due to change in the prior patch in call to drm_property_create_bitmask() Cc: David Airlie Cc: Rob Clark Cc: Sagar Kamble Cc: "Ville Syrjälä" Cc: Tomi Valkeinen Cc: Greg Kroah-Hartman Cc: dr

[PATCH v5 07/11] drm/i915: Add 180 degree sprite rotation support

2014-02-09 Thread sagar . a . kamble
From: Ville Syrjälä The sprite planes (in fact all display planes starting from gen4) support 180 degree rotation. Add the relevant low level bits to the sprite code to make use of that feature. The upper layers are not yet plugged in. v2: HSW handles the rotated buffer offset automagically Cc

[PATCH v5 03/11] drm: Add drm_mode_create_rotation_property()

2014-02-09 Thread sagar . a . kamble
From: Ville Syrjälä Add a function to create a standards compliant rotation property. v4: For creating rotation bitmask property send number of values as only number of set rotations Cc: David Airlie Cc: dri-de...@lists.freedesktop.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Ville Syrj

[PATCH v5 02/11] drm: Add support_bits parameter to drm_property_create_bitmask()

2014-02-09 Thread sagar . a . kamble
From: Ville Syrjälä Make drm_property_create_bitmask() a bit more generic by allowing the caller to specify which bits are in fact supported. This allows multiple callers to use the same enum list, but still create different versions of the same property with different list of supported bits. v5

[PATCH v5 01/11] drm: Move DRM_ROTATE bits out of omapdrm into drm_crtc.h

2014-02-09 Thread sagar . a . kamble
From: Ville Syrjälä The rotation property stuff should be standardized among all drivers. Move the bits to drm_crtc.h from omap_drv.h. Cc: David Airlie Cc: Tomi Valkeinen Cc: Dave Airlie Cc: Rob Clark Cc: Daniel Vetter Cc: Archit Taneja Cc: dri-de...@lists.freedesktop.org Cc: linux-kernel@

[BUG] can't boot up: unable to handle kernel paging request at ffffffffff340003

2014-02-09 Thread Madper Xie
Howdy, With old kernel (from 3.10 to 3.14-rc1), my hp box shows following outputs: ~~~ [0.009166] Freeing SMP alternatives memory: 20K (82234000 - 82239000) [0.010302] ioremap: invalid physical address 1376e0180001 [0.010303] [ cut here ] [

Re: [PATCH 1/2] regulator: anatop: Add power gating support to digital LDOs

2014-02-09 Thread Shawn Guo
On Thu, Feb 06, 2014 at 03:43:32PM +0100, Philipp Zabel wrote: > The ARM, PU, and SOC LDOs in the i.MX6 PMU can completely gate > their power output. Since power gating is configured by writing > zero to the voltage target bitfield,, store a copy of the > voltage selector to be restored when reenab

Re: [PATCH v2 2/3] ACPI / processor_core: Rework _PDC related stuff to make it more arch-independent

2014-02-09 Thread Hanjun Guo
Hi Tianyu, On 2014年02月10日 10:21, Lan Tianyu wrote: 2014-02-08 21:10 GMT+08:00 Hanjun Guo : _PDC related stuff in processor_core.c is little bit X86/IA64 dependent, rework the code to make it more arch-independent, no functional change in this patch. Signed-off-by: Hanjun Guo Signed-off-by: Gr

Re: [PATCH 10/10] watchdog: xilinx: Enable this driver for Zynq

2014-02-09 Thread Michal Simek
On 02/10/2014 01:51 AM, Guenter Roeck wrote: > On 01/31/2014 06:18 AM, Michal Simek wrote: >> Enable this driver for Zynq. >> Move it to architecture independent Kconfig part. >> >> Signed-off-by: Michal Simek >> --- >> >> Build tested by zero day testing system. >> --- > > Hi Michal, > > I trie

Re: [PATCH 01/10] watchdog: xilinx: Convert driver to the watchdog framework

2014-02-09 Thread Michal Simek
On 02/09/2014 09:03 PM, Guenter Roeck wrote: > On 01/31/2014 06:18 AM, Michal Simek wrote: >> - Remove uneeded headers, fops functions >> - Use xilinx_wdt prefix in start/stop/keepalive functions >>and in new structures >> >> Signed-off-by: Michal Simek > > Hi Michal, > >> static int xwdt_

Re: [PATCH] staging : android : sync : fix a checkpatch warning

2014-02-09 Thread DaeSeok Youn
CC+ Joe Perches. 2014-02-10 14:58 GMT+09:00 Daeseok Youn : > From 16140b1ec1b1e1060f74707e4a6661aface81a14 Mon Sep 17 00:00:00 2001 > From: Daeseok Youn > Date: Mon, 10 Feb 2014 14:36:48 +0900 > Subject: [PATCH] staging : android : sync : fix a checkpatch warning > > - WARNING: missing space afte

Re: [PATCH 1/2 v2] usbnet: fix bad header length bug

2014-02-09 Thread Oliver Neukum
On Mon, 2014-02-10 at 00:06 +0100, Emil Goode wrote: > The AX88772B occasionally send rx packets that cross urb boundaries > and the remaining partial packet is sent with no hardware header. > When the buffer with a partial packet is of less number of octets > than the value of hard_header_len the

Re: [PATCH] staging : ion : Fix some checkpatch warnings and an error

2014-02-09 Thread DaeSeok Youn
I think It looks better than reported by checkpatch.pl. But I have a qeustion, if your patch is applied to checkpatch.pl file, a return type of "void *" line will be changed. for example, void * (*map_kernel)(struct ion_heap *heap, struct ion_buffer *buffer); => void *(*map_kernel)(struct ion_heap

[PATCH] USB2NET : SR9800 : One chip USB2.0 USB2NET SR9800 Device Driver Support

2014-02-09 Thread liujunliang_ljl
From: Liu Junliang Signed-off-by: Liu Junliang --- drivers/net/usb/Kconfig | 16 + drivers/net/usb/Makefile |1 + drivers/net/usb/sr9800.c | 870 ++ drivers/net/usb/sr9800.h | 202 +++ 4 files changed, 1089 insertions(+), 0 deletions

Re: Re: [PATCH] USB2NET : SR9800 : One chip USB2.0 USB2NET SR9800Device Driver Support

2014-02-09 Thread liujunliang_ljl
Dear Joe : Thanks a lot for your detail checking. 2014-02-10 liujunliang_ljl 发件人: Joe Perches 发送时间: 2014-02-10 13:47:08 收件人: liujunliang_ljl 抄送: davem; horms; romieu; gregkh; netdev; linux-usb; linux-kernel; sunhecheng 主题: Re: [PATCH] USB2NET : SR9800 : One chip USB2

Re: [PATCH v1 08/10] perf/x86/uncore: add SNB/IVB/HSW client uncore memory controller support

2014-02-09 Thread Yan, Zheng
On 02/03/2014 08:55 PM, Stephane Eranian wrote: > This patch adds a new uncore PMU for Intel SNB/IVB/HSW client > CPUs. It adds the Integrated Memory Controller (IMC) PMU. This > new PMU provides a set of events to measure memory bandwidth utilization. > > The IMC on those processor is PCI-space b

[PATCH v3 0/2] ASoC: atmel_ssc_dai: add option to choose clock

2014-02-09 Thread Bo Shen
When SSC work in slave mode, the clock can come from TK pin and also can come from RK pin, this is hardware design decided. So, make it available to choose where the clock from. Changes in v3: - Move the property from card to ssc device Series-changes: 2 - using "-" replace "_" in binding docu

[PATCH v3 1/2] ASoC: atmel_ssc_dai: make option to choose clock

2014-02-09 Thread Bo Shen
When SSC works in slave mode, according to the hardware design, the clock can get from TK pin, also can get from RK pin. So, add one parameter to choose where the clock from. Signed-off-by: Bo Shen --- Changes in v3: - New, move clk-from-rk-pin property from card to ssc device drivers/misc/at

[PATCH v3 2/2] Binding: atmel-ssc: add option to choose clock

2014-02-09 Thread Bo Shen
Add the option to choose clock on which pin input to SSC (as slave). Default is on TK pin to SSC, add "atmel,clk-from-rk-pin" option to specify the clock is on RK pin to SSC. Signed-off-by: Bo Shen --- Changes in v3: - None Series-changes: 2 - using "-" replace "_" in binding document Docum

Re: [PATCH] staging : ion : Fix some checkpatch warnings and an error

2014-02-09 Thread Joe Perches
On Mon, 2014-02-10 at 14:56 +0900, Daeseok Youn wrote: > Hello. > diff --git a/drivers/staging/android/ion/ion_priv.h > b/drivers/staging/android/ion/ion_priv.h [] > - struct sg_table *(*map_dma) (struct ion_heap *heap, > + struct sg_table * (*map_dma)(struct ion_heap *heap, The message

Re: [PATCH v1 09/10] perf/x86/uncore: add hrtimer to SNB uncore IMC PMU

2014-02-09 Thread Yan, Zheng
On 02/03/2014 08:55 PM, Stephane Eranian wrote: > This patch is needed because that PMU uses 32-bit free > running counters with no interrupt capabilities. > > On SNB/IVB/HSW, we used 20GB/s theoretical peak to calculate > the hrtimer timeout necessary to avoid missing an overflow. > That delay is

[PATCH] staging: android: timed_output: fix a checkpatch warning

2014-02-09 Thread Daeseok Youn
>From 866c5eb6cb88b59702802876a724dfd0144c447e Mon Sep 17 00:00:00 2001 From: Daeseok Youn Date: Mon, 10 Feb 2014 14:38:05 +0900 Subject: [PATCH] staging: android: timed_output: fix a checkpatch warning - WARNING: Multiple spaces after return type Signed-off-by: Daeseok Youn --- drivers/stagin

[PATCH] drm/nouveau: handle -EACCES runtime PM return code

2014-02-09 Thread Alexandre Courbot
pm_runtime_get*() may return -EACCESS to indicate a device does not have runtime PM enabled. This is the case when the nouveau.runpm parameter is set to 0, and is not an error in that context. Handle this case without failure. Signed-off-by: Alexandre Courbot --- drivers/gpu/drm/nouveau/dispnv04

[PATCH] staging : android : sync : fix a checkpatch warning

2014-02-09 Thread Daeseok Youn
>From 16140b1ec1b1e1060f74707e4a6661aface81a14 Mon Sep 17 00:00:00 2001 From: Daeseok Youn Date: Mon, 10 Feb 2014 14:36:48 +0900 Subject: [PATCH] staging : android : sync : fix a checkpatch warning - WARNING: missing space after return type Signed-off-by: Daeseok Youn --- drivers/staging/andro

[PATCH] drm/nouveau/fifo: allocate usermem as needed

2014-02-09 Thread Alexandre Courbot
Memory was always allocated for 4096 channels. Change this to allocate what we actually need according to the number of channels we use. Signed-off-by: Alexandre Courbot --- drivers/gpu/drm/nouveau/core/engine/fifo/nve0.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dr

[PATCH] staging : ion : Fix some checkpatch warnings and an error

2014-02-09 Thread Daeseok Youn
>From aa06cc53c7214a044fbc220872aa6210c09608d3 Mon Sep 17 00:00:00 2001 From: Daeseok Youn Date: Mon, 10 Feb 2014 14:27:40 +0900 Subject: [PATCH] staging : ion : Fix some checkpatch warnings and an error Warning: - Unnecessary space after function pointer name - Prefer seq_puts to seq_printf - qu

[PATCH] drm/nouveau: support for platform devices

2014-02-09 Thread Alexandre Courbot
Upcoming mobile Kepler GPUs (such as GK20A) use the platform bus instead of PCI to which Nouveau is tightly dependent. This patch allows Nouveau to handle platform devices by: - abstracting PCI-dependent functions that were typically used for resource querying and page mapping, - introducing a n

Re: [PATCH] USB2NET : SR9800 : One chip USB2.0 USB2NET SR9800 Device Driver Support

2014-02-09 Thread Joe Perches
On Mon, 2014-02-10 at 13:33 +0800, liujunliang_...@163.com wrote: > diff --git a/drivers/net/usb/sr9800.c b/drivers/net/usb/sr9800.c [] > + netdev_dbg(dev->net, "mac addr : 0x%x:0x%x:0x%x:0x%x:0x%x:0x%x\n", > +dev->net->dev_addr[0], dev->net->dev_addr[1], > +dev-

[PATCH] USB2NET : SR9800 : One chip USB2.0 USB2NET SR9800 Device Driver Support

2014-02-09 Thread liujunliang_ljl
From: Liu Junliang Signed-off-by: Liu Junliang --- drivers/net/usb/Kconfig | 16 + drivers/net/usb/Makefile |1 + drivers/net/usb/sr9800.c | 873 ++ drivers/net/usb/sr9800.h | 202 +++ 4 files changed, 1092 insertions(+), 0 deletions

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

2014-02-09 Thread Paul E. McKenney
On Mon, Feb 10, 2014 at 03:00:47PM +1100, Stephen Rothwell wrote: > Hi Andrew, > > Today's linux-next merge of the akpm-current tree got a conflict in > mm/slub.c between commit f4e40a71719d ("slub: Fix add_full() lockdep > checks") from the rcu tree and commit aee03fe7a7c8 ("mm/slub.c: list_lock

linux-next: Tree for Feb 10

2014-02-09 Thread Stephen Rothwell
Hi all, This tree fails (more than usual) the powerpc allyesconfig build. Changes since 20140207: The powerpc tree still had its build failure. The drm-intel tree gained a conflict against the drm-intel-fixes tree. The staging tree gained a build failure for which I disabled a driver. The akp

Re: make oldfonfig broken.

2014-02-09 Thread Randy Dunlap
On 02/09/2014 08:32 PM, Gene Heskett wrote: > On Sunday 09 February 2014, Randy Dunlap wrote: >> On 02/09/2014 08:14 PM, Gene Heskett wrote: >>> On Sunday 09 February 2014, Randy Dunlap wrote: On 02/09/2014 07:46 PM, Gene Heskett wrote: > On Sunday 09 February 2014, Randy Dunlap wrote: >>>

Re: linux-next: build failure after merge of the final tree (staging tree related)

2014-02-09 Thread Greg KH
On Mon, Feb 10, 2014 at 03:54:12PM +1100, Stephen Rothwell wrote: > Hi all, > > After merging the final tree, today's linux-next build (powerpc > allyesconfig) failed like this: > > drivers/staging/rtl8188eu/core/rtw_mlme.c: In function '_rtw_init_mlme_priv': > drivers/staging/rtl8188eu/core/rtw_

linux-next: build failure after merge of the final tree (staging tree related)

2014-02-09 Thread Stephen Rothwell
Hi all, After merging the final tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/staging/rtl8188eu/core/rtw_mlme.c: In function '_rtw_init_mlme_priv': drivers/staging/rtl8188eu/core/rtw_mlme.c:65:2: error: implicit declaration of function 'vzalloc' [-Werror=implici

Re: [PATCH] staging : android : fix checkpatch issues

2014-02-09 Thread DaeSeok Youn
2014-02-10 13:26 GMT+09:00 Greg KH : > On Mon, Feb 10, 2014 at 10:59:14AM +0900, Daeseok Youn wrote: >> >From 1348300b03697d0499eddba6035a851d1278abd1 Mon Sep 17 00:00:00 2001 >> From: Daeseok Youn >> Date: Mon, 10 Feb 2014 10:45:30 +0900 >> Subject: [PATCH] staging : android : fix checkpatch issu

Re: [PATCH 27/28] Remove ARC_HAS_COH_RTSC

2014-02-09 Thread Vineet Gupta
Hi Paul, On Monday 10 February 2014 01:16 AM, Paul Bolle wrote: >> The symbol is an orphan, get rid of it. >> > >> > Signed-off-by: Richard Weinberger > Acked-by: Paul Bolle > > This Kconfig symbol was removed in commit 7d087a54aed ("ARC: [SMP] > Disallow RTSC"), merged in v3.13. > I've appl

Re: make oldfonfig broken.

2014-02-09 Thread Gene Heskett
On Sunday 09 February 2014, Randy Dunlap wrote: >On 02/09/2014 08:14 PM, Gene Heskett wrote: >> On Sunday 09 February 2014, Randy Dunlap wrote: >>> On 02/09/2014 07:46 PM, Gene Heskett wrote: On Sunday 09 February 2014, Randy Dunlap wrote: > On 02/09/2014 07:07 PM, Ken Moffat wrote: >>

Re: [PATCH 04/28] Remove EXYNOS_DEV_SYSMMU

2014-02-09 Thread Sachin Kamat
+cc linux-samsung-soc list On 10 February 2014 01:38, Paul Bolle wrote: > On Sun, 2014-02-09 at 19:47 +0100, Richard Weinberger wrote: >> The symbol is an orphan, get rid of it. >> >> Signed-off-by: Richard Weinberger >> --- >> drivers/iommu/Kconfig | 2 +- >> 1 file changed, 1 insertion(+), 1

Re: [PATCH 27/28] Remove ARC_HAS_COH_RTSC

2014-02-09 Thread Vineet Gupta
Hi Richard, On Monday 10 February 2014 12:18 AM, Richard Weinberger wrote: > The symbol is an orphan, get rid of it. > > Signed-off-by: Richard Weinberger Thanks for the cleanup. Applied to ARC for-next. -Vineet > --- > arch/arc/plat-arcfpga/Kconfig | 1 - > 1 file changed, 1 deletion(-) > >

[PATCH v6 1/2] iio:as3935: Add DT binding docs for AS3935 driver

2014-02-09 Thread Matt Ranostay
Document compatible string, required and optional DT properties for AS3935 chipset driver. Signed-off-by: Matt Ranostay --- .../devicetree/bindings/iio/proximity/as3935.txt | 27 ++ .../devicetree/bindings/vendor-prefixes.txt| 1 + 2 files changed, 28 insertions(+)

[PATCH v6 0/2] AS3935 lightning sensor support

2014-02-09 Thread Matt Ranostay
This series adds support for the AMS AS3935 lightning sensor that allows reporting back estimated storm distance and strike events. Changes from v5 * SPI write cache-aligned issues fixed * Fixed mutex_unlock's being missed * Reports distance in meters instead of kilometers (1km steps) * tune_cap

[PATCH v6 2/2] iio: Add AS3935 lightning sensor support

2014-02-09 Thread Matt Ranostay
AS3935 chipset can detect lightning strikes and reports those back as events and the estimated distance to the storm. Signed-off-by: Matt Ranostay --- .../ABI/testing/sysfs-bus-iio-proximity-as3935 | 18 + drivers/iio/Kconfig| 1 + drivers/iio/Makefile

[PATCH] perf tools: Fix the logic of thread__fork

2014-02-09 Thread Tony Lu
Revert the logic of checking the return value of thread__set_comm(). If thread__set_comm() returns zero without errors, we should not return immediately, instead we should finish the rest of the clone work. Otherwise, perf report would fail to resolve symbols sampled in forked threads. Signed-off

Re: [PATCH] nouveau/drm/fifo: fix ENG_RUNLIST register address

2014-02-09 Thread Ben Skeggs
On Fri, Feb 7, 2014 at 11:22 PM, Alexandre Courbot wrote: > Address of the ENG_RUNLIST register should be 0x002284 + (engine * 8), > not 0x002284 + (engine * 4). > > Signed-off-by: Alexandre Courbot > --- > Stumbled upon this one and I'm quite certain the offset was not correct. > This is inconse

Re: [PATCH] staging : android : fix checkpatch issues

2014-02-09 Thread Greg KH
On Mon, Feb 10, 2014 at 10:59:14AM +0900, Daeseok Youn wrote: > >From 1348300b03697d0499eddba6035a851d1278abd1 Mon Sep 17 00:00:00 2001 > From: Daeseok Youn > Date: Mon, 10 Feb 2014 10:45:30 +0900 > Subject: [PATCH] staging : android : fix checkpatch issues > > drivers/staging/android/ > ion/ion.

Re: make oldfonfig broken.

2014-02-09 Thread Randy Dunlap
On 02/09/2014 08:14 PM, Gene Heskett wrote: > On Sunday 09 February 2014, Randy Dunlap wrote: >> On 02/09/2014 07:46 PM, Gene Heskett wrote: >>> On Sunday 09 February 2014, Randy Dunlap wrote: On 02/09/2014 07:07 PM, Ken Moffat wrote: > On Sun, Feb 09, 2014 at 06:05:41PM -0500, Gene Hesket

make oldfonfig broken.

2014-02-09 Thread Gene Heskett
On Sunday 09 February 2014, Randy Dunlap wrote: >On 02/09/2014 07:46 PM, Gene Heskett wrote: >> On Sunday 09 February 2014, Randy Dunlap wrote: >>> On 02/09/2014 07:07 PM, Ken Moffat wrote: On Sun, Feb 09, 2014 at 06:05:41PM -0500, Gene Heskett wrote: > On Sunday 09 February 2014, Paul Bol

RE: [PATCH 1/8] ASoC: fsl: Add VF610 soc audio card Kconfig

2014-02-09 Thread li.xi...@freescale.com
> Subject: Re: [PATCH 1/8] ASoC: fsl: Add VF610 soc audio card Kconfig > > On Sun, Jan 26, 2014 at 05:15:05AM +, li.xi...@freescale.com wrote: > > > > ...for simple card since the whole idea is to support any CODEC with the > > > same driver we should probably just make sure that all the ind

[PATCH part1 v5 0/7] Introduce PCIe Device Serial Number capability support

2014-02-09 Thread Yijing Wang
This series is based on Bjorn's pci-next branch. Currently, more and more PCIe devices support PCIe DSN(Device Serial Number) capability, we can use this cap to identify device. In some platform, when we hotplug PCIe device, no interrupts will be received in system. So we can not identify the devic

[PATCH part1 v5 1/7] PCI: rework pci_find_next_ext_capability()

2014-02-09 Thread Yijing Wang
Rework pci_find_next_ext_capability(), use pci_bus_read_config_xxx() instead of pci_read_config_xxx(). So we can use this function before pci_dev setup. Signed-off-by: Yijing Wang --- drivers/pci/pci.c | 17 + include/linux/pci.h |2 +- 2 files changed, 10 insertions(+),

[PATCH part1 v5 6/7] PCI: Check pci device serial number when scan device

2014-02-09 Thread Yijing Wang
Sometimes pci device will be removed and reinsert while suspended. In this case system can not identify the device has been changed. Now PCIe support Device Serial Number Capability which has the unique number. So make system check pci device DSN during scanning device if support. Signed-off-by: Y

[PATCH part1 v5 5/7] PCI: Add pci_dummy_ops to isolate pci device temporarily

2014-02-09 Thread Yijing Wang
Pci_dummy_ops does nothing when we use it to read/write pci_device. So we can isolate pci device by replace its bus pci_ops by pci_dummy_ops. This is preparation for the later patch. Signed-off-by: Yijing Wang --- drivers/pci/pci.c | 54 +++ in

[PATCH part1 v5 2/7] PCI: introduce pci_bus_find_ext_capability()

2014-02-09 Thread Yijing Wang
Sometimes we need to find PCI EXT CAP before pci_dev set up. So introduce pci_bus_find_ext_capability(), it will be used to get PCI EXT DSN before pci_dev set up. Signed-off-by: Yijing Wang --- drivers/pci/pci.c | 31 +++ include/linux/pci.h |1 + 2 files chan

[PATCH part1 v5 7/7] PCI: pciehp: Don't enable/disable slot on resume unless status changed

2014-02-09 Thread Yijing Wang
Currently pciehp_resume() always enables the slot if it is occupied. But often the slot was already occupied before the suspend, so we complain like this: pciehp :00:1c.1:pcie04: Device :03:00.0 already exists at :03:00, cannot hot-add pciehp :00:1c.1:pcie04: Cannot add d

[PATCH part1 v5 3/7] PCI: Add support for Device Serial Number capability

2014-02-09 Thread Yijing Wang
Add support for the Device Serial Number capability, so we can use the unique device serial number to identify the physical device. This helps determine whether a device was replaced while the system was suspended. [bhelgaas: changelog, drop pci_dsn_init(), spell out "serial_number"] Reviewed-by:

[PATCH part1 v5 4/7] PCI: Introduce pci_serial_number_changed()

2014-02-09 Thread Yijing Wang
Sometimes OS do not know the physical device swap, for instance, some device hotplug during system suspend. Interrupt can not deliver to OS in some platform. So we can use pci serial number capability to detect this issue if device supports serial number. Signed-off-by: Yijing Wang Cc: Paul Bolle

Linux, UEFI, and Chromebooks (was RE: [PATCH 0/4] EFI 1:1 mapping)

2014-02-09 Thread Yuhong Bao
> On Mon, Jun 03, 2013 at 09:35:07AM -0700, James Bottomley wrote: >> On Mon, 2013-06-03 at 17:24 +0100, Matthew Garrett wrote: >>> That seems optimistic. Windows never calls QueryVariableInfo() during >>> boot services, so what makes you think doing so has ever been tested? >> >> It's used by the

Re: [PATCH -tip v6 00/22] kprobes: introduce NOKPROBE_SYMBOL(), cleanup and fixes crash bugs

2014-02-09 Thread Masami Hiramatsu
(2014/02/09 23:37), Ingo Molnar wrote: > > * Masami Hiramatsu wrote: > >> I guess the second reason is why the stap takes so long time to set >> probes. stap tries to register kprobes without disabled flag, that >> means we enables thousands of probes (overheads). >> >> So the similar thing ha

Re: [PATCH 19/21] fs: Add prototype declaration to header file include/linux/syscalls.h

2014-02-09 Thread Josh Triplett
On Sun, Feb 09, 2014 at 06:58:34PM +0530, Rashika Kheria wrote: > Add prototype declaration to header file include/linux/syscalls.h > because it is used by more than one file. > > This eliminates the following warning in quota/compat.c: > fs/quota/compat.c:43:17: warning: no previous prototype for

linux-next: manual merge of the akpm-current tree with the rcu tree

2014-02-09 Thread Stephen Rothwell
Hi Andrew, Today's linux-next merge of the akpm-current tree got a conflict in mm/slub.c between commit f4e40a71719d ("slub: Fix add_full() lockdep checks") from the rcu tree and commit aee03fe7a7c8 ("mm/slub.c: list_lock may not be held in some circumstances") from the akpm-current tree. These p

Re: [PATCH 24/28] Remove DEPRECATED

2014-02-09 Thread Randy Dunlap
On 02/09/2014 07:46 PM, Gene Heskett wrote: > On Sunday 09 February 2014, Randy Dunlap wrote: >> On 02/09/2014 07:07 PM, Ken Moffat wrote: >>> On Sun, Feb 09, 2014 at 06:05:41PM -0500, Gene Heskett wrote: On Sunday 09 February 2014, Paul Bolle wrote: > Feel free to open a new thread, with

Re: [RFC][PATCH 0/5] arch: atomic rework

2014-02-09 Thread Paul E. McKenney
On Mon, Feb 10, 2014 at 01:06:48AM +0100, Torvald Riegel wrote: > On Thu, 2014-02-06 at 20:20 -0800, Paul E. McKenney wrote: > > On Fri, Feb 07, 2014 at 12:44:48AM +0100, Torvald Riegel wrote: > > > On Thu, 2014-02-06 at 14:11 -0800, Paul E. McKenney wrote: > > > > On Thu, Feb 06, 2014 at 10:17:03P

Re: [PATCH 1/2] PPC: powernv: remove redundant cpuidle_idle_call()

2014-02-09 Thread Preeti U Murthy
Hi Peter, On 02/07/2014 06:11 PM, Peter Zijlstra wrote: > On Fri, Feb 07, 2014 at 05:11:26PM +0530, Preeti U Murthy wrote: >> But observe the idle state "snooze" on powerpc. The power that this idle >> state saves is through the lowering of the thread priority of the CPU. >> After it lowers the th

Re: [RFC][PATCH 0/5] arch: atomic rework

2014-02-09 Thread Paul E. McKenney
On Mon, Feb 10, 2014 at 01:27:51AM +0100, Torvald Riegel wrote: > On Fri, 2014-02-07 at 10:02 -0800, Paul E. McKenney wrote: > > On Fri, Feb 07, 2014 at 04:55:48PM +, Will Deacon wrote: [ . . . ] > > And then it is a short and uncontroversial step to the following: > > > > Initial state: x =

WARNING: CPU: 1 PID: 0 at kernel/time/tick-broadcast.c:668 tick_broadcast_oneshot_control+0x17d/0x190()

2014-02-09 Thread poma
Let's have one last round of Champions! [ 83.558497] [ cut here ] [ 83.558503] WARNING: CPU: 1 PID: 0 at kernel/time/tick-broadcast.c:668 tick_broadcast_oneshot_control+0x17d/0x190() [ 83.558527] Modules linked in: ipt_MASQUERADE iptable_nat nf_nat_ipv4 nf_nat nf_co

Re: Linux 3.14-rc2

2014-02-09 Thread Stephen Rothwell
Hi Linus, > Anyway, what little there was looks normal: roughly two thirds drivers > (gpu, block, media, misc), with almost half the remaining patches > being architecture updates (x86, s390 and arm64). With the rest being > filesystems (vfs, nfs, ocfs, btrfs and some kernfs fixes), some mm > nois

Linux 3.14-rc2

2014-02-09 Thread Linus Torvalds
It's been pretty quiet, actually, which should make me happy. But I have a suspicious nature, and I'm going to wait to see if the other shoe drops, and people are just lulling me into a false sense of security. Because I know kernel developers, and they are sneaky. I suspect Davem (to pick somebod

Re: [PATCHv2 2/2] arm: Get rid of meminfo

2014-02-09 Thread Laura Abbott
On 2/6/2014 6:09 PM, Courtney Cavin wrote: On Wed, Feb 05, 2014 at 01:02:31AM +0100, Laura Abbott wrote: memblock is now fully integrated into the kernel and is the prefered method for tracking memory. Rather than reinvent the wheel with meminfo, migrate to using memblock directly instead of mem

Re: [RFC][PATCH 0/5] arch: atomic rework

2014-02-09 Thread Paul E. McKenney
On Mon, Feb 10, 2014 at 01:27:51AM +0100, Torvald Riegel wrote: > On Fri, 2014-02-07 at 10:02 -0800, Paul E. McKenney wrote: > > On Fri, Feb 07, 2014 at 04:55:48PM +, Will Deacon wrote: > > > Hi Paul, > > > > > > On Fri, Feb 07, 2014 at 04:50:28PM +, Paul E. McKenney wrote: > > > > On Fri,

Re: [PATCH v1 07/10] perf/x86/uncore: allow more than one fixed counter per box

2014-02-09 Thread Yan, Zheng
On 02/03/2014 08:55 PM, Stephane Eranian wrote: > This patch modifies some of the helper functions to support > more than one fixed counter per uncore PCI PMU box. > > Signed-off-by: Stephane Eranian > --- > arch/x86/kernel/cpu/perf_event_intel_uncore.c |4 ++-- > arch/x86/kernel/cpu/perf_ev

Re: [PATCH 7/7] perf tools: Show absolute percentage by default

2014-02-09 Thread Namhyung Kim
Oops, please ignore this. This was a leftover from last change.. sorry :( (actually, it's same as patch 8/8). Thanks, Namhyung 2014-02-10 오전 11:47, Namhyung Kim 쓴 글: Now perf report will show absolute percentage on filter entries by default. Suggested-by: Jiri Olsa Signed-off-by: Namhyung

Re: [PATCH][Trivial] tcp: correct code comment stating 3 min timeout for FIN_WAIT2, we only do 1 min

2014-02-09 Thread David Miller
From: Jesper Juhl Date: Sun, 9 Feb 2014 23:30:32 +0100 (CET) > As far as I can tell we have used a default of 60 seconds for > FIN_WAIT2 timeout for ages (since 2.x times??). > > In any case, the timeout these days is 60 seconds, so the 3 min > comment is wrong (and cost me a few minutes of my l

Re: [PATCH 24/28] Remove DEPRECATED

2014-02-09 Thread Randy Dunlap
On 02/09/2014 07:07 PM, Ken Moffat wrote: > On Sun, Feb 09, 2014 at 06:05:41PM -0500, Gene Heskett wrote: >> On Sunday 09 February 2014, Paul Bolle wrote: >>> >>> Feel free to open a new thread, with the relevant details, and involve >>> the relevant people and lists. I have no idea what you're goi

  1   2   3   4   5   >