[PATCH v4 1/5] xhci: add a quirk for device disconnection errata for Synopsis Designware USB3 core

2015-02-16 Thread Sneeker Yeh
This issue is defined by a three-way race at disconnect, between 1) Class driver interrupt endpoint resheduling attempts if the ISR gave an ep error event due to device detach (it would try 3 times) 2) Disconnect interrupt on PORTSC_CSC, which is cleared by hub thread asynchronously 3) The

[PATCH v4 3/5] usb: dwc3: add revision number DWC3_REVISION_290A and DWC3_REVISION_300A

2015-02-16 Thread Sneeker Yeh
Add the contstant for v2.90a and v3.00a dwc3 IP detection Signed-off-by: Sneeker Yeh sneeker@tw.fujitsu.com --- drivers/usb/dwc3/core.h |2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h index d201910..0b3bb0f 100644 ---

Re: [PATCH 41/45] include/uapi/sound/emu10k1.h: hide gpr_valid, tram_valid and code_valid in userspace

2015-02-16 Thread Takashi Iwai
At Tue, 17 Feb 2015 00:05:44 +0100, Mikko Rapeli wrote: The DECLARE_BITMAP macro is not available in userspace headers. Fixes userspace compile error: error: expected specifier-qualifier-list before ‘DECLARE_BITMAP’ It's nonsense. This results in an incompatible structure, thus ABI would be

Re: [PATCH 24/45] hdspm.h: include stdint.h in userspace

2015-02-16 Thread Takashi Iwai
At Tue, 17 Feb 2015 00:05:27 +0100, Mikko Rapeli wrote: Fixes compilation error: sound/hdspm.h:43:2: error: unknown type name ‘uint32_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi Applied for 3.21, thanks. Takashi --- include/uapi/sound/hdspm.h | 6 ++ 1 file changed, 6

Re: [PATCH] compat: Fix endian issue in union sigval

2015-02-16 Thread Bamvor Jian Zhang
On 2015/2/14 19:22, Catalin Marinas wrote: On Fri, Feb 13, 2015 at 04:56:29PM -0500, Chris Metcalf wrote: On 2/13/2015 5:44 AM, Catalin Marinas wrote: On Fri, Feb 13, 2015 at 04:00:43PM +0800, Bamvor Jian Zhang wrote: diff --git a/arch/arm64/kernel/signal32.c b/arch/arm64/kernel/signal32.c

Re: [PATCH 35/45] include/uapi/sound/asound.h: include stdlib.h in userspace

2015-02-16 Thread Takashi Iwai
At Tue, 17 Feb 2015 00:05:38 +0100, Mikko Rapeli wrote: Fixes compiler errors like: error: field ‘trigger_tstamp’ has incomplete type error: invalid application of ‘sizeof’ to incomplete t ype ‘struct timespec’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi Applied for 3.21, thanks.

Re: [PATCH 39/45] include/uapi/sound/asequencer.h: include sound/asound.h

2015-02-16 Thread Takashi Iwai
At Tue, 17 Feb 2015 00:05:42 +0100, Mikko Rapeli wrote: Fixes userspace compilation error: error: unknown type name ‘snd_seq_client_type_t’ snd_seq_client_type_t type; /* client type */ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi Applied for 3.21, thanks. Takashi ---

Re: [PATCH 40/45] include/uapi/sound/emu10k1.h: include sound/asound.h

2015-02-16 Thread Takashi Iwai
At Tue, 17 Feb 2015 00:05:43 +0100, Mikko Rapeli wrote: Fixes userspace compilation errors like: error: field ‘id’ has incomplete type struct snd_ctl_elem_id id; /* full control ID definition */ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi Applied for 3.21, thanks. Takashi ---

[PATCH 1/2] ASoC: pcm512x: Rearrange to not repeat dacsrc_rate / dac_div

2015-02-16 Thread Peter Rosin
From: Peter Rosin p...@axentia.se Signed-off-by: Peter Rosin p...@axentia.se --- sound/soc/codecs/pcm512x.c | 19 ++- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/sound/soc/codecs/pcm512x.c b/sound/soc/codecs/pcm512x.c index 884784fb1566..f13ff7578c78 100644

[PATCH 2/2] ASoC: pcm512x: Allow independently overclocking PLL, DAC and DSP

2015-02-16 Thread Peter Rosin
From: Peter Rosin p...@axentia.se When using non-standard rates, a relatively small amount of overclocking can make a big difference to a number of cases. - Not all rates are possible to achieve with the PLL, due to divider restrictions. - The higher oversampling rates that can be used by the

targeting dm-crypt cpu scalability changes for 3.20 still [was: Re: [git pull] device mapper changes for 3.16]

2015-02-16 Thread Mike Snitzer
On Thu, Jun 12 2014 at 10:13am -0400, Mike Snitzer snit...@redhat.com wrote: Hi Linus, This pull request is later than I'd have liked because I was waiting for some performance data to help finally justify sending the long-standing dm-crypt cpu scalability improvements upstream.

