From: "Jörn Engel" <joern@logfs.org>
To: Adrian McMenamin <adrian@newgolddream.dyndns.info>
Cc: Paul Mundt <lethal@linux-sh.org>, Greg KH <greg@kroah.com>,
dwmw2 <dwmw2@infradead.org>, LKML <linux-kernel@vger.kernel.org>,
MTD <linux-mtd@lists.infradead.org>,
linux-sh <linux-sh@vger.kernel.org>,
Andrew Morton <akpm@osdl.org>
Subject: Re: [PATCH] 3/3 maple: update bus driver to support Dreamcast VMU
Date: Mon, 24 Mar 2008 18:38:56 +0100 [thread overview]
Message-ID: <20080324173856.GI2899@logfs.org> (raw)
In-Reply-To: <20080324170707.GH2899@logfs.org>
[-- Attachment #1: Type: text/plain, Size: 1194 bytes --]
On Mon, 24 March 2008 18:07:07 +0100, Jörn Engel wrote:
>
> The second rearranges the list locking a bit. Previously it was
> possible to touch maple_waitq or maple_sentq without holding the lock.
> With my limited understanding of the driver, the second patch may
> already be enough to prevent the type of corruption you've been seeing.
Limited understanding indeed. The problem in the mtd driver is that it
has no concept of ownership. For example maple_vmu_read_block() does
the following:
mdev->mq->sendbuf = sendbuf;
...
maple_add_packet(mdev->mq);
It accesses some field in mdev->mq, then sends the structure off to
maple_add_packet(). From this point on, mdev->mq belongs to the bus
driver - until it calls the callback, vmu_blockread() in this case.
But a second thread can call into maple_vmu_read_block() again and
access mdev->mq while it rightfully belongs to the bus driver. Bad
things will happen.
So these two patches try to close the race windows. Please note the
FIXME in the write patch - I didn't do all the work. Real life calls
for attention, so these will be the last patches for a while.
Jörn
--
The only good bug is a dead bug.
-- Starship Troopers
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: cu8.patch --]
[-- Type: text/x-diff; charset=utf-8, Size: 3914 bytes --]
Add a mutex to protect any accesses to maple queue.
Signed-off-by: Jörn Engel <joern@logfs.org>
---
drivers/mtd/maps/vmu_flash.c | 55 ++++++++++++++++++++-----------------------
1 file changed, 26 insertions(+), 29 deletions(-)
--- maple/drivers/mtd/maps/vmu_flash.c~cu8 2008-03-24 17:49:59.000000000 +0100
+++ maple/drivers/mtd/maps/vmu_flash.c 2008-03-24 18:26:56.000000000 +0100
@@ -22,6 +22,8 @@
static DECLARE_WAIT_QUEUE_HEAD(vmu_read);
static int block_read;
+static DEFINE_MUTEX(dev_mutex);
+
struct vmu_cache {
char *buffer; /* Cache */
unsigned int block; /* Which block was cached */
@@ -133,26 +135,21 @@ static int maple_vmu_read_block(unsigned
struct mdev_part *mpart;
struct maple_device *mdev;
int partition, error = 0;
- __be32 *sendbuf;
+ __be32 sendbuf[2];
mpart = mtd->priv;
mdev = mpart->mdev;
partition = mpart->partition;
card = mdev->private_data;
+ mutex_lock(&dev_mutex);
mdev->mq->command = MAPLE_COMMAND_BREAD;
mdev->mq->length = 2;
- sendbuf = kzalloc(mdev->mq->length * 4, GFP_KERNEL);
- if (!sendbuf) {
- error = -ENOMEM;
- goto fail_nosendbuf;
- }
-
sendbuf[0] = cpu_to_be32(MAPLE_FUNC_MEMCARD);
sendbuf[1] = cpu_to_be32(partition << 24 | num);
- mdev->mq->sendbuf = sendbuf;
+ mdev->mq->sendbuf = &sendbuf;
block_read = 0;
card->blockread = kmalloc(card->blocklen, GFP_KERNEL);
@@ -171,16 +168,12 @@ static int maple_vmu_read_block(unsigned
}
memcpy(buf, card->blockread, card->blocklen);
- kfree(card->blockread);
- kfree(sendbuf);
-
- return 0;
+ error = 0;
fail_blockread:
kfree(card->blockread);
fail_bralloc:
- kfree(sendbuf);
-fail_nosendbuf:
+ mutex_unlock(&dev_mutex);
return error;
}
@@ -191,7 +184,7 @@ static int maple_vmu_write_block(unsigne
struct memcard *card;
struct mdev_part *mpart;
struct maple_device *mdev;
- int partition, error, x, phaselen;
+ int partition, x, phaselen;
__be32 *sendbuf;
mpart = mtd->priv;
@@ -199,16 +192,18 @@ static int maple_vmu_write_block(unsigne
partition = mpart->partition;
card = mdev->private_data;
- phaselen = card->blocklen/card->writecnt;
- mdev->mq->command = MAPLE_COMMAND_BWRITE;
- mdev->mq->length = phaselen / 4 + 2;
-
sendbuf = kmalloc(mdev->mq->length * 4, GFP_KERNEL);
if (!sendbuf) {
- error = -ENOMEM;
- goto fail_nosendbuf;
+ printk("Maple: VMU (%d, %d): write failed\n", mdev->port,
+ mdev->unit);
+ return -ENOMEM;
}
+ phaselen = card->blocklen/card->writecnt;
+ mutex_lock(&dev_mutex);
+ mdev->mq->command = MAPLE_COMMAND_BWRITE;
+ mdev->mq->length = phaselen / 4 + 2;
+
sendbuf[0] = cpu_to_be32(MAPLE_FUNC_MEMCARD);
for (x = 0; x < card->writecnt; x++) {
@@ -217,14 +212,14 @@ static int maple_vmu_write_block(unsigne
mdev->mq->sendbuf = sendbuf;
maple_add_packet(mdev->mq);
}
+ /* FIXME: we have to wait for the write to finish before releasing
+ * the mutex. Requires another callback.
+ */
+ mutex_unlock(&dev_mutex);
kfree(sendbuf);
return card->blocklen;
-
-fail_nosendbuf:
- printk("Maple: VMU (%d, %d): write failed\n", mdev->port, mdev->unit);
- return error;
}
/* mtd function to simulate reading byte by byte */
@@ -593,15 +588,16 @@ static int vmu_connect(struct maple_devi
mdev->private_data = card;
- /* Now query the device to find out about blocks */
- mdev->mq->command = MAPLE_COMMAND_GETMINFO;
- mdev->mq->length = 2;
-
sendbuf = kzalloc(mdev->mq->length * 4, GFP_KERNEL);
if (!sendbuf) {
error = -ENOMEM;
goto fail_nosendbuf;
}
+ /* Now query the device to find out about blocks */
+ mutex_lock(&dev_mutex);
+ mdev->mq->command = MAPLE_COMMAND_GETMINFO;
+ mdev->mq->length = 2;
+
card->sendbuf = sendbuf;
mdev->mq->sendbuf = sendbuf;
@@ -611,6 +607,7 @@ static int vmu_connect(struct maple_devi
maple_getcond_callback(mdev, vmu_queryblocks, 0,
MAPLE_FUNC_MEMCARD);
+ mutex_unlock(&dev_mutex);
return 0;
fail_nosendbuf:
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: cu9.patch --]
[-- Type: text/x-diff; charset=utf-8, Size: 1902 bytes --]
Replace the waitqueue with completion logic.
Signed-off-by: Jörn Engel <joern@logfs.org>
---
drivers/mtd/maps/vmu_flash.c | 15 +++------------
1 file changed, 3 insertions(+), 12 deletions(-)
--- maple/drivers/mtd/maps/vmu_flash.c~cu9 2008-03-24 18:26:56.000000000 +0100
+++ maple/drivers/mtd/maps/vmu_flash.c 2008-03-24 18:36:12.000000000 +0100
@@ -19,8 +19,7 @@
#include <linux/mtd/map.h>
#include <asm/mach/maple.h>
-static DECLARE_WAIT_QUEUE_HEAD(vmu_read);
-static int block_read;
+static DECLARE_COMPLETION(read_complete);
static DEFINE_MUTEX(dev_mutex);
@@ -108,7 +107,6 @@ static void vmu_blockread(struct mapleq
card = mdev->private_data;
/* copy the read in data */
memcpy(card->blockread, mq->recvbuf + 12, card->blocklen);
- block_read = 1;
/* fill the cache for this block */
mtd = card->mtd;
mpart = mtd->priv;
@@ -124,7 +122,7 @@ static void vmu_blockread(struct mapleq
pcache->jiffies_atc = jiffies;
pcache->valid = 1;
wakeup:
- wake_up_interruptible(&vmu_read);
+ complete(&read_complete);
}
/* Interface with maple bus to read bytes */
@@ -150,7 +148,6 @@ static int maple_vmu_read_block(unsigned
sendbuf[1] = cpu_to_be32(partition << 24 | num);
mdev->mq->sendbuf = &sendbuf;
- block_read = 0;
card->blockread = kmalloc(card->blocklen, GFP_KERNEL);
if (!card->blockread) {
@@ -160,17 +157,11 @@ static int maple_vmu_read_block(unsigned
maple_getcond_callback(mdev, vmu_blockread, 0, MAPLE_FUNC_MEMCARD);
maple_add_packet(mdev->mq);
- wait_event_interruptible_timeout(vmu_read, block_read, HZ * 4);
- if (block_read == 0) {
- printk(KERN_INFO "Maple: VMU read failed on block 0x%X\n", num);
- error = -EIO;
- goto fail_blockread;
- }
+ wait_for_completion(&read_complete);
memcpy(buf, card->blockread, card->blocklen);
error = 0;
-fail_blockread:
kfree(card->blockread);
fail_bralloc:
mutex_unlock(&dev_mutex);
next prev parent reply other threads:[~2008-03-24 17:39 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-22 17:43 [PATCH] 0/3 - Add support for VMU flash memory and update maple bus driver on the SEGA Dreamcast Adrian McMenamin
2008-03-22 17:56 ` [PATCH] 1/3 mtd: add Kbuild support and makefile support for Dreamcast VMU Adrian McMenamin
2008-03-24 3:09 ` Paul Mundt
2008-03-22 18:03 ` [PATCH] 2/3 mtd: add support for flash on the SEGA Dreamcast Visual Memory Unit Adrian McMenamin
2008-03-22 18:32 ` Jörn Engel
2008-03-22 18:39 ` Adrian McMenamin
2008-03-22 18:56 ` Jörn Engel
2008-03-24 2:08 ` Paul Mundt
2008-03-24 11:21 ` Jörn Engel
2008-03-24 12:06 ` Adrian McMenamin
2008-03-24 13:21 ` Jörn Engel
2008-03-24 13:58 ` Adrian McMenamin
2008-03-24 14:10 ` Jörn Engel
2008-03-24 14:43 ` Adrian McMenamin
2008-03-24 14:46 ` Paul Mundt
2008-03-24 14:54 ` Jörn Engel
2008-03-24 18:45 ` Andrew Morton
2008-03-24 23:11 ` Adrian McMenamin
2008-03-22 18:16 ` [PATCH] 3/3 maple: update bus driver to support Dreamcast VMU Adrian McMenamin
2008-03-24 3:33 ` Paul Mundt
2008-03-24 14:46 ` Jörn Engel
2008-03-24 15:06 ` Adrian McMenamin
2008-03-24 15:29 ` Jörn Engel
2008-03-24 15:51 ` Adrian McMenamin
2008-03-24 16:04 ` Jörn Engel
2008-03-24 17:07 ` Jörn Engel
2008-03-24 17:18 ` Adrian McMenamin
2008-03-24 17:38 ` Jörn Engel [this message]
2008-03-24 17:55 ` Adrian McMenamin
2008-03-24 19:54 ` Jörn Engel
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=20080324173856.GI2899@logfs.org \
--to=joern@logfs.org \
--cc=adrian@newgolddream.dyndns.info \
--cc=akpm@osdl.org \
--cc=dwmw2@infradead.org \
--cc=greg@kroah.com \
--cc=lethal@linux-sh.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=linux-sh@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox