CRED: Fix a race in creds_are_invalid() in credentials debugging
I think you should submit this for 2.6.3[23]-stable too. Thanks, Roland -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.or... 23 Apr 2010 21:14
mfd: WM8350: remove incorrect kfree
On Wed, Apr 21, 2010 at 09:06:05PM +0530, Rabin Vincent wrote: The i2c_client received in probe() should not be kfree()'d. Signed-off-by: Rabin Vincent <rabin(a)rab.in> Acked-by: Mark Brown <broonie(a)opensource.wolfsonmicro.com> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in ... 9 May 2010 17:36
Driver for SMM665 power controller
Hi, does anyone know if there is a driver for the SMM665/SMM766 power controllers ? If not, is there interest in such a driver ? I have a prototype running, but before cleaning it up and submitting it I would like to get an idea if it is worth the effort. Thanks, Guenter -- To unsubscribe from this lis... 23 Apr 2010 21:14
[PATCH] KEYS: Fix an RCU warning in the reading of user keys
Fix an RCU warning in the reading of user keys: =================================================== [ INFO: suspicious rcu_dereference_check() usage. ] --------------------------------------------------- security/keys/user_defined.c:202 invoked rcu_dereference_check() without protection! other info that might ... 23 Apr 2010 21:14
Threaded irq handler question
Hi all, I have a threaded irq handler attached to a level-triggered gpio interrupt line. The check handler checks the status of the gpio line and disables the irq line amd returns WAKE_THREAD in that case: static irqreturn_t isr_check(int irq, void *p) { if (gpio_status()) { disable_i... 23 Apr 2010 21:17
[PATCH] perf: fix initialization bug in parse_single_tracepoint_event()
The parse_single_tracepoint_event() was setting some attributes before it validated the event was indeed a tracepoint event. This caused problems with other initialization routines like in the builtin-top.c module whereby sample_period is not set if not 0. Signed-off-by: Stephane Eranian <eranian(a)goog... 23 Apr 2010 21:14
blkio: Fix blkio crash during rq stat update
On Wed, Apr 21 2010, Jens Axboe wrote: On Wed, Apr 21 2010, Vivek Goyal wrote: @@ -1001,6 +1002,11 @@ static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create) return cfqg; } +static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg) { + atomic_inc(&cf... 23 Apr 2010 21:14
[PATCH 1/2] Composite framework: Add suspended sysfs entry
From: Fabien Chouteau <fabien.chouteau(a)barco.com> Signed-off-by: Fabien Chouteau <fabien.chouteau(a)barco.com> --- drivers/usb/gadget/composite.c | 21 +++++++++++++++++++++ include/linux/usb/composite.h | 1 + include/linux/usb/gadget.h | 4 ++++ 3 files changed, 26 insertions(+), 0 deletions(-) ... 23 Apr 2010 21:14
[PATCH] mfd: WM8350: remove incorrect kfree
The i2c_client received in probe() should not be kfree()'d. Signed-off-by: Rabin Vincent <rabin(a)rab.in> --- drivers/mfd/wm8350-i2c.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/mfd/wm8350-i2c.c b/drivers/mfd/wm8350-i2c.c index 65830f5..5fe5de1 100644 --- a/drivers/mfd/... 23 Apr 2010 21:14
[PATCH] mtd: Do not corrupt backing device for inode
We cannot modify file->f_mapping->backing_dev_info directly, because it will corrupt backing device for inode, since inode->i_mapping == file->f_mapping (see __dentry_open() in fs/open.c). So we have to copy f_mapping first. Signed-off-by: Kirill A. Shutemov <kirill(a)shutemov.name> --- drivers/mtd/mtdchar.c |... 23 Apr 2010 21:14