Re: [PATCH RESEND] x86:pci: Change sta2x11_dma_ops stucture to use switolb_dma_supported as it's dma_supported function in sta2x11-fixup.c

2015-02-16 Thread Bjorn Helgaas
On Sun, Feb 15, 2015 at 1:54 PM, Nicholas Krause xerofo...@gmail.com wrote: This changes the structure sta2x11_dma_ops stucture to use switolb_dma_supported as it's function for dma_supported hardware verus setting this value to NULL as this should be set correctly for when dma_supported

Re: n900 audio: any ideas how to get headset speaker to work?

2015-02-16 Thread Patrik Bachan aka DiGGiT
2015-02-16 10:57 GMT+01:00 Pavel Machek pa...@ucw.cz: Ahoj! By default, output goes to loudspeaker (top right relative to keyboard). Any ideas how to switch it to the speaker on the left or wired headset? Because I suspect that echo cancelation is not going to be simple...

[PATCH 1/2] ocfs2: remove useless if statement

2015-02-16 Thread Daeseok Youn
The Local variable i in for loop is always less then O2CB_MAP_STABILIZE_COUNT. Signed-off-by: Daeseok Youn daeseok.y...@gmail.com --- fs/ocfs2/stack_o2cb.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/ocfs2/stack_o2cb.c b/fs/ocfs2/stack_o2cb.c index

[PATCH 2/2] ocfs2: remove unneeded 'rc' for kfree()

2015-02-16 Thread Daeseok Youn
If kzalloc() is failed, just goto 'out' label and 'out_free' label doesn't need to check 'rc' variable. Signed-off-by: Daeseok Youn daeseok.y...@gmail.com --- fs/ocfs2/stack_o2cb.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/ocfs2/stack_o2cb.c

Re: [PATCH 02/45] scripts/headers.sh: add verbose option to make calls if defined

2015-02-16 Thread Masahiro Yamada
On Tue, 17 Feb 2015 00:05:05 +0100 Mikko Rapeli mikko.rap...@iki.fi wrote: Useful when debugging the scripts. Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- scripts/headers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/headers.sh

Re: [PATCH 01/45] Makefile: propagate verbose options

2015-02-16 Thread Masahiro Yamada
Hi Mikko, On Tue, 17 Feb 2015 00:05:04 +0100 Mikko Rapeli mikko.rap...@iki.fi wrote: Usefull when debugging the make scripts. Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- Makefile | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile

Re: [PATCH] compat: Fix endian issue in union sigval

2015-02-16 Thread Bamvor Jian Zhang
On 2015/2/13 18:44, Catalin Marinas wrote: On Fri, Feb 13, 2015 at 04:00:43PM +0800, Bamvor Jian Zhang wrote: On 2015/2/11 23:40, Catalin Marinas wrote: On Wed, Feb 11, 2015 at 07:22:08PM +0800, Bamvor Jian Zhang wrote: On 2015/2/10 20:27, Catalin Marinas wrote: On Tue, Feb 10, 2015 at

powerpc: fsl,pq2-localbus is broken for ages

2015-02-16 Thread Nikita Yushchenko
Hi arch/powerpc/sysdev/fsl_lbc.c driver claims that it is compatible with fsl,pq2-localbus and fsl,pq2pro-localbus arch/powerpc/sysdev/fsl_lbc.c driver requires irq configured in device tree since very old times (commit 3ab8f2a2 from 2.6.37 times) None of in-tree dts files that have either

Re: [PATCH v3 05/15] h8300: Process and signal

2015-02-16 Thread Yoshinori Sato
At Sun, 15 Feb 2015 20:38:25 +0100, Richard Weinberger wrote: On Sun, Feb 15, 2015 at 8:49 AM, Yoshinori Sato ys...@users.sourceforge.jp wrote: + usig = current_thread_info()-exec_domain +current_thread_info()-exec_domain-signal_invmap +sig 32 +

Re: [PATCH v3 00/15] Revert h8300 archtecture

2015-02-16 Thread Yoshinori Sato
At Sun, 15 Feb 2015 11:59:19 +0100, Paul Bolle wrote: On Sun, 2015-02-15 at 16:49 +0900, Yoshinori Sato wrote: Yoshinori Sato (15): h8300: Assembly headers. h8300: UAPI headers h8300: Exception and Interrupt handling h8300: kernel booting h8300: Process and signal

Re: [PATCH v3 10/15] h8300: Build scripts

2015-02-16 Thread Yoshinori Sato
At Sun, 15 Feb 2015 20:23:04 +0100, Paul Bolle wrote: On Sun, 2015-02-15 at 16:49 +0900, Yoshinori Sato wrote: Signed-off-by: Yoshinori Sato ys...@users.sourceforge.jp --- arch/h8300/Kconfig | 119 +++ arch/h8300/Kconfig.cpu | 136

Re: [PATCH v3 01/15] h8300: Assembly headers.

