* Re: [PATCH] viafb: Use sizeof struct rather than pointer
2009-11-21 19:02 ` Roel Kluin
@ 2009-11-21 18:53 ` Thiago Farina
2009-11-21 23:59 ` [Linux-fbdev-devel] " Florian Tobias Schandinat
1 sibling, 0 replies; 4+ messages in thread
From: Thiago Farina @ 2009-11-21 18:53 UTC (permalink / raw)
To: Roel Kluin
Cc: Joseph Chan, Scott Fang, linux-fbdev-devel, Andrew Morton, LKML
On Sat, Nov 21, 2009 at 5:02 PM, Roel Kluin <roel.kluin@gmail.com> wrote:
> The returned error should be negative
>
Hum? This belong to this patch?
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] viafb: Use sizeof struct rather than pointer
@ 2009-11-21 19:01 Roel Kluin
2009-11-21 19:02 ` Roel Kluin
0 siblings, 1 reply; 4+ messages in thread
From: Roel Kluin @ 2009-11-21 19:01 UTC (permalink / raw)
To: Joseph Chan, Scott Fang, linux-fbdev-devel, Andrew Morton, LKML
The sizeof the struct should be used rather than of the pointer
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
drivers/video/via/viafbdev.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Unless I am mistaken?
diff --git a/drivers/video/via/viafbdev.c b/drivers/video/via/viafbdev.c
index 56ec696..6cf4cb8 100644
--- a/drivers/video/via/viafbdev.c
+++ b/drivers/video/via/viafbdev.c
@@ -680,7 +680,7 @@ static int viafb_ioctl(struct fb_info *info, u_int cmd, u_long arg)
if (!viafb_gamma_table)
return -ENOMEM;
if (copy_from_user(viafb_gamma_table, argp,
- sizeof(viafb_gamma_table))) {
+ sizeof(*viafb_gamma_table))) {
kfree(viafb_gamma_table);
return -EFAULT;
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] viafb: Use sizeof struct rather than pointer
2009-11-21 19:01 [PATCH] viafb: Use sizeof struct rather than pointer Roel Kluin
@ 2009-11-21 19:02 ` Roel Kluin
2009-11-21 18:53 ` Thiago Farina
2009-11-21 23:59 ` [Linux-fbdev-devel] " Florian Tobias Schandinat
0 siblings, 2 replies; 4+ messages in thread
From: Roel Kluin @ 2009-11-21 19:02 UTC (permalink / raw)
To: Roel Kluin
Cc: Joseph Chan, Scott Fang, linux-fbdev-devel, Andrew Morton, LKML
The returned error should be negative
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
drivers/video/via/viafbdev.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
> Unless I am mistaken?
There was another in the same file:
diff --git a/drivers/video/via/viafbdev.c b/drivers/video/via/viafbdev.c
index 56ec696..7b181e7 100644
--- a/drivers/video/via/viafbdev.c
+++ b/drivers/video/via/viafbdev.c
@@ -680,7 +680,7 @@ static int viafb_ioctl(struct fb_info *info, u_int cmd, u_long arg)
if (!viafb_gamma_table)
return -ENOMEM;
if (copy_from_user(viafb_gamma_table, argp,
- sizeof(viafb_gamma_table))) {
+ sizeof(*viafb_gamma_table))) {
kfree(viafb_gamma_table);
return -EFAULT;
}
@@ -694,7 +694,7 @@ static int viafb_ioctl(struct fb_info *info, u_int cmd, u_long arg)
return -ENOMEM;
viafb_get_gamma_table(viafb_gamma_table);
if (copy_to_user(argp, viafb_gamma_table,
- sizeof(viafb_gamma_table))) {
+ sizeof(*viafb_gamma_table))) {
kfree(viafb_gamma_table);
return -EFAULT;
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Linux-fbdev-devel] [PATCH] viafb: Use sizeof struct rather than pointer
2009-11-21 19:02 ` Roel Kluin
2009-11-21 18:53 ` Thiago Farina
@ 2009-11-21 23:59 ` Florian Tobias Schandinat
1 sibling, 0 replies; 4+ messages in thread
From: Florian Tobias Schandinat @ 2009-11-21 23:59 UTC (permalink / raw)
To: Roel Kluin
Cc: Joseph Chan, Andrew Morton, Scott Fang, linux-fbdev-devel, LKML
Hi,
Roel Kluin schrieb:
> diff --git a/drivers/video/via/viafbdev.c b/drivers/video/via/viafbdev.c
> index 56ec696..7b181e7 100644
> --- a/drivers/video/via/viafbdev.c
> +++ b/drivers/video/via/viafbdev.c
> @@ -680,7 +680,7 @@ static int viafb_ioctl(struct fb_info *info, u_int cmd, u_long arg)
> if (!viafb_gamma_table)
> return -ENOMEM;
> if (copy_from_user(viafb_gamma_table, argp,
> - sizeof(viafb_gamma_table))) {
> + sizeof(*viafb_gamma_table))) {
> kfree(viafb_gamma_table);
> return -EFAULT;
> }
> @@ -694,7 +694,7 @@ static int viafb_ioctl(struct fb_info *info, u_int cmd, u_long arg)
> return -ENOMEM;
> viafb_get_gamma_table(viafb_gamma_table);
> if (copy_to_user(argp, viafb_gamma_table,
> - sizeof(viafb_gamma_table))) {
> + sizeof(*viafb_gamma_table))) {
> kfree(viafb_gamma_table);
> return -EFAULT;
> }
I'm sorry but I fear your fix isn't correct. The reason is a few lines
above:
u32 *viafb_gamma_table;
...
viafb_gamma_table = kmalloc(256 * sizeof(u32), GFP_KERNEL);
so probably the right solution would look like this:
copy_from_user(viafb_gamma_table, argp, 256 * sizeof(u32))
copy_to_user(argp, viafb_gamma_table, 256 * sizeof(u32))
However viafb has way too many private ioctls. I would be curious
whether there exists any program that uses any of them so that they
could be tested. As this ioctl didn't work very well I vote to remove it
at least temporarily.
Thanks for highlighting this problem,
Florian Tobias Schandinat
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-11-21 23:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-21 19:01 [PATCH] viafb: Use sizeof struct rather than pointer Roel Kluin
2009-11-21 19:02 ` Roel Kluin
2009-11-21 18:53 ` Thiago Farina
2009-11-21 23:59 ` [Linux-fbdev-devel] " Florian Tobias Schandinat
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).