From: Jan Dittmer <jdittmer@ppp0.net>
To: James Nelson <james4765@verizon.net>
Cc: kernel-janitors@lists.osdl.org, linux-kernel@vger.kernel.org,
akpm@osdl.org
Subject: [KJ] Re: [PATCH] lcd: replace cli()/sti() with
Date: Sat, 18 Dec 2004 00:58:56 +0000 [thread overview]
Message-ID: <41C380D0.9020001@ppp0.net> (raw)
In-Reply-To: <20041217235927.17998.75228.61750@localhost.localdomain>
James Nelson wrote:
> Remove the cli()/sti() calls in drivers/char/lcd.c
Why is this cli() there in the first place? ioctl is already
called under lock_kernel.
> Signed-off-by: James Nelson <james4765@gmail.com>
>
> diff -urN --exclude='*~' linux-2.6.10-rc3-mm1-original/drivers/char/lcd.c linux-2.6.10-rc3-mm1/drivers/char/lcd.c
> --- linux-2.6.10-rc3-mm1-original/drivers/char/lcd.c 2004-12-03 16:53:42.000000000 -0500
> +++ linux-2.6.10-rc3-mm1/drivers/char/lcd.c 2004-12-17 18:57:10.760197439 -0500
> @@ -33,6 +33,8 @@
>
> #include "lcd.h"
>
> +static spinlock_t lcd_lock = SPIN_LOCK_UNLOCKED;
> +
> static int lcd_ioctl(struct inode *inode, struct file *file,
> unsigned int cmd, unsigned long arg);
>
> @@ -464,14 +466,13 @@
> }
>
> printk("Churning and Burning -");
> - save_flags(flags);
> for (i = 0; i < FLASH_SIZE; i = i + 128) {
>
> if (copy_from_user
> (rom, display.RomImage + i, 128))
> return -EFAULT;
The driver is leaking memory, rom is not freed in this case.
Jan
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors
WARNING: multiple messages have this Message-ID (diff)
From: Jan Dittmer <jdittmer@ppp0.net>
To: James Nelson <james4765@verizon.net>
Cc: kernel-janitors@lists.osdl.org, linux-kernel@vger.kernel.org,
akpm@osdl.org
Subject: Re: [PATCH] lcd: replace cli()/sti() with spin_lock_irqsave()/spin_unlock_irqrestore()
Date: Sat, 18 Dec 2004 01:58:56 +0100 [thread overview]
Message-ID: <41C380D0.9020001@ppp0.net> (raw)
In-Reply-To: <20041217235927.17998.75228.61750@localhost.localdomain>
James Nelson wrote:
> Remove the cli()/sti() calls in drivers/char/lcd.c
Why is this cli() there in the first place? ioctl is already
called under lock_kernel.
> Signed-off-by: James Nelson <james4765@gmail.com>
>
> diff -urN --exclude='*~' linux-2.6.10-rc3-mm1-original/drivers/char/lcd.c linux-2.6.10-rc3-mm1/drivers/char/lcd.c
> --- linux-2.6.10-rc3-mm1-original/drivers/char/lcd.c 2004-12-03 16:53:42.000000000 -0500
> +++ linux-2.6.10-rc3-mm1/drivers/char/lcd.c 2004-12-17 18:57:10.760197439 -0500
> @@ -33,6 +33,8 @@
>
> #include "lcd.h"
>
> +static spinlock_t lcd_lock = SPIN_LOCK_UNLOCKED;
> +
> static int lcd_ioctl(struct inode *inode, struct file *file,
> unsigned int cmd, unsigned long arg);
>
> @@ -464,14 +466,13 @@
> }
>
> printk("Churning and Burning -");
> - save_flags(flags);
> for (i = 0; i < FLASH_SIZE; i = i + 128) {
>
> if (copy_from_user
> (rom, display.RomImage + i, 128))
> return -EFAULT;
The driver is leaking memory, rom is not freed in this case.
Jan
next prev parent reply other threads:[~2004-12-18 0:58 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-12-17 23:59 [KJ] [PATCH] lcd: replace cli()/sti() with James Nelson
2004-12-17 23:59 ` [PATCH] lcd: replace cli()/sti() with spin_lock_irqsave()/spin_unlock_irqrestore() James Nelson
2004-12-18 0:58 ` Jan Dittmer [this message]
2004-12-18 0:58 ` Jan Dittmer
2004-12-18 3:02 ` [KJ] Re: [PATCH] lcd: replace cli()/sti() with Jim Nelson
2004-12-18 3:02 ` [PATCH] lcd: replace cli()/sti() with spin_lock_irqsave()/spin_unlock_irqrestore() Jim Nelson
2004-12-18 4:40 ` [KJ] Re: [PATCH] lcd: replace cli()/sti() with Matthew Wilcox
2004-12-18 4:40 ` [KJ] Re: [PATCH] lcd: replace cli()/sti() with spin_lock_irqsave()/spin_unlock_irqrestore() Matthew Wilcox
2004-12-18 8:54 ` [KJ] Re: [PATCH] lcd: replace cli()/sti() with Jan Dittmer
2004-12-18 14:47 ` Matthew Wilcox
2004-12-18 4:15 ` [KJ] " Matthew Wilcox
2004-12-18 4:15 ` [KJ] [PATCH] lcd: replace cli()/sti() with spin_lock_irqsave()/spin_unlock_irqrestore() Matthew Wilcox
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=41C380D0.9020001@ppp0.net \
--to=jdittmer@ppp0.net \
--cc=akpm@osdl.org \
--cc=james4765@verizon.net \
--cc=kernel-janitors@lists.osdl.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.