2015-02-16 Thread Yoshinori Sato
At Sun, 15 Feb 2015 10:11:58 +0100, Geert Uytterhoeven wrote: Hi Sato-san, On Sun, Feb 15, 2015 at 8:49 AM, Yoshinori Sato ys...@users.sourceforge.jp wrote: --- /dev/null +++ b/arch/h8300/include/asm/io.h @@ -0,0 +1,372 @@ +#ifndef _H8300_IO_H +#define _H8300_IO_H + +#ifdef

Re: [PATCH v3 05/15] h8300: Process and signal

2015-02-16 Thread Yoshinori Sato
At Sun, 15 Feb 2015 11:33:25 +0100, Paul Bolle wrote: On Sun, 2015-02-15 at 17:11 +0900, Yoshinori Sato wrote: Sorry. I send too old files. This patch is correct. Signed-off-by: Yoshinori Sato ys...@users.sourceforge.jp --- arch/h8300/kernel/process.c | 170 +++

Re: [PATCH v4 2/4] mfd: lubbock_cplds: add lubbock IO board

2015-02-16 Thread Lee Jones
Arnd, Greg, Perhaps you have some ideas WRT programmables (PLDs/CPLDs/FPGAs)? On Mon, 16 Feb 2015, Robert Jarzmik wrote: Lee Jones wrote: What's all this? Please configure your mail client correctly. For advice, see: Documentation/email-clients.txt While at day work, I have only

Re: [PATCH 1/1] kernel/fork.c: avoid division by zero

2015-02-16 Thread Vladimir Davydov
On Mon, Feb 16, 2015 at 07:00:44PM +0100, Heinrich Schuchardt wrote: diff --git a/kernel/fork.c b/kernel/fork.c index cf65139..71e2583 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -273,7 +273,8 @@ void __init fork_init(unsigned long mempages) * value: the thread structures can

[PATCH 10/45] r128_drm.h: include drm/drm.h

2015-02-16 Thread Mikko Rapeli
Fixes compile error: drm/r128_drm.h:156:23: error: array type has incomplete element type struct drm_clip_rect boxes[R128_NR_SAREA_CLIPRECTS]; Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/drm/r128_drm.h | 2 ++ 1 file changed, 2 insertions(+) diff --git

[PATCH 06/45] drm_mode.h: include stdint.h and linux/types.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: drm/drm_mode.h:472:2: error: unknown type name ‘uint32_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/drm/drm_mode.h | 5 + 1 file changed, 5 insertions(+) diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h index

[PATCH 08/45] nouveau_drm.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: drm/nouveau_drm.h:41:2: error: unknown type name ‘uint32_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/drm/nouveau_drm.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/uapi/drm/nouveau_drm.h b/include/uapi/drm/nouveau_drm.h index

Re: [PATCH RESEND 1/12] fs: Add support FALLOC_FL_INSERT_RANGE for fallocate

2015-02-16 Thread Dave Chinner
On Tue, Feb 17, 2015 at 12:47:48AM +0900, Namjae Jeon wrote: From: Namjae Jeon namjae.j...@samsung.com FALLOC_FL_INSERT_RANGE command is the opposite command of FALLOC_FL_COLLAPSE_RANGE that is needed for advertisers or someone who want to add some data in the middle of file.

Re: [PATCH] module: do not print allocation-fail warning on bogus user buffer size

2015-02-16 Thread Rusty Russell
Kirill A. Shutemov kirill.shute...@linux.intel.com writes: init_module(2) passes user-specified buffer length directly to vmalloc(). It makes warn_alloc_failed() to print out a lot of info into dmesg if user specified insane size, like -1. Let's silence the warning. It doesn't add much value

Re: [PATCH v11 19/19] kasan: enable instrumentation of global variables

2015-02-16 Thread Rusty Russell
Andrey Ryabinin a.ryabi...@samsung.com writes: On 02/16/2015 05:58 AM, Rusty Russell wrote: Andrey Ryabinin a.ryabi...@samsung.com writes: This feature let us to detect accesses out of bounds of global variables. This will work as for globals in kernel image, so for globals in modules.

Re: [GIT PULL] please pull file-locking related changes for v3.20

2015-02-16 Thread Jeff Layton
On Mon, 16 Feb 2015 11:24:03 -0800 Linus Torvalds torva...@linux-foundation.org wrote: On Mon, Feb 16, 2015 at 10:46 AM, Linus Torvalds torva...@linux-foundation.org wrote: This code is so broken that my initial reaction is We need to just revert the crap. How the hell is

RE: [PATCH v3] modify the IO_TLB_SEGSIZE and IO_TLB_DEFAULT_SIZE configurable as flexible requirement about SW-IOMMU.

2015-02-16 Thread Wang, Xiaoming
Dear Wilk -Original Message- From: Konrad Rzeszutek Wilk [mailto:konrad.w...@oracle.com] Sent: Tuesday, February 17, 2015 6:13 AM To: Wang, Xiaoming Cc: r...@linux-mips.org; boris.ostrov...@oracle.com; david.vra...@citrix.com; linux-m...@linux-mips.org; linux-

Re: [GIT PULL] please pull file-locking related changes for v3.20

2015-02-16 Thread Linus Torvalds
On Mon, Feb 16, 2015 at 4:02 PM, Jeff Layton jlay...@poochiereds.net wrote: Now that I look, it may be best to just revert this whole set for now. Linus, are you amenable to doing that? Sure. But I'd prefer seeing how hard it would be to fix things first. If this was at the end of the release

Re: [PATCH RESEND 4/12] xfsprog: xfsio: update xfs_io manpage for FALLOC_FL_INSERT_RANGE

2015-02-16 Thread Dave Chinner
On Tue, Feb 17, 2015 at 12:47:51AM +0900, Namjae Jeon wrote: From: Namjae Jeon namjae.j...@samsung.com Update xfs_io manpage for FALLOC_FL_INSERT_RANGE. Signed-off-by: Namjae Jeon namjae.j...@samsung.com Signed-off-by: Ashish Sangwan a.sang...@samsung.com Looks good. That'll fix up the

Re: [PATCH v2] mtd:spi-nor: Add Altera EPCQ Driver

2015-02-16 Thread Viet Nga Dao
Hi Brian, Could you please help me to review through this 2nd version? On Wed, Feb 11, 2015 at 12:53 PM, Viet Nga Dao vn...@altera.com wrote: From: Viet Nga Dao vn...@altera.com Altera EPCQ Controller is a soft IP which enables access to Altera EPCQ and EPCS flash chips. This patch adds

[PATCH 3.2 011/152] KVM: s390: flush CPU on load control

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Christian Borntraeger borntrae...@de.ibm.com commit 2dca485f8740208604543c3960be31a5dd3ea603 upstream. some control register changes will flush some aspects of the CPU, e.g. POP explicitely

[PATCH 3.2 078/152] Revert tcp: Apply device TSO segment limit earlier

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Ben Hutchings b...@decadent.org.uk This reverts commit 9f871e883277cc22c6217db806376dce52401a31, which was commit 1485348d2424e1131ea42efc033cbd9366462b01 upstream. It can cause connections to

RE: [PATCH RESEND 1/12] fs: Add support FALLOC_FL_INSERT_RANGE for fallocate

2015-02-16 Thread Namjae Jeon
On Tue, Feb 17, 2015 at 12:47:48AM +0900, Namjae Jeon wrote: From: Namjae Jeon namjae.j...@samsung.com FALLOC_FL_INSERT_RANGE command is the opposite command of FALLOC_FL_COLLAPSE_RANGE that is needed for advertisers or someone who want to add some data in the middle of file.

[PATCH 3.2 063/152] x86/tls: Don't validate lm in set_thread_area() after all

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Andy Lutomirski l...@amacapital.net commit 3fb2f4237bb452eb4e98f6a5dbd5a445b4fed9d0 upstream. It turns out that there's a lurking ABI issue. GCC, when compiling this in a 32-bit program:

Re: [PATCH] usb: move definition of PCI_VENDOR_ID_SYNOPSYS to linux/pci_ids.h

2015-02-16 Thread Greg KH
On Mon, Feb 16, 2015 at 06:45:53PM -0700, Joseph Kogut wrote: Signed-off-by: Joseph Kogut joseph.ko...@gmail.com You need a changelog description here please. -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

Re: [PATCH 1/2] extcon: arizona: Deobfuscate arizona_extcon_do_magic

2015-02-16 Thread Mark Brown
On Mon, Feb 16, 2015 at 03:41:02PM +, Charles Keepax wrote: arizona_extcon_do_magic does not lend a lot of clarity to the purpose of the function, and as all the registers used are described in the datasheet there is no need to obfuscate the code. This patch renames the function to

[PATCH 3.2 030/152] Bluetooth: sort the list of IDs in the source code

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Andy Shevchenko andriy.shevche...@linux.intel.com commit 0b8800623d3f12dd40a039aa191d52bfa4eef5b4 upstream. This will help to manage table of supported IDs. There is no functional change.

[PATCH 3.2 109/152] ftrace/jprobes/x86: Fix conflict between jprobes and function graph tracing

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Steven Rostedt (Red Hat) rost...@goodmis.org commit 237d28db036e411f22c03cfd5b0f6dc2aa9bf3bc upstream. If the function graph tracer traces a jprobe callback, the system will crash. This can

Re: [PATCH 1/2] extcon: arizona: Deobfuscate arizona_extcon_do_magic

2015-02-16 Thread Chanwoo Choi
Hi Charles, On 02/17/2015 01:48 AM, Chanwoo Choi wrote: Hi Charles, On Tue, Feb 17, 2015 at 12:41 AM, Charles Keepax ckee...@opensource.wolfsonmicro.com wrote: arizona_extcon_do_magic does not lend a lot of clarity to the purpose of the function, and as all the registers used are

Re: [PATCH RESEND 11/12] xfstests: fsx: Add fallocate insert range operation

