* suspect code in cyasblkdev_block conversion to bdops->check_events()
@ 2011-03-25 10:48 Milton Miller
2011-03-25 14:38 ` [PATCH] staging: Fix bdops->check_events() misconversion in cyasblkdev_block.c Tejun Heo
0 siblings, 1 reply; 2+ messages in thread
From: Milton Miller @ 2011-03-25 10:48 UTC (permalink / raw)
To: Tejun Heo
Cc: Greg Kroah-Hartman, Jens Axboe, Kay Sievers, David Cross, linux-kernel
> commit cafb0bfca1a73efd6d8a4a6a6a716e6134b96c24
> Author: Tejun Heo <tj@kernel.org>
> Commit: Tejun Heo <tj@kernel.org>
>
> staging: Convert to bdops->check_events()
>
> Convert two staging drivers - blkvsc_drv and cyasblkdev_block - from
> ->media_changed() to ->check_events(). The former always indicated
> media changed while the latter always indicated media not changed.
> Not sure what the drivers are trying to achieve but keep the original
> behavior.
>
> Signed-off-by: Tejun Heo <tj@kernel.org>
> Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
> Cc: Jens Axboe <axboe@kernel.dk>
> Cc: Kay Sievers <kay.sievers@vrfy.org>
>
..
> diff --git a/drivers/staging/westbridge/astoria/block/cyasblkdev_block.c b/drivers/staging/westbridge/astoria/block/cyasblkdev_block.c
> index e1851f0..842cd92 100644
..
> @@ -1090,6 +1090,7 @@ static int cyasblkdev_add_disks(int bus_num,
> bd->user_disk_0->first_minor = devidx << CYASBLKDEV_SHIFT;
> bd->user_disk_0->minors = 8;
> bd->user_disk_0->fops = &cyasblkdev_bdops;
> + bd->user_disk_0->events = DISK_EVENT_MEDIA_CHANGE;
> bd->user_disk_0->private_data = bd;
> bd->user_disk_0->queue = bd->queue.queue;
> bd->dbgprn_flags = DBGPRN_RD_RQ;
> @@ -1190,6 +1191,7 @@ static int cyasblkdev_add_disks(int bus_num,
> bd->user_disk_1->first_minor = (devidx + 1) << CYASBLKDEV_SHIFT;
> bd->user_disk_1->minors = 8;
> bd->user_disk_1->fops = &cyasblkdev_bdops;
> + bd->user_disk_0->events = DISK_EVENT_MEDIA_CHANGE;
> bd->user_disk_1->private_data = bd;
Date: Fri, 25 Mar 2011 04:48:01 -0600
X-Originating-IP: 71.22.127.106
The 0 on the above line triggered my suspect code pattern detector.
> bd->user_disk_1->queue = bd->queue.queue;
> bd->dbgprn_flags = DBGPRN_RD_RQ;
> @@ -1278,6 +1280,7 @@ static int cyasblkdev_add_disks(int bus_num,
> (devidx + 2) << CYASBLKDEV_SHIFT;
> bd->system_disk->minors = 8;
> bd->system_disk->fops = &cyasblkdev_bdops;
> + bd->system_disk->events = DISK_EVENT_MEDIA_CHANGE;
> bd->system_disk->private_data = bd;
> bd->system_disk->queue = bd->queue.queue;
> /* don't search for vfat
milton
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH] staging: Fix bdops->check_events() misconversion in cyasblkdev_block.c
2011-03-25 10:48 suspect code in cyasblkdev_block conversion to bdops->check_events() Milton Miller
@ 2011-03-25 14:38 ` Tejun Heo
0 siblings, 0 replies; 2+ messages in thread
From: Tejun Heo @ 2011-03-25 14:38 UTC (permalink / raw)
To: Greg Kroah-Hartman, Milton Miller, Jens Axboe
Cc: Kay Sievers, David Cross, linux-kernel
Commit cafb0bfca1 (staging: Convert to bdops->check_events())
incorrectly set bd->user_disk_0->events while initializing
bd->user_disk_1. Fix it.
The problem was spotted by Milton's suspect code pattern detector.
Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Milton Miller <miltonm@bga.com>
---
Nice spotting Milton. Thank you.
drivers/staging/westbridge/astoria/block/cyasblkdev_block.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/westbridge/astoria/block/cyasblkdev_block.c b/drivers/staging/westbridge/astoria/block/cyasblkdev_block.c
index 842cd92..289729d 100644
--- a/drivers/staging/westbridge/astoria/block/cyasblkdev_block.c
+++ b/drivers/staging/westbridge/astoria/block/cyasblkdev_block.c
@@ -1191,7 +1191,7 @@ static int cyasblkdev_add_disks(int bus_num,
bd->user_disk_1->first_minor = (devidx + 1) << CYASBLKDEV_SHIFT;
bd->user_disk_1->minors = 8;
bd->user_disk_1->fops = &cyasblkdev_bdops;
- bd->user_disk_0->events = DISK_EVENT_MEDIA_CHANGE;
+ bd->user_disk_1->events = DISK_EVENT_MEDIA_CHANGE;
bd->user_disk_1->private_data = bd;
bd->user_disk_1->queue = bd->queue.queue;
bd->dbgprn_flags = DBGPRN_RD_RQ;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-03-25 14:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-25 10:48 suspect code in cyasblkdev_block conversion to bdops->check_events() Milton Miller
2011-03-25 14:38 ` [PATCH] staging: Fix bdops->check_events() misconversion in cyasblkdev_block.c Tejun Heo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome