[PATCH 13/51] powerpc, sysfs: Fix CPU hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

[PATCH 08/51] arm, hw-breakpoint: Fix CPU hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

[PATCH 10/51] s390, cacheinfo: Fix CPU hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

[PATCH 12/51] sparc, sysfs: Fix CPU hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

[PATCH 09/51] arm, kvm: Fix CPU hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

[PATCH 11/51] s390, smp: Fix CPU hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

[PATCH 05/51] ia64, palinfo: Fix CPU hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

Re: Thread overran stack, or stack corrupted on 3.13.0

2014-02-05 Thread Andrew Vagin
On Wed, Feb 05, 2014 at 01:23:45PM -0800, David Rientjes wrote: > On Wed, 5 Feb 2014, Andrew Vagin wrote: ... > > You've clipped the most interesting part of the trace, we don't know what > was calling mempool_alloc() and must have used a ton of stack. Sorry. You can find the full trace bellow

[PATCH 03/51] CPU hotplug, perf: Fix CPU hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

[PATCH 04/51] ia64, salinfo: Fix hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

[PATCH 01/51] CPU hotplug: Provide lockless versions of callback registration functions

2014-02-05 Thread Srivatsa S. Bhat
The following method of CPU hotplug callback registration is not safe due to the possibility of an ABBA deadlock involving the cpu_add_remove_lock and the cpu_hotplug.lock. get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&f

[PATCH 07/51] ia64, err-inject: Fix CPU hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

[PATCH 06/51] ia64, topology: Fix CPU hotplug callback registration