2015-02-16 Thread Dave Chinner
On Tue, Feb 17, 2015 at 12:47:58AM +0900, Namjae Jeon wrote: From: Namjae Jeon namjae.j...@samsung.com This commit adds fallocate FALLOC_FL_INSERT_RANGE support for fsx. Signed-off-by: Namjae Jeon namjae.j...@samsung.com Signed-off-by: Ashish Sangwan a.sang...@samsung.com Reviewed-by:

[PATCH] batman-adv: Remove uses of return value of seq_printf

2015-02-16 Thread Joe Perches
This function is soon going to return void so remove the return value use. Convert the return value to test seq_has_overflowed() instead. Signed-off-by: Joe Perches j...@perches.com --- net/batman-adv/gateway_client.c | 19 ++- 1 file changed, 10 insertions(+), 9 deletions(-)

[PATCH] usb: move definition of PCI_VENDOR_ID_SYNOPSYS to linux/pci_ids.h

2015-02-16 Thread Joseph Kogut
Signed-off-by: Joseph Kogut joseph.ko...@gmail.com --- drivers/usb/dwc2/pci.c | 1 - drivers/usb/dwc3/dwc3-pci.c | 2 -- include/linux/pci_ids.h | 2 ++ 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/usb/dwc2/pci.c b/drivers/usb/dwc2/pci.c index a4e724b..6646adb

[PATCH 3.2 052/152] fib_trie: Fix /proc/net/fib_trie when CONFIG_IP_MULTIPLE_TABLES is not defined

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Alexander Duyck alexander.h.du...@redhat.com commit a5a519b2710be43fce3cf9ce7bd8de8db3f2a9de upstream. In recent testing I had disabled CONFIG_IP_MULTIPLE_TABLES and as a result when I ran cat

[PATCH 3.2 027/152] Bluetooth: Enable Atheros 0cf3:311e for firmware upload

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Oliver Neukum oli...@neukum.org commit b131237ca3995edad9efc162d0bc959c3b1dddc2 upstream. The device will bind to btusb without firmware, but with the original buggy firmware device discovery

[PATCH 3.2 036/152] Add a new PID/VID 0227/0930 for AR3012.

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Vincent Zwanenburg vince...@topmail.ie commit 89d2975fa06e66ea0d3665d91f799fb1ce4b8bad upstream. usb devices info: T: Bus=01 Lev=02 Prnt=05 Port=00 Cnt=01 Dev#= 20 Spd=12 MxCh= 0 D: Ver=

[PATCH 3.2 021/152] mfd: tc6393xb: Fail ohci suspend if full state restore is required

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Dmitry Eremin-Solenikov dbarysh...@gmail.com commit 1a5fb99de4850cba710d91becfa2c65653048589 upstream. Some boards with TC6393XB chip require full state restore during system resume thanks to

Re: [PATCH V4] tick/hotplug: Handover time related duties before cpu offline

2015-02-16 Thread Michael Ellerman
On Sat, 2015-01-31 at 09:44 +0530, Preeti U Murthy wrote: These duties include do_timer to update jiffies and broadcast wakeups on those platforms which do not have an external device to handle wakeup of cpus from deep idle states. The handover of these duties is not robust against a cpu

[PATCH 15/45] dm-log-userspace.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: linux/dm-log-userspace.h:416:2: error: unknown type name ‘uint64_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/linux/dm-log-userspace.h | 5 + 1 file changed, 5 insertions(+) diff --git a/include/uapi/linux/dm-log-userspace.h

[PATCH 16/45] hsi_char.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compiler error: linux/hsi/hsi_char.h:51:2: error: unknown type name ‘uint32_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/linux/hsi/hsi_char.h | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/uapi/linux/hsi/hsi_char.h

[PATCH 18/45] cld.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: linux/nfsd/cld.h:40:2: error: unknown type name ‘uint16_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/linux/nfsd/cld.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/uapi/linux/nfsd/cld.h b/include/uapi/linux/nfsd/cld.h index

[PATCH 11/45] via_drm.h: include linux/types.h instead of non-existing via_drmclient.h

2015-02-16 Thread Mikko Rapeli
Fixes compiler error: drm/via_drm.h:36:27: fatal error: via_drmclient.h: No such file or directory Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/drm/via_drm.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/uapi/drm/via_drm.h

Re: [PATCH 15/45] dm-log-userspace.h: include stdint.h in userspace

2015-02-16 Thread Mike Snitzer
On Mon, Feb 16 2015 at 6:05pm -0500, Mikko Rapeli mikko.rap...@iki.fi wrote: Fixes compilation error: linux/dm-log-userspace.h:416:2: error: unknown type name ‘uint64_t’ What userspace code are you compiling? Do you have a feel for when this stopped working? -- To unsubscribe from this

Re: [PATCH 15/45] dm-log-userspace.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
On Mon, Feb 16, 2015 at 06:32:54PM -0500, Mike Snitzer wrote: On Mon, Feb 16 2015 at 6:05pm -0500, Mikko Rapeli mikko.rap...@iki.fi wrote: Fixes compilation error: linux/dm-log-userspace.h:416:2: error: unknown type name ‘uint64_t’ What userspace code are you compiling? Do you have

