* [RFC] possible fix for broken floppy driver since 2.5.13
@ 2002-05-20 17:01 Mikael Pettersson
2002-05-21 12:24 ` Christoph Hellwig
0 siblings, 1 reply; 5+ messages in thread
From: Mikael Pettersson @ 2002-05-20 17:01 UTC (permalink / raw)
To: viro; +Cc: linux-kernel
Since 2.5.13 I've been unable to use drivers/block/floppy.c.
There were two symptoms: /dev/fd0 was read-only until after
the first read, and writes wrote currupt data to the media.
The patch below against 2.5.16 fixes these problems for me:
- The read-only problem was caused by a getblk() call in
floppy_revalidate() which had been commented out (2.5.13
did away with getblk() altogether.) This call is necessary,
so the patch reintroduces a private getblk() in floppy.c.
- The data corruption on writes was caused by new code in
fs/block_dev.c:do_open() which changed the block size after
the call to bdev->bd_op->open().
Disabling this change to bdev->bd_block_size fixed the
data corruption. I don't know what this code was trying to do,
but my system works fine without it.
I did some tracing of the "struct request*"'s delivered to
the floppy driver, and with vanilla 2.5.16 the parameters
(all the '*sectors*' fields) looked very very different from
what 2.5.12 passed to the driver.
Al: You did the block dev changes for 2.5.13 -- care to comment?
/Mikael
diff -ruN linux-2.5.16/drivers/block/floppy.c linux-2.5.16.fix-floppy/drivers/block/floppy.c
--- linux-2.5.16/drivers/block/floppy.c Fri May 10 01:50:08 2002
+++ linux-2.5.16.fix-floppy/drivers/block/floppy.c Mon May 20 17:36:20 2002
@@ -3852,6 +3852,25 @@
return 0;
}
+static struct buffer_head *floppy_getblk0(kdev_t dev)
+{
+ struct block_device *bdev;
+ struct buffer_head *bh;
+ int size;
+
+ bdev = bdget(kdev_t_to_nr(dev));
+ if (!bdev) {
+ printk("No block device for %s\n", __bdevname(dev));
+ BUG();
+ }
+ size = bdev->bd_block_size;
+ if (!size)
+ size = 1024;
+ bh = __getblk(bdev, 0, size);
+ atomic_dec(&bdev->bd_count);
+ return bh;
+}
+
/* revalidate the floppy disk, i.e. trigger format autodetection by reading
* the bootblock (block 0). "Autodetection" is also needed to check whether
* there is a disk in the drive at all... Thus we also do it for fixed
@@ -3859,7 +3878,6 @@
static int floppy_revalidate(kdev_t dev)
{
#define NO_GEOM (!current_type[drive] && !TYPE(dev))
- struct buffer_head * bh;
int drive=DRIVE(dev);
int cf;
@@ -3886,29 +3904,18 @@
if (cf)
UDRS->generation++;
if (NO_GEOM){
-#if 0
- /*
- * What the devil is going on here? We are not guaranteed to do
- * any IO and ENXIO case is nothing but ENOMEM in disguise - it
- * happens if and only if buffer cache is out of memory. WTF?
- */
/* auto-sensing */
- int size = floppy_blocksizes[minor(dev)];
- if (!size)
- size = 1024;
- if (!(bh = getblk(dev,0,size))){
+ struct buffer_head *bh = floppy_getblk0(dev);
+ if (!bh) {
process_fd_request();
return -ENXIO;
}
- if (bh && !buffer_uptodate(bh))
+ if (!buffer_uptodate(bh))
ll_rw_block(READ, 1, &bh);
process_fd_request();
wait_on_buffer(bh);
brelse(bh);
return 0;
-#endif
- process_fd_request();
- return 0;
}
if (cf)
poll_drive(0, FD_RAW_NEED_DISK);
diff -ruN linux-2.5.16/fs/block_dev.c linux-2.5.16.fix-floppy/fs/block_dev.c
--- linux-2.5.16/fs/block_dev.c Mon May 6 13:05:05 2002
+++ linux-2.5.16.fix-floppy/fs/block_dev.c Mon May 20 17:27:55 2002
@@ -606,16 +606,7 @@
goto out2;
}
bdev->bd_inode->i_size = blkdev_size(dev);
- if (!bdev->bd_openers) {
- unsigned bsize = bdev_hardsect_size(bdev);
- while (bsize < PAGE_CACHE_SIZE) {
- if (bdev->bd_inode->i_size & bsize)
- break;
- bsize <<= 1;
- }
- bdev->bd_block_size = bsize;
- bdev->bd_inode->i_blkbits = blksize_bits(bsize);
- }
+ bdev->bd_inode->i_blkbits = blksize_bits(block_size(bdev));
bdev->bd_openers++;
unlock_kernel();
up(&bdev->bd_sem);
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [RFC] possible fix for broken floppy driver since 2.5.13
2002-05-20 17:01 [RFC] possible fix for broken floppy driver since 2.5.13 Mikael Pettersson
@ 2002-05-21 12:24 ` Christoph Hellwig
2002-05-21 12:35 ` Mikael Pettersson
0 siblings, 1 reply; 5+ messages in thread
From: Christoph Hellwig @ 2002-05-21 12:24 UTC (permalink / raw)
To: Mikael Pettersson; +Cc: viro, linux-kernel
On Mon, May 20, 2002 at 07:01:52PM +0200, Mikael Pettersson wrote:
> Since 2.5.13 I've been unable to use drivers/block/floppy.c.
> There were two symptoms: /dev/fd0 was read-only until after
> the first read, and writes wrote currupt data to the media.
>
> The patch below against 2.5.16 fixes these problems for me:
>
> - The read-only problem was caused by a getblk() call in
> floppy_revalidate() which had been commented out (2.5.13
> did away with getblk() altogether.) This call is necessary,
> so the patch reintroduces a private getblk() in floppy.c.
Please don't use getblk(), but go directly through the bio interface.
In 2.5 the buffer_heads are just a legacy interface for filesystems and
are not supposed to be used by lowlevel drivers.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [RFC] possible fix for broken floppy driver since 2.5.13
2002-05-21 12:24 ` Christoph Hellwig
@ 2002-05-21 12:35 ` Mikael Pettersson
2002-05-21 12:51 ` Christoph Hellwig
0 siblings, 1 reply; 5+ messages in thread
From: Mikael Pettersson @ 2002-05-21 12:35 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: viro, linux-kernel
Christoph Hellwig writes:
> On Mon, May 20, 2002 at 07:01:52PM +0200, Mikael Pettersson wrote:
> > Since 2.5.13 I've been unable to use drivers/block/floppy.c.
> > There were two symptoms: /dev/fd0 was read-only until after
> > the first read, and writes wrote currupt data to the media.
> >
> > The patch below against 2.5.16 fixes these problems for me:
> >
> > - The read-only problem was caused by a getblk() call in
> > floppy_revalidate() which had been commented out (2.5.13
> > did away with getblk() altogether.) This call is necessary,
> > so the patch reintroduces a private getblk() in floppy.c.
>
> Please don't use getblk(), but go directly through the bio interface.
> In 2.5 the buffer_heads are just a legacy interface for filesystems and
> are not supposed to be used by lowlevel drivers.
I haven't got a clue on how to program Linux' block I/O interfaces.
Show me how to do a modern equivalent of getblk(dev,0,1024) + waiting
for the operation to complete and I'll update the patch ASAP.
/Mikael
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [RFC] possible fix for broken floppy driver since 2.5.13
2002-05-21 12:35 ` Mikael Pettersson
@ 2002-05-21 12:51 ` Christoph Hellwig
2002-05-26 14:19 ` Pavel Machek
0 siblings, 1 reply; 5+ messages in thread
From: Christoph Hellwig @ 2002-05-21 12:51 UTC (permalink / raw)
To: Mikael Pettersson; +Cc: viro, linux-kernel
On Tue, May 21, 2002 at 02:35:24PM +0200, Mikael Pettersson wrote:
> I haven't got a clue on how to program Linux' block I/O interfaces.
> Show me how to do a modern equivalent of getblk(dev,0,1024) + waiting
> for the operation to complete and I'll update the patch ASAP.
I think something like the following should do it.
(WARNING: entirely untested)
static void io_done(struct bio *bio)
{
complete((struct completion *)bio->bi_private);
}
static int doio(struct block_device *bdev, size_t size)
{
struct completion comp;
struct page * page;
struct bio * bio;
bio = bio_alloc(GFP_KERNEL, 1);
if (!bio)
return -ENOMEM;
page = alloc_page(GFP_KERNEL);
if (!page) {
bio_put(bio);
return -ENOMEM;
}
bio->bi_sector = 0;
bio->bi_bdev = bdev;
bio->bi_io_vec[0].bv_page = page;
bio->bi_io_vec[0].bv_len = size;
bio->bi_io_vec[0].bv_offset = 0;
bio->bi_vcnt = 1;
bio->bi_idx = 0;
bio->bi_size = LOGPSIZE;
bio->bi_end_io = io_done;
bio->bi_private = &complete;
submit_bio(READ, bio);
run_task_queue(&tq_disk);
wait_for_completion(&comp);
bio_put(bio);
__free_page(page);
return 0;
}
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [RFC] possible fix for broken floppy driver since 2.5.13
2002-05-21 12:51 ` Christoph Hellwig
@ 2002-05-26 14:19 ` Pavel Machek
0 siblings, 0 replies; 5+ messages in thread
From: Pavel Machek @ 2002-05-26 14:19 UTC (permalink / raw)
To: Christoph Hellwig, Mikael Pettersson, viro, linux-kernel
Hi!
> > I haven't got a clue on how to program Linux' block I/O interfaces.
> > Show me how to do a modern equivalent of getblk(dev,0,1024) + waiting
> > for the operation to complete and I'll update the patch ASAP.
>
> I think something like the following should do it.
> (WARNING: entirely untested)
This looks pretty complicated... Maybe bread() is worth being put back
for 2.5?
Pavel
> static void io_done(struct bio *bio)
> {
> complete((struct completion *)bio->bi_private);
> }
>
> static int doio(struct block_device *bdev, size_t size)
> {
> struct completion comp;
> struct page * page;
> struct bio * bio;
>
> bio = bio_alloc(GFP_KERNEL, 1);
> if (!bio)
> return -ENOMEM;
>
> page = alloc_page(GFP_KERNEL);
> if (!page) {
> bio_put(bio);
> return -ENOMEM;
> }
>
> bio->bi_sector = 0;
> bio->bi_bdev = bdev;
> bio->bi_io_vec[0].bv_page = page;
> bio->bi_io_vec[0].bv_len = size;
> bio->bi_io_vec[0].bv_offset = 0;
>
> bio->bi_vcnt = 1;
> bio->bi_idx = 0;
> bio->bi_size = LOGPSIZE;
>
> bio->bi_end_io = io_done;
> bio->bi_private = &complete;
>
> submit_bio(READ, bio);
> run_task_queue(&tq_disk);
>
> wait_for_completion(&comp);
>
> bio_put(bio);
> __free_page(page);
>
> return 0;
> }
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
(about SSSCA) "I don't say this lightly. However, I really think that the U.S.
no longer is classifiable as a democracy, but rather as a plutocracy." --hpa
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-05-26 16:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-05-20 17:01 [RFC] possible fix for broken floppy driver since 2.5.13 Mikael Pettersson
2002-05-21 12:24 ` Christoph Hellwig
2002-05-21 12:35 ` Mikael Pettersson
2002-05-21 12:51 ` Christoph Hellwig
2002-05-26 14:19 ` Pavel Machek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®