Re: [PATCH] avr32: replace simple_strtoul() with kstrtoul()

2014-03-30 Thread Hans-Christian Egtvedt
Around Wed 19 Mar 2014 12:52:35 +0300 or thereabout, Alexey Dobriyan wrote: >> - val = simple_strtoul(buf, &endp, 0); >> - if (endp == buf || val > 0x3f) >> - return -EINVAL; >> + ret = kstrtoul(buf, 0, &val); >> + if (ret) >> + return ret; >> val = (val << 12) | (sysreg_read(PCCR) & 0xfffc0fff);

Re: [PATCH] bonding: Inactive slaves should keep inactive flag's value to 1

2014-03-30 Thread zheng.li
Hi Jay, What's you think about the new patch. Thanks, Zheng Li 于 2014年03月28日 17:22, Zheng Li 写道: > In bond mode tlb and alb, inactive slaves should keep inactive flag to 1 to > refuse to receive broadcast packets. Now, active slave send broadcast packets > (for example ARP requests) which will ar

[PATCH v2 3/3] pstore: support current records dump in ramoops

2014-03-30 Thread Liu ShuoX
From: Liu ShuoX dump the records in runtime is useful sometime. We could check the records and understand driver's and device's status. Signed-off-by: Zhang Yanmin Signed-off-by: Liu ShuoX --- fs/pstore/inode.c | 32 ++-- fs/pstore/internal.h | 3 +

[PATCH v2 2/3] pstore: add seq_ops for norm zone

2014-03-30 Thread Liu ShuoX
From: Liu ShuoX Some developers want to output the pstore record trace flexible. So add seq_ops into ramoops_zone in case users would make private output format. Signed-off-by: Zhang Yanmin Signed-off-by: Liu ShuoX --- fs/pstore/inode.c | 10 -- include/linux/pstore_ramo

[PATCH v2 1/3] pstore: restructure ramoops to support more trace

2014-03-30 Thread Liu ShuoX
On Mon 31.Mar'14 at 11:07:56 +1100, Stephen Rothwell wrote: Hi all, After merging the ia64 tree, today's linux-next build (x86_64 allmodconfig) failed like this: fs/built-in.o: In function `pstore_file_open': inode.c:(.text+0xa29e9): undefined reference to `persistent_ram_size' Caused by commi

[PATCH v2] Staging: ft1000-usb: fixed a few code style issues

2014-03-30 Thread Anders Darander
Fixed a few code style issues, particularly: Add do {} while (0) wrapper around seq_* macros. Change printk(KERN_WARN...) to netdev_warn(...). Signed-off-by: Anders Darander --- Changes: v2: * Fix syntax errors (adding missing ; and }). drivers/staging/ft1000/ft1000-usb/ft1000_proc.c | 25 +

[GIT PULL] s390 compat wrapper rework

2014-03-30 Thread Heiko Carstens
Hi Linus, please pull from git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git compat to get the s390 compat system call wrapper simplification work. The intention of this work is to get rid of all hand written assembly compat system call wrappers on s390, which perform proper sign o

Re: [PATCH V4 07/11] ACPI: use platform bus as the default bus for _HID enumeration

2014-03-30 Thread Zhang Rui
On Mon, 2014-03-24 at 12:06 +0800, Zhang Rui wrote: > On Mon, 2014-03-24 at 03:00 +0100, Rafael J. Wysocki wrote: > > On Monday, March 17, 2014 03:49:36 PM Zhang Rui wrote: > > > Because of the growing demand for enumerating ACPI devices to platform > > > bus, > > > this patch changes the code to

linux kernel cross references 3.14, 3.13.7, 3.12.15, 3.10.34, 3.4.84 are added into www.xrefs.info

2014-03-30 Thread John Smith
hello, I added the follow linux kernel cross references into www.xrefs.info: linux-3.14 linux-3.13.7 linux-3.12.15 linux-3.10.34 linux-3.4.84 Check it out!!! Thanks. xrefs.info admin -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@v

Re: Adding compression before/above swapcache

2014-03-30 Thread Minchan Kim
Hello Dan, On Wed, Mar 26, 2014 at 04:28:27PM -0400, Dan Streetman wrote: > I'd like some feedback on how possible/useful, or not, it might be to > add compression into the page handling code before pages are added to > the swapcache. My thought is that adding a compressed cache at that > point m

Re: [PATCH] virtio-blk: make the queue depth the max supportable by the hypervisor

2014-03-30 Thread Rusty Russell
Venkatesh Srinivas writes: > On Wed, Mar 19, 2014 at 10:48 AM, Venkatesh Srinivas > wrote: >>> And I rewrote it substantially, mainly to take >>> VIRTIO_RING_F_INDIRECT_DESC into account. >>> >>> As QEMU sets the vq size for PCI to 128, Venkatash's patch wouldn't >>> have made a change. This ver

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

