>From 152373a6262045d19023cf45de84ad3c69316a45 Mon Sep 17 00:00:00 2001
From: Jovi Zhang
Date: Mon, 20 Aug 2012 14:20:01 +0800
Subject: [PATCH] pstore: add missed platform_device_unregister
we need unregister platform device when module exit, add it.
Signed-off-by: Jovi Zhang
---
fs/pstore/ram
> From: anish kumar
>
> Instead of "const char **supported_cable" it is better to have
> it as "const char *const *supported_cable".
>
> Signed-off-by: anish kumar
Could you please elaborate on why it's better?
(Is this fixing the using the standard naming issue Mark mentioned before?)
Chee
Hi Artem,
2012/8/19 Artem Bityutskiy :
> Yeah, I wanted to make it 1..256 but forgot, will do now. 0..256 would
> need some more work to avoid division by 0.
Division by 0 is handled in the get_bad_peb_limit() function, I don't
see another dangerous place.
So, I think that we can change back the ra
On Sunday 19 August 2012 23:07:32 Raymond Jennings wrote:
> On Sun, 2012-08-19 at 20:47 -0400, Theodore Ts'o wrote:
> > On Mon, Aug 20, 2012 at 01:06:20AM +0200, Carlos Alberto Lopez Perez wrote:
> > >
> > > > I also seriously question the niche of people who want to use a thumb
> > > > drive to t
On 08/19/2012 10:03 AM, Julia Lawall wrote:
> From: Julia Lawall
>
> It was forgotten to initialize ret to the result of calling
> snd_soc_dai_set_sysclk, unlike at the other calls in the same function.
>
> A simplified version of the semantic match that finds this problem is as
> follows: (http
On Monday 20 August 2012, Kim, Milo wrote:
> > * I don't understand why you need the "if (rvdata->pwm) return 0;" case.
> > It's normally better to do the initialization exactly once from the
> > probe() function. You might want to return -EPROBE_DEFER if the pwm
> > source is not yet availab
Hi,
The commit 154a7a7b2234 ("asus-wmi: update wlan LED through rfkill led trigger")
needs another patch which was submitted to rfkill, but still not be merged yet.
see https://patchwork.kernel.org/patch/1240091/
Sorry for leading to the problem.
Best regards,
AceLan Kao.
2012/8/20 Stephen Roth
> In net/caif/chnl_net.c::chnl_recv_cb() we call skb_header_pointer()
> which may return NULL, but we do not check for a NULL pointer before
> dereferencing it.
> This patch adds such a NULL check and properly free's allocated memory
> and return an error (-EINVAL) on failure - much better than cra
Hi Shmulik,
2012/8/19 Shmulik Ladkani :
> Hi Richard,
>
> On Fri, 17 Aug 2012 16:35:21 +0200 Richard Genoud
> wrote:
>> + /*
>> + * A value of 0 is forced to the default value to keep the same
>> + * behavior between ubiattach command and module parameter
>> + */
>
> Minor thi
On Sat, 2012-08-18 at 17:45 -0700, Randy Dunlap wrote:
> From: Randy Dunlap
>
> Fix kernel-doc warnings in kernel/sched/fair.c:
>
> Warning(kernel/sched/fair.c:3660): Excess function parameter 'cpus'
> description in 'update_sg_lb_stats'
> Warning(kernel/sched/fair.c:3806): Excess function para
From: Jianguo Wu
Hi all,
When doing memory-hot-plug, We found node distance is wrong after
offline
a node in IA64 platform. For example system has 4 nodes:
node distances:
node 0 1 2 3
0: 10 21 21 32
1: 21 10 32 21
2: 21 32 10 21
3: 32 21 21 10
linux-drf:
> > * Rather than having to do the #ifdef here, I think it would be
> better if
> > the PWM subsystem provided stub functions for pwm_request,
> pwm_config,
> > pwm_enable, pwm_disable and pwm_free that do nothing, so you can in
> effect
> > let the compiler optimize away the above code.
>
>
> * Rather than having to do the #ifdef here, I think it would be better
> if
> the PWM subsystem provided stub functions for pwm_request, pwm_config,
> pwm_enable, pwm_disable and pwm_free that do nothing, so you can in
> effect
> let the compiler optimize away the above code.
Thanks a lot
Hi Matthew,
After merging the drivers-x86 tree, today's linux-next build (x86_64
allmodconfig) failed like this:
drivers/platform/x86/asus-wmi.c: In function 'asus_new_rfkill':
drivers/platform/x86/asus-wmi.c:892:3: error: implicit declaration of function
'rfkill_set_led_trigger_name' [-Werror=i
On Sun, 2012-08-19 at 20:47 -0400, Theodore Ts'o wrote:
> On Mon, Aug 20, 2012 at 01:06:20AM +0200, Carlos Alberto Lopez Perez wrote:
> >
> > > I also seriously question the niche of people who want to use a thumb
> > > drive to transfer > 4GB files. Try it sometime and see what a painful
> > > u
On Fri, Aug 17, 2012 at 12:34:11PM +0200, Sebastian Andrzej Siewior wrote:
> On 08/17/2012 12:30 PM, Andrzej Pietrasiewicz wrote:
> >>There is a separation between "setting myself up" and "seeing that a host
> >>wants to talk to me". You are a woman. And if you not done yet done you
> >ignore
> >>t
On Mon, Aug 20, 2012 at 05:37:48AM +, Arnd Bergmann wrote:
> On Monday 20 August 2012, Kim, Milo wrote:
> > +#ifdef CONFIG_PWM
> > +static int lm3530_pwm_request(struct lm3530_data *drvdata)
> > +{
> > + int pwm_id;
> > +
> > + /* if the pwm device exists, skip requesting the device
On Sun, 2012-08-19 at 11:58 -0700, Xin Tong wrote:
> I have 2 questions about linux 2.6 x86_64 scheduler.
>
> 1. is the default scheduling algorithm SCHED_NORMAL in linux ?
Yes.
> 2. how do i change the time slice in linux source code ?
You shouldn't need to. You can tune "slice" by adjusting
On Monday 20 August 2012, Chao Xie wrote:
>
> From: Chao Xie
>
> v1->v2:
> replace __raw_xxx with xxx_relax
> use ioremap to remap the registers. Finaly it will use device tree to
> get the physical address.
> do not use macro to register clocks, and directly call the functions.
>
> v2->v3:
> p
On Monday 20 August 2012, Kim, Milo wrote:
> +#ifdef CONFIG_PWM
> +static int lm3530_pwm_request(struct lm3530_data *drvdata)
> +{
> + int pwm_id;
> +
> + /* if the pwm device exists, skip requesting the device */
> + if (drvdata->pwm)
> + return 0;
> +
> + pwm
Hello,
On 08/18/2012 01:06 PM, Daniel J Blueman wrote:
> Hi Philip,
>
> The interrupt could be from another source, though Message Signalled
> Interrupts are a PCI (and variants) only feature at present. I'm happy
> to split the patch and/or make the module param specific to sdhci-pci.
Not sure
On Tue, 2012-08-14 at 06:55 +, Liu, Chuansheng wrote:
> From: liu chuansheng
> Subject: [PATCH] x86/fixup_irq: using the cpu_online_mask instead of
> cpu_all_mask
>
> When one CPU is going down, and this CPU is the last one in irq affinity,
> current code is setting cpu_all_mask as the new a
On Mon, Aug 20, 2012 at 3:13 PM, Randy Dunlap wrote:
> On 08/17/12 15:55, Dave Airlie wrote:
>
>> On Sat, Aug 18, 2012 at 8:54 AM, Dave Airlie wrote:
>>> On Sat, Aug 18, 2012 at 8:28 AM, Randy Dunlap wrote:
On 08/17/2012 03:25 PM, Justin M. Forbes wrote:
> for , we have verified ca
On 08/17/12 15:55, Dave Airlie wrote:
> On Sat, Aug 18, 2012 at 8:54 AM, Dave Airlie wrote:
>> On Sat, Aug 18, 2012 at 8:28 AM, Randy Dunlap wrote:
>>> On 08/17/2012 03:25 PM, Justin M. Forbes wrote:
>>>
for , we have verified cases on inteldrmfb, radeondrmfb, and
cirrusdrmfb.
>>>
On Mon, Aug 20, 2012 at 11:59:11AM +0930, Rusty Russell wrote:
> On Wed, 15 Aug 2012 17:40:19 +0300, "Michael S. Tsirkin"
> wrote:
> > On Wed, Aug 15, 2012 at 09:34:58AM -0300, Rafael Aquini wrote:
> > > On Tue, Aug 14, 2012 at 10:31:09PM +0300, Michael S. Tsirkin wrote:
> > > > > > now CPU1 exec
On Mon, Aug 20, 2012 at 04:02:05AM +, Kim, Milo wrote:
[...]
> diff --git a/drivers/leds/leds-lm3530.c b/drivers/leds/leds-lm3530.c
[...]
> @@ -111,6 +114,8 @@ struct lm3530_data {
> struct regulator *regulator;
> enum led_brightness brightness;
> bool enable;
> + struct p
On Mon, Aug 20, 2012 at 04:02:05AM +, Kim, Milo wrote:
> use generic pwm functions for changing the duty rather than the platform data
pwm -> PWM, duty -> duty-cycle
There are more occurrences of "pwm"scattered through the file, please
fix those as well.
> @@ -153,6 +158,64 @@ static int lm3
On Mon, Aug 20, 2012 at 4:59 AM, Namhyung Kim wrote:
> Forgot to add the #ifdefery to the below code also. :-/ Anyway, it needs
> to expose gtk specifics to general code with the #ifdef's. So I'd still
> prefer the original patch.
Fair enough.
Acked-by: Pekka Enberg
--
To unsubscribe from this
On Wed, 15 Aug 2012 21:43:06 +0300, Dmitry Kasatkin
wrote:
> + } else {
> + struct {
> + struct shash_desc shash;
> + char ctx[crypto_shash_descsize(tfm)];
> + } desc;
Linus had a rant a while ago about using variable-sized stac
On Wed, 15 Aug 2012 17:40:19 +0300, "Michael S. Tsirkin"
wrote:
> On Wed, Aug 15, 2012 at 09:34:58AM -0300, Rafael Aquini wrote:
> > On Tue, Aug 14, 2012 at 10:31:09PM +0300, Michael S. Tsirkin wrote:
> > > > > now CPU1 executes the next instruction:
> > > > >
> > > > > }
> > > > >
> > > > > wh
On Tue, 14 Aug 2012 17:13:45 +0200, Ralf Baechle wrote:
> Fixes build failure introduced by "Make most arch asm/module.h files use
> asm-generic/module.h" by moving all the RELA processing code to a
> separate file to be used only for RELA processing on 64-bit kernels.
>
> CC arch/mips/ker
On Tue, 14 Aug 2012 10:41:42 -0700, Randy Dunlap wrote:
> On 08/14/2012 08:17 AM, Richard Weinberger wrote:
>
> > Am 14.08.2012 17:15, schrieb David Howells:
> >> How about this then?
> >>
> >> David
> >> ---
> >> diff --git a/arch/x86/um/Kconfig b/arch/x86/um/Kconfig
> >> index 9926e11..a4b0c10
From: Namhyung Kim
Override hpp->color functions for TUI. Because line coloring is done
outside of the function, it just sets the percent value and pass it.
Signed-off-by: Namhyung Kim
---
tools/perf/ui/browsers/hists.c | 94 --
tools/perf/ui/tui/setup.c
From: Namhyung Kim
Signed-off-by: Namhyung Kim
---
tools/perf/ui/hist.c | 27 +++
tools/perf/util/hist.c | 33 -
2 files changed, 27 insertions(+), 33 deletions(-)
diff --git a/tools/perf/ui/hist.c b/tools/perf/ui/hist.c
index 29c787c93
From: Namhyung Kim
Current hist print functions are messy. Refactor them using the hpp
callbacks and move common code to ui/hist.c. This will make it easy to
add new features.
Signed-off-by: Namhyung Kim
---
tools/perf/Makefile| 2 +
tools/perf/builtin-diff.c | 1 +
tools/perf/ui/
From: Namhyung Kim
When a field separator is given, the output format doesn't need to be
fancy like aligning to column length, coloring the percent value and
so on. And since there's a slight difference to normal format, fix it
not to break backward compatibility.
Cc: Stephane Eranian
Signed-of
From: Namhyung Kim
Rename functions for consistency and move callchain print function
into hist_entry__fprintf().
Signed-off-by: Namhyung Kim
---
tools/perf/ui/browsers/hists.c | 4 ++--
tools/perf/ui/stdio/hist.c | 51 +++---
tools/perf/util/hist.h
From: Namhyung Kim
Now we can support color using pango markup with this change.
Acked-by: Pekka Enberg
Signed-off-by: Namhyung Kim
---
tools/perf/ui/gtk/browser.c | 101 +---
tools/perf/ui/gtk/gtk.h | 1 +
tools/perf/ui/gtk/setup.c | 1 +
3 f
From: Namhyung Kim
Separate out those functions into ui/stdio/hist.c. This is required
for upcoming changes.
Signed-off-by: Namhyung Kim
---
tools/perf/Makefile| 3 +-
tools/perf/ui/stdio/hist.c | 648 +++
tools/perf/util/hist.c | 677 ++---
Hello,
This is a cleanup and refactoring patchset for the hist printing code
by adding hist_period_print functions and hpp_context. I believe it
makes the code easy to maintain and to add new functionalities like
upcoming group viewing and callchain accumulation.
Any comments are welcome, thanks
Hi Paul,
On Fri, 17 Aug 2012 04:50:19 -0700 "Paul E. McKenney"
wrote:
>
> Does the following help?
Yes, that fixes the warnings. Please submit those two patches to the tip
folks ASAP as I can't build the tip tree without them.
--
Cheers,
Stephen Rothwells...@canb.auug.org.
Signed-off-by: David Ahern
---
tools/perf/Makefile | 117 ++-
tools/perf/config/feature-tests.mak |2 +-
tools/perf/util/trace-event-scripting.c | 17 ++---
3 files changed, 60 insertions(+), 76 deletions(-)
diff --git a/tools/perf/Makef
Signed-off-by: David Ahern
---
tools/perf/Makefile | 43 +++
tools/perf/arch/x86/Makefile|2 +-
tools/perf/builtin-record.c | 15 ++--
tools/perf/config/feature-tests.mak |2 +-
tools/perf/util/unwind.h
Need help adapting the build targets from the top level Makefile.
For this RFC series, the commands can be run manually:
$ cd tools/perf
$ ../../scripts/kconfig/conf --allyesconfig Pconfig
--> generates .config for perf
$ mkdir include/config
$ mkdir include/generated
$ /tmp/kbuild/scripts/kconf
Signed-off-by: David Ahern
---
tools/perf/Makefile | 25 ++---
tools/perf/util/symbol.h |6 +++---
2 files changed, 17 insertions(+), 14 deletions(-)
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index b481d77..d31fe1d 100644
--- a/tools/perf/Makefile
+++
Signed-off-by: David Ahern
---
tools/perf/Makefile | 60 ---
tools/perf/config/feature-tests.mak |2 +-
tools/perf/ui/gtk/util.c|4 +--
tools/perf/ui/helpline.h| 10 +++---
tools/perf/util/annotate.h |
Signed-off-by: David Ahern
---
tools/perf/Makefile | 46 ---
tools/perf/config/feature-tests.mak |2 +-
tools/perf/ui/helpline.h|9 ---
tools/perf/util/cache.h | 13 +-
tools/perf/util/debug.c
Signed-off-by: David Ahern
---
tools/perf/Makefile | 25 +++--
tools/perf/config/feature-tests.mak |2 +-
tools/perf/util/trace-event-scripting.c | 13 +++--
3 files changed, 19 insertions(+), 21 deletions(-)
diff --git a/tools/perf/Mak
2012/8/18, OGAWA Hirofumi :
> Al Viro writes:
>
>> On Sat, Aug 18, 2012 at 05:41:39AM -0400, Namjae Jeon wrote:
>>> From: Namjae Jeon
>>>
>>> This patch-set eliminates the client side ESTALE errors when
>>> a FAT partition exported over NFS has its dentries evicted
>>> from the cache.
>>>
>>> One
2012/8/18, Al Viro :
> On Sat, Aug 18, 2012 at 05:41:39AM -0400, Namjae Jeon wrote:
>> From: Namjae Jeon
>>
>> This patch-set eliminates the client side ESTALE errors when
>> a FAT partition exported over NFS has its dentries evicted
>> from the cache.
>>
>> One of the reasons for this error is la
From: Greg KH
3.0-stable review patch. If anyone has any objections, please let me know.
--
From: Sarah Sharp
commit 5cb7df2b2d3afee7638b3ef23a5bcb89c6f07bd9 upstream.
Gary reports that with recent kernels, he notices more xHCI driver
warnings:
xhci_hcd :03:00.0: WARN S
From: Greg KH
3.0-stable review patch. If anyone has any objections, please let me know.
--
From: Zach Brown
commit fb6ccff667712c46b4501b920ea73a326e49626a upstream.
Commit 7572777eef78ebdee1ecb7c258c0ef94d35bad16 attempted to verify that
the total iovec from the client doe
From: Greg KH
3.0-stable review patch. If anyone has any objections, please let me know.
--
From: Stefano Stabellini
commit b9e0d95c041ca2d7ad297ee37c2e9cfab67a188f upstream.
When the frontend and the backend reside on the same domain, even if we
add pages to the m2p_overrid
From: Greg KH
3.0-stable review patch. If anyone has any objections, please let me know.
--
From: Daniel Vetter
commit 0d8957c8a90bbb5d34fab9a304459448a5131e06 upstream.
We may only start to set up the new register values after having
confirmed that the ring is truely off. O
From: Greg KH
3.0-stable review patch. If anyone has any objections, please let me know.
--
From: Sarah Sharp
commit 22ceac191211cf6688b1bf6ecd93c8b6bf80ed9b upstream.
The NEC/Renesas 720201 xHCI host controller does not complete its reset
within 250 milliseconds. In fact,
From: Greg KH
3.0-stable review patch. If anyone has any objections, please let me know.
--
From: Sarah Sharp
commit e95829f474f0db3a4d940cae1423783edd966027 upstream.
The Intel desktop boards DH77EB and DH77DF have a hardware issue that
can be worked around by BIOS. If the
From: Greg KH
3.0-stable review patch. If anyone has any objections, please let me know.
--
From: Theodore Ts'o
commit 7e731bc9a12339f344cddf82166b82633d99dd86 upstream.
Commit 03179fe923 introduced a kmemcheck complaint in
ext4_da_get_block_prep() because we save and restor
From: Greg KH
3.0-stable review patch. If anyone has any objections, please let me know.
--
From: Ozan Çağlayan
commit 7724a1edbe463b06d4e7831a41149ba095b16c53 upstream.
This adds VID/PID for Kondo Kagaku Co. Ltd. Serial USB Adapter
interface:
http://www.kondo-robot.com/EN/w
From: Greg KH
3.0-stable review patch. If anyone has any objections, please let me know.
--
From: Jeongdo Son
commit a769f9577232afe2c754606a83aad85127e7052a upstream.
This is a RT3070 based device.
Signed-off-by: Jeongdo Son
Signed-off-by: John W. Linville
Signed-off-by:
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Heiko Carstens
commit 82aabdb6f1eb61e0034ec23901480f5dd23db7c4 upstream.
The compat wrappers incorrectly called the non compat versions of
the system process_vm system calls.
S
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Fabio Estevam
commit a2367db2ec5e7fc6fe93e221e0fcdee81b053daf upstream.
With the new i.MX clock infrastructure we need to request the dma clocks
seperately: ahb and ipg clocks.
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Christoph Bumiller
commit af5e7d84b0ec45b2b614b0d6e3657cbdceaa21f9 upstream.
Signed-off-by: Christoph Bumiller
Signed-off-by: Ben Skeggs
Signed-off-by: Greg Kroah-Hartman
--
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Daniel Vetter
commit 0d8957c8a90bbb5d34fab9a304459448a5131e06 upstream.
We may only start to set up the new register values after having
confirmed that the ring is truely off. O
From: Greg KH
3.0-stable review patch. If anyone has any objections, please let me know.
--
From: Gustavo Padovan
commit d81a5d1956731c453b85c141458d4ff5d6cc5366 upstream.
A lot of Broadcom Bluetooth devices provides vendor specific interface
class and we are getting flooded
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Stefano Stabellini
commit b9e0d95c041ca2d7ad297ee37c2e9cfab67a188f upstream.
When the frontend and the backend reside on the same domain, even if we
add pages to the m2p_overrid
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Jerome Glisse
commit 81ee8fb6b52ec69eeed37fe7943446af1dccecc5 upstream.
It seems we can not update the crtc scanout address. After disabling
crtc, update to base address do not
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Alex Deucher
commit 5b23c9045a8b61352986270b2d109edf5085e113 upstream.
Handle the 16 bank case.
Signed-off-by: Alex Deucher
Signed-off-by: Greg Kroah-Hartman
---
drivers/gp
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Theodore Ts'o
commit d796c52ef0b71a988364f6109aeb63d79c5b116b upstream.
After we transfer set the EXT4_ERROR_FS bit in the file system
superblock, it's not enough to call jbd2_j
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Theodore Ts'o
commit 89a4e48f8479f8145eca9698f39fe188c982212f upstream.
Commit 968dee7722: "ext4: fix hole punch failure when depth is greater
than 0" introduced a regression in
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Sarah Sharp
commit 22ceac191211cf6688b1bf6ecd93c8b6bf80ed9b upstream.
The NEC/Renesas 720201 xHCI host controller does not complete its reset
within 250 milliseconds. In fact,
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Gustavo Padovan
commit d81a5d1956731c453b85c141458d4ff5d6cc5366 upstream.
A lot of Broadcom Bluetooth devices provides vendor specific interface
class and we are getting flooded
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Bjørn Mork
commit f1b5c997e68533df1f96dcd3068a231bca495603 upstream.
The ZTE (Vodafone) K5006-Z use the following
interface layout:
00 DIAG
01 secondary
02 modem
03 networkcard
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: fangxiaozhi
commit ee6f827df9107139e8960326e49e1376352ced4d upstream.
In this patch, we add new declarations into option.c to support the new
interfaces of Huawei Data Card devi
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Jason Wessel
commit 38f8eefccf3a23c4058a570fa2938a4f553cf8e0 upstream.
kdb <-> kgdb transitioning does not work properly with this UART
driver because the get character routine
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Michael Grzeschik
commit b1b552a69b8805e7e338074a9e8b670b4a795218 upstream.
This patch fixes an issue introduced by patch:
72c973d usb: gadget: add usb_endpoint_descriptor
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Heiko Carstens
commit 82aabdb6f1eb61e0034ec23901480f5dd23db7c4 upstream.
The compat wrappers incorrectly called the non compat versions of
the system process_vm system calls.
S
From: Greg KH
This is the start of the stable review cycle for the 3.5.3 release.
There are 47 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Wed Aug 22 03:58:29 UTC 2012.
A
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Fabio Estevam
commit a2367db2ec5e7fc6fe93e221e0fcdee81b053daf upstream.
With the new i.MX clock infrastructure we need to request the dma clocks
seperately: ahb and ipg clocks.
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Zach Brown
commit fb6ccff667712c46b4501b920ea73a326e49626a upstream.
Commit 7572777eef78ebdee1ecb7c258c0ef94d35bad16 attempted to verify that
the total iovec from the client doe
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Jeongdo Son
commit a769f9577232afe2c754606a83aad85127e7052a upstream.
This is a RT3070 based device.
Signed-off-by: Jeongdo Son
Signed-off-by: John W. Linville
Signed-off-by:
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Mark Ferrell
commit 5c263b92f828af6a8cf54041db45ceae5af8f2ab upstream.
* Use the buffer content length as opposed to the total buffer size. This can
be a real problem when
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Sarah Sharp
commit 5cb7df2b2d3afee7638b3ef23a5bcb89c6f07bd9 upstream.
Gary reports that with recent kernels, he notices more xHCI driver
warnings:
xhci_hcd :03:00.0: WARN S
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Bart Van Assche
commit 220329916c72ee3d54ae7262b215a050f04a18fc upstream.
Avoid a crash caused by the scmnd->scsi_done(scmnd) call in
srp_process_rsp() being invoked with scsi_d
From: Greg KH
3.4-stable review patch. If anyone has any objections, please let me know.
--
From: Theodore Ts'o
commit 0548bbb85337e532ca2ed697c3e9b227ff2ed4b4 upstream.
Commit 8aeb00ff85a: "ext4: fix overhead calculation used by
ext4_statfs()" introduced a O(n**2) calculati
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Dave Airlie
commit 9830605d4c070b16ec5c24a75503877cc7698409 upstream.
The original code was misported from the X driver,
a) an int went to unsigned int, breaking the downward c
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Daniel Vetter
commit 4344b813f105a19f793f1fd93ad775b784648b95 upstream.
This has originally been introduced to not oversubscribe the dp links
in
commit 885a5fb5b120a5c7e0b3baad
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Daniel Vetter
commit 35a38556d900b9cb5dfa2529c93944b847f8a8a4 upstream.
eDP is tons of fun. It turns out that at least the new MacBook Air 5,1
model absolutely doesn't like the
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Christoph Bumiller
commit af5e7d84b0ec45b2b614b0d6e3657cbdceaa21f9 upstream.
Signed-off-by: Christoph Bumiller
Signed-off-by: Ben Skeggs
Signed-off-by: Greg Kroah-Hartman
--
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Alex Deucher
commit 2f292004dd1fb005788dc0a9cdd5559812ed866e upstream.
Signed-off-by: Alex Deucher
Signed-off-by: Greg Kroah-Hartman
---
include/drm/drm_pciids.h |3 +++
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Jerome Glisse
commit 81ee8fb6b52ec69eeed37fe7943446af1dccecc5 upstream.
It seems we can not update the crtc scanout address. After disabling
crtc, update to base address do not
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Christian König
commit dca571a6a4edda1f61ba7ecb47431a22245490a3 upstream.
The sixteen bank case wasn't handled here, leading to GPU
crashes because of userspace miscalculation.
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Alex Deucher
commit c8d15edc17d836686d1f071e564800e1a2724fa6 upstream.
Handle the 16 bank case.
Signed-off-by: Alex Deucher
Signed-off-by: Greg Kroah-Hartman
---
drivers/gp
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Theodore Ts'o
commit d796c52ef0b71a988364f6109aeb63d79c5b116b upstream.
After we transfer set the EXT4_ERROR_FS bit in the file system
superblock, it's not enough to call jbd2_j
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Theodore Ts'o
commit 7a4c5de27efa4c2ecca87af0a3deea63446367e2 upstream.
While in ext4_validate_block_bitmap(), if an block allocation bitmap
is found to be invalid, we call ext4
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Theodore Ts'o
commit 89a4e48f8479f8145eca9698f39fe188c982212f upstream.
Commit 968dee7722: "ext4: fix hole punch failure when depth is greater
than 0" introduced a regression in
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Sarah Sharp
commit 22ceac191211cf6688b1bf6ecd93c8b6bf80ed9b upstream.
The NEC/Renesas 720201 xHCI host controller does not complete its reset
within 250 milliseconds. In fact,
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Jim Cromie
commit af7f2158fdee9d7f55b793b09f8170a3391f889a upstream.
commit c4e00daaa96d3a0786f1f4fe6456281c60ef9a16 changed __dev_printk
in a way that broke dynamic-debug's abi
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Ian Abbott
commit 80eb7a506fdcea08f86c9dfc7c638303bf02a3c8 upstream.
Commit 3902a370281d2f2b130f141e8cf94eab40125769 (staging: comedi:
refactor comedi_device_attach() a bit) by
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: fangxiaozhi
commit ee6f827df9107139e8960326e49e1376352ced4d upstream.
In this patch, we add new declarations into option.c to support the new
interfaces of Huawei Data Card devi
From: Greg KH
3.5-stable review patch. If anyone has any objections, please let me know.
--
From: Sarah Sharp
commit 50d0206fcaea3e736f912fd5b00ec6233fb4ce44 upstream.
This patch fixes a particularly nasty bug that was revealed by the ring
expansion patches. The bug has bee
1 - 100 of 332 matches
Mail list logo