diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-04-09 14:50:29 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-04-09 14:50:29 -0400 |
| commit | 2f4084209adc77f9a1c9f38db3019a509e167882 (patch) | |
| tree | 775657114c885505ecc46605e29ea1470e986f76 /drivers/block/paride | |
| parent | 2f10ffcfb28beb35137d9e86992c771b4a6c5f2a (diff) | |
| parent | 3440c49f5c5ecb4f29b0544aa87da71888404f8f (diff) | |
Merge branch 'for-linus' of git://git.kernel.dk/linux-2.6-block
* 'for-linus' of git://git.kernel.dk/linux-2.6-block: (34 commits)
cfq-iosched: Fix the incorrect timeslice accounting with forced_dispatch
loop: Update mtime when writing using aops
block: expose the statistics in blkio.time and blkio.sectors for the root cgroup
backing-dev: Handle class_create() failure
Block: Fix block/elevator.c elevator_get() off-by-one error
drbd: lc_element_by_index() never returns NULL
cciss: unlock on error path
cfq-iosched: Do not merge queues of BE and IDLE classes
cfq-iosched: Add additional blktrace log messages in CFQ for easier debugging
i2o: Remove the dangerous kobj_to_i2o_device macro
block: remove 16 bytes of padding from struct request on 64bits
cfq-iosched: fix a kbuild regression
block: make CONFIG_BLK_CGROUP visible
Remove GENHD_FL_DRIVERFS
block: Export max number of segments and max segment size in sysfs
block: Finalize conversion of block limits functions
block: Fix overrun in lcm() and move it to lib
vfs: improve writeback_inodes_wb()
paride: fix off-by-one test
drbd: fix al-to-on-disk-bitmap for 4k logical_block_size
...
Diffstat (limited to 'drivers/block/paride')
| -rw-r--r-- | drivers/block/paride/pcd.c | 4 | ||||
| -rw-r--r-- | drivers/block/paride/pf.c | 4 | ||||
| -rw-r--r-- | drivers/block/paride/pt.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/drivers/block/paride/pcd.c b/drivers/block/paride/pcd.c index 8866ca369d5..71acf4e5335 100644 --- a/drivers/block/paride/pcd.c +++ b/drivers/block/paride/pcd.c | |||
| @@ -341,11 +341,11 @@ static int pcd_wait(struct pcd_unit *cd, int go, int stop, char *fun, char *msg) | |||
| 341 | && (j++ < PCD_SPIN)) | 341 | && (j++ < PCD_SPIN)) |
| 342 | udelay(PCD_DELAY); | 342 | udelay(PCD_DELAY); |
| 343 | 343 | ||
| 344 | if ((r & (IDE_ERR & stop)) || (j >= PCD_SPIN)) { | 344 | if ((r & (IDE_ERR & stop)) || (j > PCD_SPIN)) { |
| 345 | s = read_reg(cd, 7); | 345 | s = read_reg(cd, 7); |
| 346 | e = read_reg(cd, 1); | 346 | e = read_reg(cd, 1); |
| 347 | p = read_reg(cd, 2); | 347 | p = read_reg(cd, 2); |
| 348 | if (j >= PCD_SPIN) | 348 | if (j > PCD_SPIN) |
| 349 | e |= 0x100; | 349 | e |= 0x100; |
| 350 | if (fun) | 350 | if (fun) |
| 351 | printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x" | 351 | printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x" |
diff --git a/drivers/block/paride/pf.c b/drivers/block/paride/pf.c index ddb4f9abd48..c059aab3006 100644 --- a/drivers/block/paride/pf.c +++ b/drivers/block/paride/pf.c | |||
| @@ -391,11 +391,11 @@ static int pf_wait(struct pf_unit *pf, int go, int stop, char *fun, char *msg) | |||
| 391 | && (j++ < PF_SPIN)) | 391 | && (j++ < PF_SPIN)) |
| 392 | udelay(PF_SPIN_DEL); | 392 | udelay(PF_SPIN_DEL); |
| 393 | 393 | ||
| 394 | if ((r & (STAT_ERR & stop)) || (j >= PF_SPIN)) { | 394 | if ((r & (STAT_ERR & stop)) || (j > PF_SPIN)) { |
| 395 | s = read_reg(pf, 7); | 395 | s = read_reg(pf, 7); |
| 396 | e = read_reg(pf, 1); | 396 | e = read_reg(pf, 1); |
| 397 | p = read_reg(pf, 2); | 397 | p = read_reg(pf, 2); |
| 398 | if (j >= PF_SPIN) | 398 | if (j > PF_SPIN) |
| 399 | e |= 0x100; | 399 | e |= 0x100; |
| 400 | if (fun) | 400 | if (fun) |
| 401 | printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x" | 401 | printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x" |
diff --git a/drivers/block/paride/pt.c b/drivers/block/paride/pt.c index 1e4006e18f0..bc5825fdeaa 100644 --- a/drivers/block/paride/pt.c +++ b/drivers/block/paride/pt.c | |||
| @@ -274,11 +274,11 @@ static int pt_wait(struct pt_unit *tape, int go, int stop, char *fun, char *msg) | |||
| 274 | && (j++ < PT_SPIN)) | 274 | && (j++ < PT_SPIN)) |
| 275 | udelay(PT_SPIN_DEL); | 275 | udelay(PT_SPIN_DEL); |
| 276 | 276 | ||
| 277 | if ((r & (STAT_ERR & stop)) || (j >= PT_SPIN)) { | 277 | if ((r & (STAT_ERR & stop)) || (j > PT_SPIN)) { |
| 278 | s = read_reg(pi, 7); | 278 | s = read_reg(pi, 7); |
| 279 | e = read_reg(pi, 1); | 279 | e = read_reg(pi, 1); |
| 280 | p = read_reg(pi, 2); | 280 | p = read_reg(pi, 2); |
| 281 | if (j >= PT_SPIN) | 281 | if (j > PT_SPIN) |
| 282 | e |= 0x100; | 282 | e |= 0x100; |
| 283 | if (fun) | 283 | if (fun) |
| 284 | printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x" | 284 | printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x" |