2014-03-30 Thread Rusty Russell
Stephen Rothwell writes: > Hi Rusty, > > After merging the modules tree, today's linux-next build (x86_64 > allmodconfig) failed like this: Hmm, I sent Greg KH a separate patch for staging, which rips these out altogether. He said he'd apply it "in a bit". I see it hasn't hit mainline yet, so h

Re: [PATCH] Fix: module signature vs tracepoints: add new TAINT_UNSIGNED_MODULE

2014-03-30 Thread Rusty Russell
Takashi Iwai writes: > At Thu, 13 Mar 2014 11:30:47 +1030, > Rusty Russell wrote: >> >> Steven Rostedt writes: >> > Mathieu, you should have added a v2 to the subject ie: [PATCH V2] >> > >> > Rusty, >> > >> > If you want to take this, please add my >> > Acked-by: Steven Rostedt >> >> Thanks, I

[PATCH] PCI: rework new_id interface for known vendor/device values

2014-03-30 Thread Bandan Das
While using the new_id interface, the user can unintentionally feed incorrect values if the driver static table has a matching entry. This is possible since only the device and vendor fields are mandatory and the rest are optional. As a result, store_new_id will fill in default values that are the

Re: [PATCH v5 0/3] powernv,cpufreq: Dynamic Frequency Scaling support

2014-03-30 Thread Viresh Kumar
On 29 March 2014 01:41, Gautham R. Shenoy wrote: > From: "Gautham R. Shenoy" > > Hi, > > This is v5 of the patchset to enable dynamic frequency scaling on IBM > PowerNV platforms. This patchset does address all the review comments > obtained for v4 (which can be found at [1]). > > Changes from v4

Re: [PATCH v5 1/3] powernv, cpufreq: Select CPUFreq related Kconfig options for powernv

2014-03-30 Thread Viresh Kumar
On 29 March 2014 01:41, Gautham R. Shenoy wrote: > From: "Gautham R. Shenoy" > > Enable CPUFreq for PowerNV. Select "performance", "powersave", > "userspace" and "ondemand" governors. Choose "ondemand" to be the > default governor. > > Signed-off-by: Gautham R. Shenoy > Signed-off-by: Srivatsa S

Re: [PATCH] sched: update_rq_clock() must skip ONE update

2014-03-30 Thread Mike Galbraith
On Sun, 2014-03-30 at 17:12 -0700, Linus Torvalds wrote: > The patch looks fine, but the changelog is so chock-full of odd > language that I don't know what to do with the patch. > > Is this actually a problem in real life, or just in the drug-induced > wonderland that Mike was in when writing th

RE: [PATCHv2 2/2] watchdog: imx2_wdt: Add big-endian support

2014-03-30 Thread li.xi...@freescale.com
> Subject: Re: [PATCHv2 2/2] watchdog: imx2_wdt: Add big-endian support > > On 03/25/2014 07:21 PM, Xiubo Li wrote: > > For the platforms that this IP driver now supports: > > SoCCPUWatchdog Need 'big-endian'? > > -- > > Vyb

Re: [PATCH 6/7] DMA: Freescale: use spin_lock_bh instead of spin_lock_irqsave

2014-03-30 Thread Hongbo Zhang
On 03/29/2014 09:45 PM, Vinod Koul wrote: On Fri, Mar 28, 2014 at 02:33:37PM +0800, Hongbo Zhang wrote: On 03/26/2014 03:01 PM, Vinod Koul wrote: On Thu, 2014-01-16 at 13:47 +0800, hongbo.zh...@freescale.com wrote: From: Hongbo Zhang The usage of spin_lock_irqsave() is a stronger locking me

Re: [PATCH for v3.14] AUDIT: Allow login in non-init namespaces

2014-03-30 Thread gaof...@cn.fujitsu.com
On 03/31/2014 07:10 AM, Eric Paris wrote: > In 3.15 we should have patches to support not only the non-init_net > (3.14) namespace but also the non-init_pid and non-init_user namespace. > So all will be right in the world. good news. -- To unsubscribe from this list: send the line "unsubscribe li

Linux 3.14 out

2014-03-30 Thread Linus Torvalds
So we had a few fairly late changes that I could have done without, but the changelog from -rc8 is still pretty small, and I'm feeling pretty good about it all. If we did end up with any last-minute problems due to the final spurt of patches, they'll be pretty specific, and it really didn't make se

Re: Promela/spin model for NO_HZ_FULL_SYSIDLE code

2014-03-30 Thread Paul E. McKenney
On Mon, Mar 31, 2014 at 03:29:25AM +, Mathieu Desnoyers wrote: > - Original Message - > > From: "Paul E. McKenney" > > To: fweis...@gmail.com, "mathieu desnoyers" > > , pet...@infradead.org > > Cc: linux-kernel@vger.kernel.org > > Sent: Sunday, March 30, 2014 7:08:56 PM > > Subject: P