Re: [GIT PULL] please pull file-locking related changes for v3.20

2015-02-16 Thread Jeff Layton
On Mon, 16 Feb 2015 16:21:30 -0800 Linus Torvalds torva...@linux-foundation.org wrote: On Mon, Feb 16, 2015 at 4:02 PM, Jeff Layton jlay...@poochiereds.net wrote: Now that I look, it may be best to just revert this whole set for now. Linus, are you amenable to doing that? Sure. But I'd

Re: [PATCH RESEND 2/12] xfs: Add support FALLOC_FL_INSERT_RANGE for fallocate

2015-02-16 Thread Dave Chinner
On Tue, Feb 17, 2015 at 12:47:49AM +0900, Namjae Jeon wrote: From: Namjae Jeon namjae.j...@samsung.com This patch implements fallocate's FALLOC_FL_INSERT_RANGE for XFS. 1) Make sure that both offset and len are block size aligned. 2) Update the i_size of inode by len bytes. 3) Compute the

[PATCH net-next] netfilter: Remove uses of return value of seq_printf/puts/putc

2015-02-16 Thread Joe Perches
These functions are soon going to return void so remove the return value uses. Convert the return value to test seq_has_overflowed() instead. Signed-off-by: Joe Perches j...@perches.com --- net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c | 4 +++- net/netfilter/nf_conntrack_acct.c

Re: [PATCH V6 03/10] USB: f81232: implement RX bulk-in ep

2015-02-16 Thread Peter Hung
Hello, Greg KH 於 2015/2/17 上午 03:41 寫道: + if (unlikely(data[i+0] UART_LSR_BRK_ERROR_BITS)) { Never use unlikely() unless you can prove that it actually matters if you use it. Hint, it's almost impossible to prove, so don't use it, the compiler and processor look-ahead is

RE: [PATCH RESEND 11/12] xfstests: fsx: Add fallocate insert range operation

2015-02-16 Thread Namjae Jeon
On Tue, Feb 17, 2015 at 12:47:58AM +0900, Namjae Jeon wrote: From: Namjae Jeon namjae.j...@samsung.com This commit adds fallocate FALLOC_FL_INSERT_RANGE support for fsx. Signed-off-by: Namjae Jeon namjae.j...@samsung.com Signed-off-by: Ashish Sangwan a.sang...@samsung.com

[PATCH 3.2 151/152] KVM: x86 emulator: reject SYSENTER in compatibility mode on AMD guests

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Avi Kivity a...@redhat.com commit 1a18a69b762374c423305772500f36eb8984ca52 upstream. If the guest thinks it's an AMD, it will not have prepared the SYSENTER MSRs, and if the guest executes

[PATCH 3.2 042/152] ALSA: hda - using uninitialized data

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Dan Carpenter dan.carpen...@oracle.com commit 69eba10e606a80665f8573221fec589430d9d1cb upstream. In olden times the snd_hda_param_read() function always set *start_id but in 2007 we introduced

Re: [PATCH 0/2] ASoC: pcm512x: Add knobs to allow and control overclocking

2015-02-16 Thread Mark Brown
On Mon, Feb 16, 2015 at 10:02:46PM +0100, Peter Rosin wrote: I wasn't sure if I should add Documentation/* for these sysfs knobs or not? A lot of knobs do not have docs... And I'm not sure how I should name the doc-file since the pcm512x driver handles devices connected with both i2c and spi.

[PATCH 3.2 034/152] Bluetooth: Add support for Acer [13D3:3432]

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Anantha Krishnan anan...@codeaurora.org commit fa2f1394fe9c1a217213f02df77812701de6362f upstream. Add support for the QCA6174 chip. T: Bus=04 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 30 Spd=12

[PATCH 3.2 033/152] Bluetooth: Ignore isochronous endpoints for Intel USB bootloader

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Marcel Holtmann mar...@holtmann.org commit d92f2df0565ea04101d6ac04bdc10feeb1d93c94 upstream. The isochronous endpoints are not valid when the Intel Bluetooth controller boots up in bootloader

[PATCH 3.2 029/152] Bluetooth: btusb: Add IMC Networks (Broadcom based)

2015-02-16 Thread Ben Hutchings
3.2.67-rc1 review patch. If anyone has any objections, please let me know. -- From: Jurgen Kramer gtmkra...@xs4all.nl commit 9113bfd82dc8ece9cbb898df8794f58a78a36e97 upstream. Add support for IMC Networks (Broadcom based) to btusb driver. Below the output of

[PATCH 37/45] include/uapi/linux/socket.h: include sys/socket.h in userspace

2015-02-16 Thread Mikko Rapeli
This libc header has sockaddr definition for userspace. Fixes compilation errors like: error: field ‘ifru_addr’ has incomplete type struct sockaddr ifru_addr; Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/linux/socket.h | 4 1 file changed, 4 insertions(+) diff --git

[PATCH 42/45] include/uapi/linux/rds.h: include linux/socket.h and linux/types.h always

2015-02-16 Thread Mikko Rapeli
Fixes compilation errors in userspace like: error: unknown type name ‘__be32’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/linux/rds.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/uapi/linux/rds.h b/include/uapi/linux/rds.h index

[PATCH 30/45] include/uapi/asm-generic/shmbuf.h: include fixes

2015-02-16 Thread Mikko Rapeli
Fixes userspace compilation errors like: error: field ‘shm_perm’ has incomplete type struct ipc64_perm shm_perm; /* operation perms */ error: unknown type name ‘size_t’ error: unknown type name ‘__kernel_time_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi ---

[PATCH 41/45] include/uapi/sound/emu10k1.h: hide gpr_valid, tram_valid and code_valid in userspace

2015-02-16 Thread Mikko Rapeli
The DECLARE_BITMAP macro is not available in userspace headers. Fixes userspace compile error: error: expected specifier-qualifier-list before ‘DECLARE_BITMAP’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/sound/emu10k1.h | 6 ++ 1 file changed, 6 insertions(+) diff --git

[PATCH 34/45] include/uapi/asm-generic/signal.h: hide sigset_t definition in userspace

2015-02-16 Thread Mikko Rapeli
It is already defined by libc headers in /usr/include/i386-linux-gnu/sys/select.h Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/asm-generic/signal.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/uapi/asm-generic/signal.h b/include/uapi/asm-generic/signal.h

[PATCH 36/45] include/uapi/linux/netfilter.h: include in.h and in6.h

2015-02-16 Thread Mikko Rapeli
Fixes userspace compile errors like: error: field ‘in’ has incomplete type error: field ‘in6’ has incomplete type Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/linux/netfilter.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH 23/45] scsi_netlink_fc.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: scsi/scsi_netlink_fc.h:60:2: error: expected specifier-qualifier-list before ‘uint64_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/scsi/scsi_netlink_fc.h | 5 + 1 file changed, 5 insertions(+) diff --git a/include/uapi/scsi/scsi_netlink_fc.h

