summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'openvz-sources/022.072-r1/5224_diff-cciss-timeout-20060228.patch')
-rw-r--r--openvz-sources/022.072-r1/5224_diff-cciss-timeout-20060228.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/openvz-sources/022.072-r1/5224_diff-cciss-timeout-20060228.patch b/openvz-sources/022.072-r1/5224_diff-cciss-timeout-20060228.patch
deleted file mode 100644
index 75f1379..0000000
--- a/openvz-sources/022.072-r1/5224_diff-cciss-timeout-20060228.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- ./drivers/block/cciss.c.8 2006-03-01 12:59:45.000000000 +0300
-+++ ./drivers/block/cciss.c 2006-03-01 17:36:20.000000000 +0300
-@@ -1765,8 +1765,7 @@ static unsigned long pollcomplete(int ct
- for (i = 20 * HZ; i > 0; i--) {
- done = hba[ctlr]->access.command_completed(hba[ctlr]);
- if (done == FIFO_EMPTY) {
-- set_current_state(TASK_UNINTERRUPTIBLE);
-- schedule_timeout(1);
-+ msleep(1);
- } else
- return (done);
- }
-@@ -2500,8 +2499,7 @@ static int cciss_pci_init(ctlr_info_t *c
- scratchpad = readl(c->vaddr + SA5_SCRATCHPAD_OFFSET);
- if (scratchpad == CCISS_FIRMWARE_READY)
- break;
-- set_current_state(TASK_INTERRUPTIBLE);
-- schedule_timeout(HZ / 10); /* wait 100ms */
-+ msleep(100); /* wait 100ms */
- }
- if (scratchpad != CCISS_FIRMWARE_READY) {
- printk(KERN_WARNING "cciss: Board not ready. Timed out.\n");
-@@ -2586,8 +2584,7 @@ static int cciss_pci_init(ctlr_info_t *c
- if (!(readl(c->vaddr + SA5_DOORBELL) & CFGTBL_ChangeReq))
- break;
- /* delay and try again */
-- set_current_state(TASK_INTERRUPTIBLE);
-- schedule_timeout(10);
-+ msleep(10);
- }
-
- #ifdef CCISS_DEBUG