[PATCH] Documentation/java.txt: add Java 7 support

2014-03-30 Thread Jonathan Callen
The sample wrapper currently fails on some Java 7 .class files. This updates the wrapper to properly handle those files. Signed-off-by: Jonathan Callen --- Documentation/java.txt | 8 1 file changed, 8 insertions(+) diff --git a/Documentation/java.txt b/Documentation/java.txt index e6

Re: [PATCH] Documentation: trivial spelling error changes

2014-03-30 Thread Randy Dunlap
On 03/29/2014 05:54 PM, Carlos wrote: > Fixed multiple spelling errors. > > Signed-off-by: Carlos E. Garcia > --- > Documentation/DMA-attributes.txt | 2 +- > Documentation/block/biodoc.txt | 8 > Documentation/block/cfq-iosche

Re: Promela/spin model for NO_HZ_FULL_SYSIDLE code

2014-03-30 Thread Mathieu Desnoyers
- Original Message - > From: "Mathieu Desnoyers" > To: paul...@linux.vnet.ibm.com > Cc: fweis...@gmail.com, pet...@infradead.org, linux-kernel@vger.kernel.org > Sent: Sunday, March 30, 2014 11:29:25 PM > Subject: Re: Promela/spin model for NO_HZ_FULL_SYSIDLE code > > - Original Messag

Re: [PATCHv2 2/2] watchdog: imx2_wdt: Add big-endian support

2014-03-30 Thread Guenter Roeck
On 03/25/2014 07:21 PM, Xiubo Li wrote: For the platforms that this IP driver now supports: SoCCPUWatchdog Need 'big-endian'? -- Vybird little little No LS1little big Yes LS2little

Re: Promela/spin model for NO_HZ_FULL_SYSIDLE code

2014-03-30 Thread Mathieu Desnoyers
- Original Message - > From: "Paul E. McKenney" > To: fweis...@gmail.com, "mathieu desnoyers" , > pet...@infradead.org > Cc: linux-kernel@vger.kernel.org > Sent: Sunday, March 30, 2014 7:08:56 PM > Subject: Promela/spin model for NO_HZ_FULL_SYSIDLE code > > For whatever it is worth, the

Re: [PATCH v2 16/29] ktap: add amalgamation build(kernel/trace/ktap/amalg.c)

2014-03-30 Thread Jovi Zhangwei
On Mon, Mar 31, 2014 at 10:17 AM, Li Zefan wrote: > On 2014/3/28 22:45, Jovi Zhangwei wrote: >> This compiles the ktapvm as one huge C file and allows >> GCC to generate faster and shorter code. >> >> No amalgamation build in x86_64: >> ktapvm.ko: 3.1M >> >> amalgamation build in x86_64: >> ktapvm

linux-next Documentation merge request

2014-03-30 Thread Randy Dunlap
Hi Stephen, Please include http://www.infradead.org/~rdunlap/Doc/patches/ in linux-next. This is a quilt patch series (initially empty). thanks, -- ~Randy -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordo

[PATCH] ipc,shm: increase default size for shmmax

2014-03-30 Thread Davidlohr Bueso
From: Davidlohr Bueso The default size is, and always has been, 32Mb. Today, in the XXI century, it seems that this value is rather small, making users have to increase it via sysctl, which can cause unnecessary work and userspace application workarounds[1]. I have arbitrarily chosen a 4x increas

linux-next: manual merge of the drm tree with Linus' tree

2014-03-30 Thread Stephen Rothwell
Hi Dave, Today's linux-next merge of the drm tree got a conflict in drivers/gpu/drm/i915/i915_gem_gtt.c between commit 8ee661b50561 ("drm/i915: Undo gtt scratch pte unmapping again") from Linus' tree and commit 782f149523d3 ("drm/i915: Make clear/insert vfuncs args absolute") from the drm tree. I

Re: [PATCH 3.2 153/200] powerpc/le: Ensure that the 'stop-self' RTAS token is handled correctly

2014-03-30 Thread Tony Breeds
On Mon, Mar 31, 2014 at 12:23:35AM +0100, Ben Hutchings wrote: > 3.2.56-rc1 review patch. If anyone has any objections, please let me know. This patch doesn't need to go back beyond 3.10, so it's safe to drop from your queue. Thanks Ben. Yours Tony pgpWVFxHj6PTy.pgp Description: PGP signature

Re: [PATCH v2 10/29] ktap: add string handling code(kernel/trace/ktap/kp_[str|mempool].[c|h])

2014-03-30 Thread Jovi Zhangwei
On Mon, Mar 31, 2014 at 1:19 AM, Andi Kleen wrote: >> See test/benchmark/cmp_table.sh, that script compare > > Is that a realistic tracing scenario? > Yes, it's quite common to use string key in dynamic tracing tool, for example, See samples/userspace/glibc_func_hist.kp var s = {} trace

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

2014-03-30 Thread Stephen Rothwell
Hi all, Today's linux-next merge of the net-next tree got a conflict in drivers/net/xen-netback/netback.c between commit 1425c7a4e8d3 ("xen-netback: BUG_ON in xenvif_rx_action() not catching overflow") from the net tree and commit 8f13dd961228 ("xen-netback: Use skb->cb for pending_idx") from the

Fwd: Re: [PATCH v2] input: misc: Add driver for Intel Bay Trail GPIO buttons

2014-03-30 Thread Zhu, Lejun
Hi Dmitry, On 3/29/2014 4:47 AM, Dmitry Torokhov wrote: > Hi Lejun, > > On Fri, Mar 28, 2014 at 02:02:43AM +0800, Zhu, Lejun wrote: >> + >> +static struct soc_button_info soc_button_tbl[] = { >> +{"power", 0, KEY_POWER, 0, 1, -1}, >> +{"home", 1, KEY_HOME, 0, 1, -1}, >> +{"volume_up",

[PATCH RFC] ACPI: (x86) remove useless initial assignment in gsi_to_irq

2014-03-30 Thread zhouzhouyi
From: Zhouyi Zhou I think in function gsi_to_irq, initial assignment to irq is useless although compiler may eliminate it during the compilng. Signed-off-by: Zhouyi Zhou --- arch/x86/kernel/acpi/boot.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/acp

linux-next: manual merge of the net-next tree with the arm-soc tree

2014-03-30 Thread Stephen Rothwell
Hi all, Today's linux-next merge of the net-next tree got a conflict in Documentation/devicetree/bindings/net/stmmac.txt between commit 50b4af414d41 ("dts: stmmac: Document the clocks property in the stmmac base document") from the arm-soc tree and commit e8f08ee0ad86 ("DT: net: document Ethernet

Re: [PATCH v2 16/29] ktap: add amalgamation build(kernel/trace/ktap/amalg.c)

2014-03-30 Thread Li Zefan
On 2014/3/28 22:45, Jovi Zhangwei wrote: > This compiles the ktapvm as one huge C file and allows > GCC to generate faster and shorter code. > > No amalgamation build in x86_64: > ktapvm.ko: 3.1M > > amalgamation build in x86_64: > ktapvm.ko: 1.1M > > User can set use amalgamation build or not i

[PATCH 2/2] nohz, procfs: introduce get_cpu_idle/iowait_time_coarse

2014-03-30 Thread Hidetoshi Seto
This patch is 2/2 of patch set to fix an issue that idle/iowait of /proc/stat can go backward. Originally reported by Tetsuo and Fernando at last year, Mar 2013. Now it is clear that get_cpu_{idle,iowait}_time_us() is not monotonic. Using this for /proc/stats will cause troubles in innocent userla

RE: [PATCH] printk: add sleep time into timestamp

2014-03-30 Thread Neil Zhang
> -Original Message- > From: John Stultz [mailto:john.stu...@linaro.org] > Sent: 2014年3月29日 1:37 > To: Neil Zhang > Cc: Andrew Morton; Linux Kernel Mailing List > Subject: Re: [PATCH] printk: add sleep time into timestamp > > On 03/27/2014 11:45 PM, Neil Zhang wrote: > > John, > > > >> -

[PATCH 1/2] nohz: use seqlock to avoid race on idle time stats v2

2014-03-30 Thread Hidetoshi Seto
This patch is 1/2 of patch set to fix an issue that idle/iowait of /proc/stat can go backward. Originally reported by Tetsuo and Fernando at last year, Mar 2013. [BACKGROUNDS]: idle accounting on NO_HZ If NO_HZ is enabled, cpu stops tick interrupt for itself before go sleep to be idle. It means t

Re: [PATCH v2 08/29] ktap: add bytecode reader(kernel/trace/ktap/kp_bcread.[c|h])

2014-03-30 Thread Jovi Zhangwei
On Mon, Mar 31, 2014 at 1:17 AM, Andi Kleen wrote: >> That's designed for portability initially, it means we can just run bytecode >> without compile script file everywhere, especially when compilation is >> a heavily task for some embedded platform, even though ktap compilation >> is extremely f

Re: [PATCH] staging: serqt_usb2: Add blank lines after declarations.

2014-03-30 Thread Joe Perches
On Sun, 2014-03-30 at 23:29 +0200, Thomas Vegas wrote: > Use a more common kernel coding style. [] > diff --git a/drivers/staging/serqt_usb2/serqt_usb2.c > b/drivers/staging/serqt_usb2/serqt_usb2.c [] > @@ -995,8 +995,8 @@ static void qt_close(struct usb_serial_port *port) > struct tty_struc

[PATCH 0/2 v2] nohz: fix idle accounting in NO_HZ kernels

2014-03-30 Thread Hidetoshi Seto
Hi all, This patch set (rebased on v3.14-rc8) will fix an issue that idle/iowait of /proc/stat can go backward. Originally reported by Tetsuo and Fernando at last year, Mar 2013. v2 have Preeti's Reviewed-by (Thanks!). Of course still reviews are welcome. Thanks, H.Seto Hidetoshi Seto (2):

Re: [PATCH 15/28] ktap: add built-in functions and library (runtime/lib_*.c)

2014-03-30 Thread Jovi Zhangwei
On Sun, Mar 30, 2014 at 8:58 AM, Andi Kleen wrote: >> Maybe in future, after ktap support "include" or "require" to >> import user defined library in userspace. > > Can't you just have some hardcoded standard script for now that is > always appeneded and provides these functions? > Maybe it's fine

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

2014-03-30 Thread Stephen Rothwell
Hi Mauro, After merging the v4l-dvb tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/media/usb/em28xx/em28xx-dvb.c: In function 'em28xx_dvb_resume': drivers/media/usb/em28xx/em28xx-dvb.c:1645:7: error: 'client' undeclared (first use in this function) if (client)

[PATCH] regmap: implement LE formatting/parsing for 16/32-bit values.

2014-03-30 Thread Xiubo Li
Allow busses to request little endianness formatting and parsing for 16- and 32-bit values. This will be useful to support regmap-mmio. For the following the scenarios using the regmap-mmio, for example: IndexCPU Device Endianess flag for values -

RE: linux-next: build failure after merge of the ia64 tree

2014-03-30 Thread Zhang, Yanmin
Sorry. We would fix it ASAP. Yanmin -Original Message- From: Stephen Rothwell [mailto:s...@canb.auug.org.au] Sent: Monday, March 31, 2014 8:08 AM To: Luck, Tony Cc: linux-n...@vger.kernel.org; linux-kernel@vger.kernel.org; Liu, ShuoX; Zhang, Yanmin Subject: linux-next: build failure aft

Re: VDSO pvclock may increase host cpu consumption, is this a problem?

2014-03-30 Thread Zhanghailiang
Hi Marcelo, The CPU's info is: processor : 15 vendor_id : GenuineIntel cpu family : 6 model : 44 model name : Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping: 2 microcode : 12 cpu MHz : 2400.125 cache size : 12288 KB physical id

Re: [PATCH 3.2 000/200] 3.2.56-rc1 review

2014-03-30 Thread Ben Hutchings
On Sun, 2014-03-30 at 17:49 -0700, Guenter Roeck wrote: > On Mon, Mar 31, 2014 at 12:23:34AM +0100, Ben Hutchings wrote: > > This is the start of the stable review cycle for the 3.2.56 release. > > There are 200 patches in this series, which will be posted as responses > > to this one. If anyone h

Re: [PATCH for v3.14] AUDIT: Allow login in non-init namespaces

2014-03-30 Thread Serge Hallyn
Quoting Eric Paris (epa...@redhat.com): > It its possible to configure your PAM stack to refuse login if > audit messages (about the login) were unable to be sent. This is common > in many distros and thus normal configuration of many containers. The > PAM modules determine if audit is enabled/dis

how to let linux boot my thread tree?

2014-03-30 Thread Joël Krähemann
how to let linux boot my thread tree and schedule it? Joël -- 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.or

Re: [PATCH 3.2 000/200] 3.2.56-rc1 review

2014-03-30 Thread Guenter Roeck
On Mon, Mar 31, 2014 at 12:23:34AM +0100, Ben Hutchings wrote: > This is the start of the stable review cycle for the 3.2.56 release. > There are 200 patches in this series, which will be posted as responses > to this one. If anyone has any issues with these being applied, please > let me know. >

Re: xfs i_lock vs mmap_sem lockdep trace.

2014-03-30 Thread Dave Chinner
On Sun, Mar 30, 2014 at 08:20:30PM -0400, Dave Jones wrote: > On Mon, Mar 31, 2014 at 10:43:35AM +1100, Dave Chinner wrote: > > On Sat, Mar 29, 2014 at 06:31:09PM -0400, Dave Jones wrote: > > > Not sure if I've reported this already (it looks familiar, though I've > not managed > > > to find it

Re: xfs i_lock vs mmap_sem lockdep trace.

2014-03-30 Thread Dave Chinner
On Mon, Mar 31, 2014 at 12:57:17AM +0100, Al Viro wrote: > On Mon, Mar 31, 2014 at 10:43:35AM +1100, Dave Chinner wrote: > > filldir on a directory inode vs page fault on regular file. Known > > issue, definitely a false positive. We have to change locking > > algorithms to avoid such deficiencies

[PATCH 3.2 091/200] mm: __set_page_dirty uses spin_lock_irqsave instead of spin_lock_irq

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: KOSAKI Motohiro commit 227d53b397a32a7614667b3ecaf1d89902fb6c12 upstream. To use spin_{un}lock_irq is dangerous if caller disabled interrupt. During aio buffer migration, we have a possibility

[PATCH 3.2 030/200] staging: r8712u: Set device type to wlan

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Larry Finger commit 3a21f00a5002b14e4aab52aef59d33ed28468a13 upstream. The latest version of NetworkManager does not recognize the device as wireless without this change. Signed-off-by: Larry

[PATCH 3.2 020/200] ALSA: rme9652: fix a missing comma in channel_map_9636_ds[]

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai commit 770bd4bf2e664939a9dacd3d26ec9ff7a3933210 upstream. The lack of comma leads to the wrong channel for an SPDIF channel. Unfortunately this wasn't caught by compiler because it

[PATCH 3.2 015/200] mtd: mxc_nand: remove duplicated ecc_stats counting

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Michael Grzeschik commit 0566477762f9e174e97af347ee9c865f908a5647 upstream. The ecc_stats.corrected count variable will already be incremented in the above framework-layer just after this callb

[PATCH 3.2 016/200] USB: pl2303: fix data corruption on termios updates

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Johan Hovold commit 623c8263376c0b8a4b0c220232e7313d762cd0cc upstream. Some PL2303 devices are known to lose bytes if you change serial settings even to the same values as before. Avoid this by

[PATCH 3.2 006/200] staging: vt6656: [BUG] BBvUpdatePreEDThreshold Always set sensitivity on bScanning

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Malcolm Priestley commit 8f248dae133668bfb8e9379b4b3f0571c858b24a upstream. byBBPreEDIndex value is initially 0, this means that from cold BBvUpdatePreEDThreshold is never set. This means that

[PATCH 3.2 004/200] selinux: process labeled IPsec TCP SYN-ACK packets properly in selinux_ip_postroute()

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Paul Moore commit 5c6c26813a209e7075baf908e3ad81c1a9d389e8 upstream. Due to difficulty in arriving at the proper security label for TCP SYN-ACK packets in selinux_ip_postroute(), we need to che

[PATCH 3.2 009/200] [media] dib8000: make 32 bits read atomic

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Mauro Carvalho Chehab commit 5ac64ba12aca3bef18e61c866583155a3bbf81c4 upstream. As the dvb-frontend kthread can be called anytime, it can race with some get status ioctl. So, it seems better to

[PATCH 3.2 018/200] USB: Nokia 502 is an unusual device

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Mikhail Zolotaryov commit 0e16114f2db4838251fb64f3b550996ad3585890 upstream. The USB storage operation of Nokia Asha 502 Dual SIM smartphone running Asha Platform 1.1.1 is unreliable in respect

[PATCH 3.2 010/200] serial: add support for 400 and 800 v3 series Titan cards

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Yegor Yefremov commit 1e9deb118ed76b9df89d189f27a06522a03cf743 upstream. add support for 400Hv3, 410Hv3 and 800Hv3 Signed-off-by: Yegor Yefremov Signed-off-by: Greg Kroah-Hartman Signed-off-

[PATCH 3.2 031/200] ALSA: Enable CONFIG_ZONE_DMA for smaller PCI DMA masks

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai commit 80ab8eae70e51d578ebbeb228e0f7a562471b8b7 upstream. The PCI devices with DMA masks smaller than 32bit should enable CONFIG_ZONE_DMA. Since the recent change of page allocato

[PATCH 3.2 000/200] 3.2.56-rc1 review

2014-03-30 Thread Ben Hutchings
This is the start of the stable review cycle for the 3.2.56 release. There are 200 patches in this series, which will be posted as responses to this one. If anyone has any issues with these being applied, please let me know. Responses should be made by Wed Apr 02 00:00:00 UTC 2014. Anything recei

[PATCH 3.2 038/200] usb: ehci: add freescale imx28 special write register method

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Peter Chen commit feffe09f510c475df082546815f9e4a573f6a233 upstream. According to Freescale imx28 Errata, "ENGR119653 USB: ARM to USB register error issue", All USB register write operations mu

[PATCH 3.2 053/200] b43: fix the wrong assignment of status.freq in b43_rx()

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: ZHAO Gang commit 64e5acb09ca6b50c97299cff9ef51299470b29f2 upstream. Use the right function to update frequency value. If rx skb is probe response or beacon, the wrong frequency value can cause

[PATCH 3.2 032/200] staging:iio:ad799x fix error_free_irq which was freeing an irq that may not have been requested

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Hartmut Knaack commit 38408d056188be29a6c4e17f3703c796551bb330 upstream. Only free an IRQ in error_free_irq, if it has been requested previously. Signed-off-by: Hartmut Knaack Acked-by: Lars-

[PATCH 3.2 014/200] slub: Fix calculation of cpu slabs

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Li Zefan commit 8afb1474db4701d1ab80cd8251137a3260e6913e upstream. /sys/kernel/slab/:t-048 # cat cpu_slabs 231 N0=16 N1=215 /sys/kernel/slab/:t-048 # cat slabs 145 N0=36 N1=109

[PATCH 3.2 003/200] NFSv4: OPEN must handle the NFS4ERR_IO return code correctly

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Trond Myklebust commit c7848f69ec4a8c03732cde5c949bd2aa711a9f4b upstream. decode_op_hdr() cannot distinguish between an XDR decoding error and the perfectly valid errorcode NFS4ERR_IO. This is

[PATCH 3.2 017/200] USB: serial: add support for iBall 3.5G connect usb modem

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Rahul Bedarkar commit 7d5c1b9c7cb5ec8e52b1adc65c484a923a8ea6c3 upstream. Add support for iBall 3.5G connect usb modem. $lsusb Bus 002 Device 006: ID 1c9e:9605 OMEGA TECHNOLOGY $usb-devices T:

[PATCH 3.2 052/200] ore: Fix wrong math in allocation of per device BIO

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Boaz Harrosh commit aad560b7f63b495f48a7232fd086c5913a676e6f upstream. At IO preparation we calculate the max pages at each device and allocate a BIO per device of that size. The calculation wa

[PATCH 3.2 033/200] mmc: atmel-mci: fix timeout errors in SDIO mode when using DMA

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Ludovic Desroches commit 66b512eda74d59b17eac04c4da1b38d82059e6c9 upstream. With some SDIO devices, timeout errors can happen when reading data. To solve this issue, the DMA transfer has to be

[PATCH 3.2 044/200] mmc: sdhci: fix lockdep error in tuning routine

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Aisheng Dong commit 2b35bd83467df6f8284b9148d6f768148c3a5e5f upstream. The sdhci_execute_tuning routine gets lock separately by disable_irq(host->irq); spin_lock(&host->lock); It will cause the

[PATCH 3.2 070/200] alpha: fix broken network checksum

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Mikulas Patocka commit 0ef38d70d4118b2ce1a538d14357be5ff9dc2bbd upstream. The patch 3ddc5b46a8e90f3c9251338b60191d0a804b0d92 breaks networking on alpha (there is a follow-up fix 5cfe8f1ba5eebe6

[PATCH 3.2 007/200] [SCSI] bfa: Chinook quad port 16G FC HBA claim issue

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Vijaya Mohan Guvva commit dcaf9aed995c2b2a49fb86bbbcfa2f92c797ab5d upstream. Bfa driver crash is observed while pushing the firmware on to chinook quad port card due to uninitialized bfi_image_

[PATCH 3.2 040/200] KVM: x86: limit PIT timer frequency

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Marcelo Tosatti commit 9ed96e87c5748de4c2807ef17e81287c7304186c upstream. Limit PIT timer frequency similarly to the limit applied by LAPIC timer. Reviewed-by: Jan Kiszka Signed-off-by: Marce

[PATCH 3.2 043/200] libata: disable LPM for some WD SATA-I devices

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Tejun Heo commit ecd75ad514d73efc1bbcc5f10a13566c3ace5f53 upstream. For some reason, some early WD drives spin up and down drives erratically when the link is put into slumber mode which can re

[PATCH 3.2 069/200] ata: enable quirk from jmicron JMB350 for JMB394

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: "Denis V. Lunev" commit efb9e0f4f43780f0ae0c6428d66bd03e805c7539 upstream. Without the patch the kernel generates the following error. ata11.15: SATA link up 1.5 Gbps (SStatus 113 SControl 31

[PATCH 3.2 083/200] of: fix PCI bus match for PCIe slots

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Kleber Sacilotto de Souza commit 14e2abb732e485ee57d9d5b2cb8884652238e5c1 upstream. On IBM pseries systems the device_type device-tree property of a PCIe bridge contains the string "pciex". The

[PATCH 3.2 012/200] x86/efi: Fix off-by-one bug in EFI Boot Services reservation

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Dave Young commit a7f84f03f660d93574ac88835d056c0d6468aebe upstream. Current code check boot service region with kernel text region by: start+size >= __pa_symbol(_text) The end of the above reg

[PATCH 3.2 062/200] KVM: return an error code in kvm_vm_ioctl_register_coalesced_mmio()

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Dan Carpenter commit aac5c4226e7136c331ed384c25d5560204da10a0 upstream. If kvm_io_bus_register_dev() fails then it returns success but it should return an error code. I also did a little clean

[PATCH 3.2 047/200] drm/radeon: set the full cache bit for fences on r7xx+

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Alex Deucher commit d45b964a22cad962d3ede1eba8d24f5cee7b2a92 upstream. Needed to properly flush the read caches for fences. Signed-off-by: Alex Deucher [bwh: Backported to 3.2: - Adjust cont

[PATCH 3.2 081/200] ALSA: hda/realtek - Avoid invalid COEFs for ALC271X

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai commit d3c56568f43807135f2c2a09582a69f809f0d8b7 upstream. We've seen often problems after suspend/resume on Acer Aspire One AO725 with ALC271X codec as reported in kernel bugzilla,

[PATCH 3.2 078/200] usb-storage: restrict bcdDevice range for Super Top in Cypress ATACB

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Alan Stern commit a9c143c82608bee2a36410caa56d82cd86bdc7fa upstream. The Cypress ATACB unusual-devs entry for the Super Top SATA bridge causes problems. Although it was originally reported onl

[PATCH 3.2 064/200] s390/crypto: Don't panic after crypto instruction failures

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Jan Glauber commit 36eb2caa7bace31b7868a57f77cb148e58d1c9f9 upstream. Remove the BUG_ON's that check for failure or incomplete results of the s390 hardware crypto instructions. Rather report th

[PATCH 3.2 013/200] rtc-cmos: Add an alarm disable quirk

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Borislav Petkov commit d5a1c7e3fc38d9c7d629e1e47f32f863acbdec3d upstream. 41c7f7424259f ("rtc: Disable the alarm in the hardware (v2)") added the functionality to disable the RTC wake alarm whe

[PATCH 3.2 068/200] mm, oom: base root bonus on current usage

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: David Rientjes commit 778c14affaf94a9e4953179d3e13a544ccce7707 upstream. A 3% of system memory bonus is sometimes too excessive in comparison to other processes. With commit a63d83f427fb ("oom

[PATCH 3.2 071/200] power: max17040: Fix NULL pointer dereference when there is no platform_data

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Krzysztof Kozlowski commit ac323d8d807060f7c95a685a9fe861e7b6300993 upstream. Fix NULL pointer dereference of "chip->pdata" if platform_data was not supplied to the driver. The driver during p

[PATCH 3.2 073/200] [media] mxl111sf: Fix compile when CONFIG_DVB_USB_MXL111SF is unset

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Dave Jones commit 13e1b87c986100169b0695aeb26970943665eda9 upstream. Fix the following build error: drivers/media/usb/dvb-usb-v2/ mxl111sf-tuner.h:72:9: error: expected ‘;’, ‘,’ or ‘)’ before

[PATCH 3.2 066/200] crypto: s390 - fix des and des3_ede cbc concurrency issue

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Harald Freudenberger commit adc3fcf1552b6e406d172fd9690bbd1395053d13 upstream. In s390 des and des3_ede cbc mode the iv value is not protected against concurrency access and modifications from

[PATCH 3.2 063/200] target/iscsi: Fix network portal creation race

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Andy Grover commit ee291e63293146db64668e8d65eb35c97e8324f4 upstream. When creating network portals rapidly, such as when restoring a configuration, LIO's code to reuse existing portals can ret

Re: xfs i_lock vs mmap_sem lockdep trace.

2014-03-30 Thread Dave Jones
On Mon, Mar 31, 2014 at 10:43:35AM +1100, Dave Chinner wrote: > On Sat, Mar 29, 2014 at 06:31:09PM -0400, Dave Jones wrote: > > Not sure if I've reported this already (it looks familiar, though I've not > > managed > > to find it in my sent mail folder). This is rc8 + a diff to fix the stack

[PATCH 3.2 065/200] crypto: s390 - fix concurrency issue in aes-ctr mode

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Harald Freudenberger commit 0519e9ad89e5cd6e6b08398f57c6a71d9580564c upstream. The aes-ctr mode uses one preallocated page without any concurrency protection. When multiple threads run aes-ctr

[PATCH 3.2 067/200] crypto: s390 - fix des and des3_ede ctr concurrency issue

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Harald Freudenberger commit ee97dc7db4cbda33e4241c2d85b42d1835bc8a35 upstream. In s390 des and 3des ctr mode there is one preallocated page used to speed up the en/decryption. This page is not

[PATCH 3.2 072/200] sata_sil: apply MOD15WRITE quirk to TOSHIBA MK2561GSYN

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Tejun Heo commit 9f9c47f00ce99329b1a82e2ac4f70f0fe3db549c upstream. It's a bit odd to see a newer device showing mod15write; however, the reported behavior is highly consistent and other factor

[PATCH 3.2 080/200] usb-storage: enable multi-LUN scanning when needed

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Alan Stern commit 823d12c95c666fa7ab7dad208d735f6bc6afabdc upstream. People sometimes create their own custom-configured kernels and forget to enable CONFIG_SCSI_MULTI_LUN. This causes problem

[PATCH 3.2 097/200] Modpost: fixed USB alias generation for ranges including 0x9 and 0xA

2014-03-30 Thread Ben Hutchings
3.2.56-rc1 review patch. If anyone has any objections, please let me know. -- From: Jan Moskyto Matejka commit 03b56329f9bb5a1cb73d7dc659d529a9a9bf3acc upstream. Commit afe2dab4f6 ("USB: add hex/bcd detection to usb modalias generation") changed the routine that generates alia

  1   2   3   4   >