[PATCH 22/45] scsi_netlink.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: scsi/scsi_netlink.h:43:2: error: unknown type name ‘uint8_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/scsi/scsi_netlink.h | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/uapi/scsi/scsi_netlink.h

[PATCH 32/45] drm/i810_drm.h: include drm/drm.h

2015-02-16 Thread Mikko Rapeli
Fixes userspace compilation error: error: array type has incomplete element type struct drm_clip_rect boxes[I810_NR_SAREA_CLIPRECTS]; Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/drm/i810_drm.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/uapi/drm/i810_drm.h

[PATCH 25/45] gntalloc.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: xen/gntalloc.h:22:2: error: unknown type name ‘uint16_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/xen/gntalloc.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/uapi/xen/gntalloc.h b/include/uapi/xen/gntalloc.h index

[PATCH 24/45] hdspm.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: sound/hdspm.h:43:2: error: unknown type name ‘uint32_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/sound/hdspm.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/uapi/sound/hdspm.h b/include/uapi/sound/hdspm.h index

[PATCH 28/45] include/uapi/asm-generic/ipcbuf.h: include linux/posix_types.h

2015-02-16 Thread Mikko Rapeli
Fixes userspace compilation error: error: unknown type name ‘__kernel_key_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/asm-generic/ipcbuf.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/uapi/asm-generic/ipcbuf.h b/include/uapi/asm-generic/ipcbuf.h index

[PATCH 39/45] include/uapi/sound/asequencer.h: include sound/asound.h

2015-02-16 Thread Mikko Rapeli
Fixes userspace compilation error: error: unknown type name ‘snd_seq_client_type_t’ snd_seq_client_type_t type; /* client type */ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/sound/asequencer.h | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH 20/45] sctp.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: linux/sctp.h:652:2: error: unknown type name ‘uint32_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/linux/sctp.h | 4 1 file changed, 4 insertions(+) diff --git a/include/uapi/linux/sctp.h b/include/uapi/linux/sctp.h index ce70fe6..9fd31cf

[PATCH 38/45] include/uapi/linux/agpgart.h: include stdlib.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes userspace compiler error: error: unknown type name ‘size_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/linux/agpgart.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uapi/linux/agpgart.h b/include/uapi/linux/agpgart.h index 4e828cf..f525104 100644 ---

[PATCH 35/45] include/uapi/sound/asound.h: include stdlib.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compiler errors like: error: field ‘trigger_tstamp’ has incomplete type error: invalid application of ‘sizeof’ to incomplete t ype ‘struct timespec’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/sound/asound.h | 3 +++ 1 file changed, 3 insertions(+) diff --git

[PATCH 33/45] include/uapi/asm-generic/signal.h: include stdlib.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compiler warning: error: unknown type name ‘size_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/asm-generic/signal.h | 4 1 file changed, 4 insertions(+) diff --git a/include/uapi/asm-generic/signal.h b/include/uapi/asm-generic/signal.h index 9df61f1..8a341a2

