search for: request_s

Displaying 2 results from an estimated 2 matches for "request_s".

Did you mean: requests
2007 Oct 22
0
[PATCH] - AbstractRequest#parameters destructively overwrites request_ and query_parameters
Hi guys, I''m looking for some +1''s for a bug fix patch I submitted:http:// dev.rubyonrails.org/ticket/9949 AbstractRequest#parameters is overwriting request_parameters when called, so I drew up a patch and test case to fix it. Any people willing to try it out would be much appreciated. Thank, Scott Fleckenstein --~--~---------~--~----~------------~-------~--~----~ You
2007 Jan 02
0
[PATCH 1/4] add scsi-target and IO_CMD_EPOLL_WAIT patches
...drivers/cdrom/cdrom.c ++++ b/drivers/cdrom/cdrom.c +@@ -2133,16 +2133,14 @@ static int cdrom_read_cdda_bpc(struct cd + rq->timeout = 60 * HZ; + bio = rq->bio; + +- if (rq->bio) +- blk_queue_bounce(q, &rq->bio); +- + if (blk_execute_rq(q, cdi->disk, rq, 0)) { + struct request_sense *s = rq->sense; + ret = -EIO; + cdi->last_sense = s->sense_key; + } + +- if (blk_rq_unmap_user(bio, len)) ++ rq->bio = bio; ++ if (blk_rq_unmap_user(rq)) + ret = -EFAULT; + + if (ret) +diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig +index 3c606cf..c9a573b...