First  |  Prev |  Next  |  Last
Pages: 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
[PATCH 7/9] staging: tidspbridge: fix memory leak
dbll_create() leaks pzl_target if target_obj is NULL. Call kzalloc() only if memory is used. Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- drivers/staging/tidspbridge/pmgr/dbll.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/tidspbridge/pmgr/dbll.c b/driv... 30 Jul 2010 07:30
[PATCH 8/9] fs: nfs: misused copy_to_user() return value
copy_to_user() returns nonzero value on error, this value may be any value between 0 and requested count, not only requested count. Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- fs/nfs/idmap.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/nfs/idmap.c b/fs/nfs/idmap.c i... 30 Jul 2010 07:30
[PATCH 5/9] staging: panel: check put_user() return value
put_user() may fail, if so return -EFAULT and do not update driver pointers. Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- drivers/staging/panel/panel.c | 17 +++++++++++------ 1 files changed, 11 insertions(+), 6 deletions(-) diff --git a/drivers/staging/panel/panel.c b/drivers/staging/panel/pane... 30 Jul 2010 07:30
[PATCH 2/9] staging: octeon: check request_irq() return value
request_irq() may fail, if so propagate error code. Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- drivers/staging/octeon/ethernet-spi.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/staging/octeon/ethernet-spi.c b/drivers/staging/octeon/ethernet-spi.c index b58b897... 30 Jul 2010 07:30
[PATCH 1/9] staging: dt3155: check put_user() return value
put_user() may fail, if so return -EFAULT. Also compare count with copied data size, not size of struct with these fields. Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- drivers/staging/dt3155/dt3155_drv.c | 121 ++++++++++++++++------------------ 1 files changed, 57 insertions(+), 64 deletions(-) ... 30 Jul 2010 07:30
[PATCH 6/9] staging: rtl8192su: check whether requests succeeded
rtl8192_usb_probe() does not check alloc_ieee80211() and register_netdev() return values for errors. Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- drivers/staging/rtl8192su/r8192U_core.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/drivers/staging/rtl8192su/r8192U_core... 30 Jul 2010 07:30
[PATCH 3/9] staging: otus: check kmalloc() return value
kmalloc() may fail, if so return error from zfwUsbSubmitControl(). Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- drivers/staging/otus/wrap_usb.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/staging/otus/wrap_usb.c b/drivers/staging/otus/wrap_usb.c index 93459ca... 30 Jul 2010 07:30
: Compress hibernation image with LZO (in-kernel)
On Fri, 2010-07-30 at 14:46 +1000, Bojan Smojver wrote: This patch speeds up hibernate/thaw operations This is probably a bit simpler. -- Bojan ... 5 Aug 2010 03:44
powerpc: Use IRQF_NO_SUSPEND not IRQF_TIMER for non-timer interrupts
On Thu, 2010-07-29 at 11:16 +0100, Ian Campbell wrote: kw_i2c_irq and via_pmu_interrupt are not timer interrupts and therefore should not use IRQF_TIMER. Use the recently introduced IRQF_NO_SUSPEND instead since that is the actual desired behaviour. Signed-off-by: Ian Campbell <ian.campbell(a)citrix.com> ... 30 Jul 2010 07:30
irq: Add new IRQ flag IRQF_NO_SUSPEND
On Thu, 2010-07-29 at 11:16 +0100, Ian Campbell wrote: A small number of users of IRQF_TIMER are using it for the implied no suspend behaviour on interrupts which are not timer interrupts. Therefore add a new IRQF_NO_SUSPEND flag, rename IRQF_TIMER to __IRQF_TIMER and redefine IRQF_TIMER in terms of the... 30 Jul 2010 07:30
First  |  Prev |  Next  |  Last
Pages: 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340