[PATCH 44/45] nf_conntrack_tuple_common.h: include linux/types.h and linux/netfilter.h

2015-02-16 Thread Mikko Rapeli
Fixes userspace compilation errors like: error: unknown type name ‘__be16’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/linux/netfilter/nf_conntrack_tuple_common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/uapi/linux/netfilter/nf_conntrack_tuple_common.h

[no subject]

2015-02-16 Thread Veneisha Johnson
Brauchen Sie Finanzierung? Brauchen Sie ein Darlehen für Geschäfts- oder persönliche Bedürfnisse und Projektfinanzierung? Wollen Sie Ihr Geschäft zu refinanzieren? Unser Unternehmen ist in den Vereinigten Staaten Europa. Wir bieten Ihnen einen Kredit für jede Person oder Firma mit einem

[PATCH 40/45] include/uapi/sound/emu10k1.h: include sound/asound.h

2015-02-16 Thread Mikko Rapeli
Fixes userspace compilation errors like: error: field ‘id’ has incomplete type struct snd_ctl_elem_id id; /* full control ID definition */ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/sound/emu10k1.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git

[PATCH 31/45] asm-generic/sembuf.h: include asm/posix_types.h and asm/ipcbuf.h

2015-02-16 Thread Mikko Rapeli
Fixes userspace compilation errors like: error: field ‘msg_perm’ has incomplete type struct ipc64_perm msg_perm; error: unknown type name ‘__kernel_ulong_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/asm-generic/sembuf.h | 2 ++ 1 file changed, 2 insertions(+) diff --git

[PATCH 19/45] rds.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: linux/rds.h:96:2: error: unknown type name ‘uint8_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/linux/rds.h | 4 1 file changed, 4 insertions(+) diff --git a/include/uapi/linux/rds.h b/include/uapi/linux/rds.h index 9195095..7ff0c70 100644

[PATCH 21/45] scsi_bsg_fc.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: scsi/scsi_bsg_fc.h:83:2: error: unknown type name ‘uint8_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/scsi/scsi_bsg_fc.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/uapi/scsi/scsi_bsg_fc.h b/include/uapi/scsi/scsi_bsg_fc.h

[PATCH 26/45] gntdev.h: include stdint.h in userspace

2015-02-16 Thread Mikko Rapeli
Fixes compilation error: xen/gntdev.h:38:2: error: unknown type name ‘uint32_t’ Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- include/uapi/xen/gntdev.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/uapi/xen/gntdev.h b/include/uapi/xen/gntdev.h index 5304bd3..f724f75

[PATCH 02/45] scripts/headers.sh: add verbose option to make calls if defined

2015-02-16 Thread Mikko Rapeli
Useful when debugging the scripts. Signed-off-by: Mikko Rapeli mikko.rap...@iki.fi --- scripts/headers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/headers.sh b/scripts/headers.sh index 95ece06..aa62fd8 100755 --- a/scripts/headers.sh +++ b/scripts/headers.sh @@

Re: [PATCH 43/45] include/uapi/linux/netfilter_bridge.h: include if.h

2015-02-16 Thread Jan Engelhardt
On Tuesday 2015-02-17 00:05, Mikko Rapeli wrote: Fixes userspace compilation errors like: error: field ‘in’ has incomplete type struct in_addr in; +#include linux/if.h Patch 36/45 included linux/in.h instead of linux/if.h for addressing in has incomplete type. Should this be used here too?

Re: [git pull] drm pull for 3.20-rc1

2015-02-16 Thread Linus Torvalds
On Sun, Feb 15, 2015 at 10:43 PM, Dave Airlie airl...@linux.ie wrote: This is the main drm pull, it has a shared branch with some alsa crossover but everything should be acked by relevant people. Ugh. Your diffstat is crap, because you don't show the inexact renames that are very abundant in

Re: [RFC v2 01/10] fsl_bman: Add drivers for the Freescale DPAA BMan

2015-02-16 Thread Scott Wood
On Mon, 2015-02-16 at 09:46 -0600, Emil Medve wrote: From: Geoff Thorpe geoff.tho...@freescale.com Change-Id: I075944acf740dbaae861104c17a9ff7247dec1be Signed-off-by: Geoff Thorpe geoff.tho...@freescale.com Remove Change-Id. Provide a description of what BMan is. diff --git

Re: [PATCH RESEND 3/12] ext4: Add support FALLOC_FL_INSERT_RANGE for fallocate

2015-02-16 Thread Dave Chinner
On Tue, Feb 17, 2015 at 12:47:50AM +0900, Namjae Jeon wrote: From: Namjae Jeon namjae.j...@samsung.com This patch implements fallocate's FALLOC_FL_INSERT_RANGE for Ext4. 1) Make sure that both offset and len are block size aligned. 2) Update the i_size of inode by len bytes. 3) Compute

<    6   7   8   9   10   11   12   13   14   15   >