From: Andi Kleen <ak@suse.de>
To: linux-kernel@vger.kernel.org
Subject: [PATCH] Make ide-scsi compile in 2.5
Date: Sun, 27 Jan 2002 02:46:31 +0100 [thread overview]
Message-ID: <20020127024631.A28936@wotan.suse.de> (raw)
ide-scsi doesn't compile currently in 2.5.x. This patch fixes it in a
rather hackish way by adding some kmap_atomic()s. It would be
probably better to kmap earlier in process context in the request
function instead, but I leave this to the people who know more
about IDE/block layer than me (but apparently not compile ide-scsi..)
I'm also not totally convinced that it is deadlock free here to use
KM_BOUNCE_READ here, it may be safer to add a new bounce type.
You have been warned.
I have only tested it without highmem and it works for me.
Hopefully there will be eventually a better fix, but for now it
allows to burn (and mount if you use /dev/scd* for ide) CDs under 2.5 again.
-Andi
Index: drivers/scsi/ide-scsi.c
===================================================================
RCS file: /cvs/linux/drivers/scsi/ide-scsi.c,v
retrieving revision 1.45
diff -u -u -r1.45 ide-scsi.c
--- drivers/scsi/ide-scsi.c 2002/01/16 20:58:39 1.45
+++ drivers/scsi/ide-scsi.c 2002/01/27 01:40:26
@@ -52,7 +52,7 @@
#include "sd.h"
#include <scsi/sg.h>
-#define IDESCSI_DEBUG_LOG 0
+/* #define IDESCSI_DEBUG_LOG 0 */
typedef struct idescsi_pc_s {
u8 c[12]; /* Actual packet bytes */
@@ -132,13 +132,20 @@
int count;
while (bcount) {
+ void *addr;
if (pc->sg - (struct scatterlist *) pc->scsi_cmd->request_buffer > pc->scsi_cmd->use_sg) {
printk (KERN_ERR "ide-scsi: scatter gather table too small, discarding data\n");
idescsi_discard_data (drive, bcount);
return;
}
count = IDE_MIN (pc->sg->length - pc->b_count, bcount);
- atapi_input_bytes (drive, pc->sg->address + pc->b_count, count);
+ /* This kmap should be moved earlier into process context
+ and use kmap instead of kmap_atomic. Not now.
+ It also should use an own KMAP_ type to avoid deadlocks,
+ butter better do the first should. b_count is hopefully <= PAGE_SIZE */
+ addr = kmap_atomic(pc->sg->page, KM_BOUNCE_READ);
+ atapi_input_bytes (drive, addr + pc->sg->offset + pc->b_count, count);
+ kunmap_atomic(addr, KM_BOUNCE_READ);
bcount -= count; pc->b_count += count;
if (pc->b_count == pc->sg->length) {
pc->sg++;
@@ -152,13 +159,16 @@
int count;
while (bcount) {
+ void *addr;
if (pc->sg - (struct scatterlist *) pc->scsi_cmd->request_buffer > pc->scsi_cmd->use_sg) {
printk (KERN_ERR "ide-scsi: scatter gather table too small, padding with zeros\n");
idescsi_output_zeros (drive, bcount);
return;
}
count = IDE_MIN (pc->sg->length - pc->b_count, bcount);
- atapi_output_bytes (drive, pc->sg->address + pc->b_count, count);
+ addr = kmap_atomic(pc->sg->page, KM_BOUNCE_READ);
+ atapi_output_bytes (drive, addr + pc->sg->offset + pc->b_count, count);
+ kunmap_atomic(addr, KM_BOUNCE_READ);
bcount -= count; pc->b_count += count;
if (pc->b_count == pc->sg->length) {
pc->sg++;
@@ -753,22 +763,21 @@
struct page *page = sg->page;
int offset = sg->offset;
+#if 0
if (!page) {
BUG_ON(!sg->address);
page = virt_to_page(sg->address);
offset = (unsigned long) sg->address & ~PAGE_MASK;
}
+#endif
bh->bi_io_vec[0].bv_page = page;
bh->bi_io_vec[0].bv_len = sg->length;
bh->bi_io_vec[0].bv_offset = offset;
bh->bi_size = sg->length;
bh = bh->bi_next;
- /*
- * just until scsi_merge is fixed up...
- */
- BUG_ON(PageHighMem(page));
- sg->address = page_address(page) + offset;
+ sg->page = page;
+ sg->offset = offset;
sg++;
}
} else {
next reply other threads:[~2002-01-27 1:46 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-01-27 1:46 Andi Kleen [this message]
2002-01-27 10:49 ` Jens Axboe
2002-01-27 15:51 ` Skip Ford
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=20020127024631.A28936@wotan.suse.de \
--to=ak@suse.de \
--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 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®