2014-02-05 Thread Srivatsa S. Bhat
Subsystems that want to register CPU hotplug callbacks, as well as perform initialization for the CPUs that are already online, often do it as shown below: get_online_cpus(); for_each_online_cpu(cpu) init_cpu(cpu); register_cpu_notifier(&foobar_cpu_notifie

[PATCH 00/51] CPU hotplug: Fix issues with callback registration

2014-02-05 Thread Srivatsa S. Bhat
Hi, Many subsystems and drivers have the need to register CPU hotplug callbacks from their init routines and also perform initialization for the CPUs that are already online. But unfortunately there is no race-free way to achieve this today. For example, consider this piece of code: get_

Re: [PATCH v2 0/3] Deferrable timers support for timerfd API

2014-02-05 Thread John Stultz
On 02/05/2014 01:41 PM, Thomas Gleixner wrote: > On Wed, 5 Feb 2014, Alexey Perevalov wrote: >> On 02/04/2014 08:10 PM, Thomas Gleixner wrote: >>> On Mon, 27 Jan 2014, Alexey Perevalov wrote: On 01/21/2014 11:12 PM, John Stultz wrote: > Thomas: Any thought here? Should we be trying to unif

Re: [PATCH v12 9/9] Add 32 bit VDSO time support for 64 bit kernel

2014-02-05 Thread Andy Lutomirski
On Wed, Feb 5, 2014 at 12:20 AM, wrote: > From: Stefani Seibold > > This patch add the VDSO time support for the IA32 Emulation Layer. > > Due the nature of the kernel headers and the LP64 compiler where the > size of a long and a pointer differs against a 32 bit compiler, there > is some type h

Re: [PATCHv2 1/2] mm/memblock: add memblock_get_current_limit

2014-02-05 Thread Andrew Morton
On Tue, 4 Feb 2014 16:02:30 -0800 Laura Abbott wrote: > Appart from setting the limit of memblock, it's also useful to be able > to get the limit to avoid recalculating it every time. Add the function > to do so. Looks OK to me. Your "[PATCHv2 2/2] arm: Get rid of meminfo" did not make it into

Re: [PATCH v7 1/3] mm: add kstrdup_trimnl function

2014-02-05 Thread Andrew Morton
On Tue, 4 Feb 2014 12:43:49 -0800 Sebastian Capella wrote: > kstrdup_trimnl creates a duplicate of the passed in > null-terminated string. If a trailing newline is found, it > is removed before duplicating. This is useful for strings > coming from sysfs that often include trailing whitespace

Re: [BUG] Linux 3.14 fails to boot with new EFI changes

2014-02-05 Thread Alex Thorlton
On Fri, Jan 31, 2014 at 03:23:18PM +0100, Borislav Petkov wrote: > And now my question: > > How can I reliably find out which region contains that > uv_systab.function call? > > I need it so that I can map it in the EFI page table and you can > continue to call that function and you can get back

Re: [RFC][PATCH v2 5/5] mutex: Give spinners a chance to spin_on_owner if need_resched() triggered while queued

2014-02-05 Thread Waiman Long
On 01/29/2014 06:51 AM, Peter Zijlstra wrote: On Tue, Jan 28, 2014 at 02:51:35PM -0800, Jason Low wrote: But urgh, nasty problem. Lemme ponder this a bit. OK, please have a very careful look at the below. It survived a boot with udev -- which usually stresses mutex contention enough to explode

RE: [PATCH v2 2/3] clocksource: tegra: Define timer bases in header file

2014-02-05 Thread Andrew Chew
> > +/* Tegra 20 timers */ > > +#define TEGRA20_TIMER1_BASE0x0 > > +#define TEGRA20_TIMER2_BASE0x8 > > +#define TEGRA20_TIMER3_BASE0x50 > > +#define TEGRA20_TIMER4_BASE0x58 > > + > > +/* Tegra 30 timers */ > > +#define TEGRA30_TIMER1_BASETEGRA20_TIMER1_BASE >

Re: [PATCH v2 0/3] Deferrable timers support for timerfd API

2014-02-05 Thread Thomas Gleixner
On Wed, 5 Feb 2014, Alexey Perevalov wrote: > On 02/04/2014 08:10 PM, Thomas Gleixner wrote: > > On Mon, 27 Jan 2014, Alexey Perevalov wrote: > > > On 01/21/2014 11:12 PM, John Stultz wrote: > > > > Thomas: Any thought here? Should we be trying to unify the timerfd flags > > > > and the posix timer

Re: [PATCH] ACPI hotplug: Fix panic on eject to ejected device

2014-02-05 Thread Toshi Kani
On Wed, 2014-02-05 at 22:49 +0100, Rafael J. Wysocki wrote: > On Wednesday, February 05, 2014 08:52:49 AM Toshi Kani wrote: > > On Wed, 2014-02-05 at 11:05 +, Rafael J. Wysocki wrote: > > > On Tuesday, February 04, 2014 05:48:28 PM Toshi Kani wrote: > > > > When an eject request is sent to an e

RE: [PATCH v2 1/3] clocksource: tegra: Add nvidia,tegra30-timer compat

2014-02-05 Thread Andrew Chew
> On 02/05/2014 01:06 PM, Andrew Chew wrote: > >> On 02/03/2014 05:17 PM, Andrew Chew wrote: > >>> There are some differences between tegra20's timer registers and > >>> tegra30's (and later). For example, tegra30 has more timers. In > >>> addition, watchdogs are not present in tegra20. > >>> > >

Re: [PATCH 0/5] Enabling the asynchronous threads for other phases

2014-02-05 Thread Rafael J. Wysocki
On Monday, January 20, 2014 04:44:34 PM Liu, Chuansheng wrote: > Hello, > > This patch series are for enabling the asynchronous threads for the phases > resume_noirq, resume_early, suspend_noirq and suspend_late. > > Just like commit 5af84b82701a and 97df8c12995, with async threads it will > redu

Re: [PATCH v3] slub: fix false-positive lockdep warning in free_partial()

2014-02-05 Thread David Rientjes
On Wed, 5 Feb 2014, Steven Rostedt wrote: > > Looks like you've got something prepared already! Mind sending it to > > Pekka as a patch based on linux-next? > > Sure, and there's another lockdep splat that I'm working on too. > If it's coming from slub, make sure you've applied http://marc.i

[PATCH v2 1/9] HID: add inliners for ll_driver transport-layer callbacks

2014-02-05 Thread Benjamin Tissoires
Those callbacks are not mandatory, so it's better to add inliners to use them safely. Reviewed-by: David Herrmann Signed-off-by: Benjamin Tissoires --- include/linux/hid.h | 45 + 1 file changed, 45 insertions(+) diff --git a/include/linux/hid.h b/in

[PATCH v2 3/9] HID: HIDp: remove hidp_hidinput_event

2014-02-05 Thread Benjamin Tissoires
hidp uses its own ->hidinput_input_event() instead of the generic binding in hid-input. Moving the handling of LEDs towards hidp_hidinput_event() allows two things: - remove hidinput_input_event definitively from struct hid_device - hidraw user space programs can also set the LEDs Reviewed-by: Dav

[PATCH v2 4/9] HID: remove hidinput_input_event handler

2014-02-05 Thread Benjamin Tissoires
All the different transport drivers use now the generic event handling in hid-input. We can remove the handler definitively now. Reviewed-by: David Herrmann Signed-off-by: Benjamin Tissoires --- drivers/hid/hid-input.c | 4 +--- include/linux/hid.h | 4 2 files changed, 1 insertion(+),

[PATCH v2 5/9] HID: HIDp: remove duplicated coded

2014-02-05 Thread Benjamin Tissoires
- Move hidp_output_report() above - Removed duplicated code in hidp_output_raw_report() Reviewed-by: David Herrmann Signed-off-by: Benjamin Tissoires --- net/bluetooth/hidp/core.c | 68 --- 1 file changed, 11 insertions(+), 57 deletions(-) diff --git

[PATCH v2 6/9] HID: usbhid: remove duplicated code

2014-02-05 Thread Benjamin Tissoires
Well, no use to keep twice the same code. Reviewed-by: David Herrmann Signed-off-by: Benjamin Tissoires --- drivers/hid/usbhid/hid-core.c | 64 --- 1 file changed, 11 insertions(+), 53 deletions(-) diff --git a/drivers/hid/usbhid/hid-core.c b/drivers/hid

[PATCH v2 7/9] HID: remove hid_get_raw_report in struct hid_device

2014-02-05 Thread Benjamin Tissoires
dev->hid_get_raw_report(X) and hid_hw_raw_request(X, HID_REQ_GET_REPORT) are strictly equivalent. Switch the hid subsystem to the hid_hw notation and remove the field .hid_get_raw_report in struct hid_device. Reviewed-by: David Herrmann Signed-off-by: Benjamin Tissoires --- drivers/hid/hid-inpu

Re: [PATCH] ACPI hotplug: Fix panic on eject to ejected device

2014-02-05 Thread Rafael J. Wysocki
On Wednesday, February 05, 2014 08:52:49 AM Toshi Kani wrote: > On Wed, 2014-02-05 at 11:05 +, Rafael J. Wysocki wrote: > > On Tuesday, February 04, 2014 05:48:28 PM Toshi Kani wrote: > > > When an eject request is sent to an ejected ACPI device, the following > > > panic occurs: > > > > > >

[PATCH v2 9/9] HID: Add HID transport driver documentation

2014-02-05 Thread Benjamin Tissoires
Add David Herrmann's documentation for the new low-level HID transport driver functions. Signed-off-by: Frank Praznik Signed-off-by: David Herrmann Signed-off-by: Benjamin Tissoires --- Documentation/hid/hid-transport.txt | 316 1 file changed, 316 insertio

[PATCH v2 8/9] HID: introduce helper to access hid_output_raw_report()

2014-02-05 Thread Benjamin Tissoires
Add a helper to access hdev->hid_output_raw_report(). To convert the drivers, use the following snippets: for i in drivers/hid/*.c do sed -i.bak "s/[^ \t]*->hid_output_raw_report(/hid_output_raw_report(/g" $i done Then manually fix for checkpatch.pl Reviewed-by: David Herrmann Signed-off-by:

[PATCH v2 2/9] HID: logitech-dj: remove hidinput_input_event

2014-02-05 Thread Benjamin Tissoires
hid-logitech-dj uses its own ->hidinput_input_event() instead of the generic binding in hid-input. Moving the handling of LEDs towards logi_dj_output_hidraw_report() allows two things: - remove hidinput_input_event in struct hid_device - hidraw user space programs can also set the LEDs Signed-off-

[PATCH v2 0/9] HID: spring cleanup v2

2014-02-05 Thread Benjamin Tissoires
Hi guys, well, here comes the promised v2 of the ll_transport cleanup. As I said, I removed patches which need some more work, and kept only the trivial ones. I also added David's documentation, which gives us a net difference of +210 lines of code :( Let's say that we still have a net worth of -

Re: [PATCH v3] slub: fix false-positive lockdep warning in free_partial()

2014-02-05 Thread Steven Rostedt
On Wed, 5 Feb 2014 13:25:28 -0800 (PST) David Rientjes wrote: > Looks like you've got something prepared already! Mind sending it to > Pekka as a patch based on linux-next? Sure, and there's another lockdep splat that I'm working on too. But first, I need to shovel my driveway yet again (We

Re: [PATCH v3] slub: fix false-positive lockdep warning in free_partial()

2014-02-05 Thread David Rientjes
On Wed, 5 Feb 2014, Steven Rostedt wrote: > Then add the comment that clears this up. But lets not add spinlocks > just to quiet something if they truly are not needed. > > We use "__" variants all the time. That's really not extra code. > > Heck, if you want, call it remove_freed_partial() that

[BUG] perf top: --stdio causes continuous refresh

2014-02-05 Thread Stephane Eranian
Hi, If you run perf top on 3.14 but you force --stdio mode, perf top goes crazy and constantly refreshes the output. It does that with many older versions of the perf as well on 3.14. It runs fine with newt mode. Works fine with my 3.11 kernel. So something must be broken with 3.14. Can you rep

[v2.6.34-stable 018/213] HID: pantherlord: validate output report details

2014-02-05 Thread Paul Gortmaker
From: Kees Cook --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

Re: Thread overran stack, or stack corrupted on 3.13.0

2014-02-05 Thread David Rientjes
On Wed, 5 Feb 2014, Andrew Vagin wrote: > [532284.563576] BUG: unable to handle kernel paging request at > 35c83420 > [532284.564086] IP: [] cpuacct_charge+0x97/0x1e0 > [532284.564086] PGD 116369067 PUD 116368067 PMD 0 > [532284.564086] Thread overran stack, or stack corrupted > [532284.5

Re: [PATCH v3] slub: fix false-positive lockdep warning in free_partial()

2014-02-05 Thread Steven Rostedt
On Wed, 5 Feb 2014 13:07:05 -0800 (PST) David Rientjes wrote: > The functions that manipulate the partial lists was modified by > c65c1877bd68 ("slub: use lockdep_assert_held") which replaced commentary > with runtime checking on debug kernels with lockdep enabled. I'm not sure > adding more

[v2.6.34-stable 006/213] inotify: fix double free/corruption of stuct user

2014-02-05 Thread Paul Gortmaker
From: Eric Paris --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. ---

[v2.6.34-stable 001/213] x86, random: make ARCH_RANDOM prompt if EMBEDDED, not EXPERT

2014-02-05 Thread Paul Gortmaker
From: Romain Francoise --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 007/213] KVM: unmap pages from the iommu when slots are removed

2014-02-05 Thread Paul Gortmaker
From: Alex Williamson --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 004/213] crypto: ghash - Avoid null pointer dereference if no key is set

2014-02-05 Thread Paul Gortmaker
From: Nick Bowler --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. --

[v2.6.34-stable 009/213] bridge: Fix mglist corruption that leads to memory corruption

2014-02-05 Thread Paul Gortmaker
From: Herbert Xu --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. ---

[v2.6.34-stable 008/213] KVM: lock slots_lock around device assignment

2014-02-05 Thread Paul Gortmaker
From: Alex Williamson --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 021/213] HID: LG: validate HID output report details

2014-02-05 Thread Paul Gortmaker
From: Kees Cook --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 022/213] rose: fix info leak via msg_name in rose_recvmsg()

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 023/213] rds: set correct msg_namelen

2014-02-05 Thread Paul Gortmaker
From: Weiping Pan --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. --

[v2.6.34-stable 017/213] HID: validate HID report id size

2014-02-05 Thread Paul Gortmaker
From: Kees Cook --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 025/213] llc: Fix missing msg_namelen update in llc_ui_recvmsg()

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 027/213] isdnloop: fix and simplify isdnloop_init()

2014-02-05 Thread Paul Gortmaker
From: Wu Fengguang --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

[v2.6.34-stable 029/213] atm: fix info leak in getsockopt(SO_ATMPVC)

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 011/213] block: fail SCSI passthrough ioctls on partition devices

2014-02-05 Thread Paul Gortmaker
From: Paolo Bonzini --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 020/213] HID: zeroplus: validate output report details

2014-02-05 Thread Paul Gortmaker
From: Kees Cook --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 003/213] Revert "percpu: fix chunk range calculation"

2014-02-05 Thread Paul Gortmaker
--- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. --- T

[v2.6.34-stable 012/213] dm: do not forward ioctls from logical volumes to the underlying device

2014-02-05 Thread Paul Gortmaker
From: Paolo Bonzini --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 016/213] crypto: ansi_cprng - Fix off by one error in non-block size request

2014-02-05 Thread Paul Gortmaker
From: Neil Horman --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. --

[v2.6.34-stable 026/213] iucv: Fix missing msg_namelen update in iucv_sock_recvmsg()

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 030/213] atm: fix info leak via getsockname()

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 031/213] atm: update msg_namelen in vcc_recvmsg()

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 019/213] HID: provide a helper for validating hid reports

2014-02-05 Thread Paul Gortmaker
From: Kees Cook --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 015/213] jbd/jbd2: validate sb->s_first in journal_get_superblock()

2014-02-05 Thread Paul Gortmaker
From: Eryu Guan --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 014/213] ipv6: call udp_push_pending_frames when uncorking a socket with AF_INET pending data

2014-02-05 Thread Paul Gortmaker
From: Hannes Frederic Sowa --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 037/213] sctp: fix memory leak in sctp_datamsg_from_user() when copy from user space fails

2014-02-05 Thread Paul Gortmaker
From: Tommi Rantala --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 028/213] ax25: fix info leak via msg_name in ax25_recvmsg()

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 036/213] net: sctp: sctp_setsockopt_auth_key: use kzfree instead of kfree

2014-02-05 Thread Paul Gortmaker
From: Daniel Borkmann --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

Re: [PATCH v2 2/3] clocksource: tegra: Define timer bases in header file

2014-02-05 Thread Stephen Warren
On 02/03/2014 05:17 PM, Andrew Chew wrote: > Added timers that are present in tegra30 and later, that are NOT in tegra20. > > Also, some of these timer bases are needed in the tegra watchdog driver, so > separate them out into a header file that both the clocksource driver and > the watchdog drive

[v2.6.34-stable 005/213] inet: add RCU protection to inet->opt

2014-02-05 Thread Paul Gortmaker
From: Eric Dumazet --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

[v2.6.34-stable 038/213] unix: fix a race condition in unix_release()

2014-02-05 Thread Paul Gortmaker
From: Paul Moore --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. ---

Re: [PATCH v3] slub: fix false-positive lockdep warning in free_partial()

2014-02-05 Thread David Rientjes
On Wed, 5 Feb 2014, Steven Rostedt wrote: > > There's an extremely small overhead of taking this lock, the cache has > > been destroyed and is the process of being torn down, there will be > > absolutely no contention on n->list_lock. > > But why add it if it isn't necessary? You're even disabl

[v2.6.34-stable 034/213] net: sctp: sctp_auth_key_put: use kzfree instead of kfree

2014-02-05 Thread Paul Gortmaker
From: Daniel Borkmann --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 044/213] net: guard tcp_set_keepalive() to tcp sockets

2014-02-05 Thread Paul Gortmaker
From: Eric Dumazet --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

[v2.6.34-stable 042/213] tcp: preserve ACK clocking in TSO

2014-02-05 Thread Paul Gortmaker
From: Eric Dumazet --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

[v2.6.34-stable 043/213] net: fix info leak in compat dev_ifconf()

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 040/213] tcp: tcp_sendpages() should call tcp_push() once

2014-02-05 Thread Paul Gortmaker
From: Eric Dumazet --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

[v2.6.34-stable 048/213] net_sched: gact: Fix potential panic in tcf_gact().

2014-02-05 Thread Paul Gortmaker
From: Hiroaki SHIMODA --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 053/213] net: fix a race in sock_queue_err_skb()

2014-02-05 Thread Paul Gortmaker
From: Eric Dumazet --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

Re: [PATCH 3.12 000/133] 3.12.10-stable review

2014-02-05 Thread Guenter Roeck
On Wed, Feb 05, 2014 at 01:41:48PM -0700, Shuah Khan wrote: > On 02/04/2014 11:39 PM, Guenter Roeck wrote: > >On 02/04/2014 01:06 PM, Greg Kroah-Hartman wrote: > >>This is the start of the stable review cycle for the 3.12.10 release. > >>There are 133 patches in this series, all will be posted as a

[v2.6.34-stable 052/213] net_sched: gred: Fix oops in gred_dump() in WRED mode

2014-02-05 Thread Paul Gortmaker
From: David Ward --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. ---

[v2.6.34-stable 045/213] net: fix divide by zero in tcp algorithm illinois

2014-02-05 Thread Paul Gortmaker
From: Jesper Dangaard Brouer --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 051/213] netem: fix possible skb leak

2014-02-05 Thread Paul Gortmaker
From: Eric Dumazet --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

[v2.6.34-stable 054/213] netlink: wake up netlink listeners sooner (v2)

2014-02-05 Thread Paul Gortmaker
From: stephen hemminger --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 059/213] net/tun: fix ioctl() based info leaks

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 060/213] tun: Fix formatting.

2014-02-05 Thread Paul Gortmaker
From: "David S. Miller" --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 062/213] tcp: drop SYN+FIN messages

2014-02-05 Thread Paul Gortmaker
From: Eric Dumazet --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

[v2.6.34-stable 047/213] net: sched: integer overflow fix

2014-02-05 Thread Paul Gortmaker
From: Stefan Hasko --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

[v2.6.34-stable 049/213] bridge: set priority of STP packets

2014-02-05 Thread Paul Gortmaker
From: Stephen Hemminger --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 056/213] softirq: reduce latencies

2014-02-05 Thread Paul Gortmaker
From: Eric Dumazet --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

[v2.6.34-stable 061/213] tcp: perform DMA to userspace only if there is a task waiting for it

2014-02-05 Thread Paul Gortmaker
From: Jiri Kosina --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. --

[v2.6.34-stable 068/213] xfrm_user: fix info leak in copy_to_user_state()

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

Re: [PATCH v2 1/3] clocksource: tegra: Add nvidia,tegra30-timer compat

2014-02-05 Thread Stephen Warren
On 02/03/2014 05:17 PM, Andrew Chew wrote: > There are some differences between tegra20's timer registers and tegra30's > (and later). For example, tegra30 has more timers. In addition, watchdogs > are not present in tegra20. > > Add this compatibility string in order to be able to distinguish >

[v2.6.34-stable 055/213] netlink: fix races after skb queueing

2014-02-05 Thread Paul Gortmaker
From: Eric Dumazet --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

[v2.6.34-stable 069/213] xfrm_user: fix info leak in copy_to_user_policy()

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 070/213] xfrm_user: fix info leak in copy_to_user_tmpl()

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 071/213] xfrm_user: return error pointer instead of NULL

2014-02-05 Thread Paul Gortmaker
From: Mathias Krause --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment.

[v2.6.34-stable 057/213] net: reduce net_rx_action() latency to 2 HZ

2014-02-05 Thread Paul Gortmaker
From: Eric Dumazet --- This is a commit scheduled for the next v2.6.34 longterm release. http://git.kernel.org/?p=linux/kernel/git/paulg/longterm-queue-2.6.34.git If you see a problem with using this for longterm, please comment. -

<    1   2   3   4   5   6   7   8   9   >