diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-13 13:54:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-13 13:54:04 -0400 |
commit | 2be1f3a73dd02e38e181cf5abacb3d45a6a2d6b8 (patch) | |
tree | 8e54da82410c8e57ff53b3d69d5760ff28bc236f /drivers | |
parent | 1547ac893acbf87738ded0b470e2735fdfba6947 (diff) | |
parent | 2041f657aa4dc77afd63bbb34b34ed9476cf9ab9 (diff) |
Merge branch 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6
* 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6:
[S390] partitions: fix build error in ibm partition detection code
[S390] appldata: fix dev_get_stats 64 bit conversion
[S390] wire up prlimit64 and fanotify* syscalls
[S390] zcrypt: fix Kconfig dependencies
[S390] sys_personality: follow u_long to unsigned int conversion
[S390] dasd: fix format string types
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/crypto/Kconfig | 2 | ||||
-rw-r--r-- | drivers/s390/block/dasd.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig index fbf94cf496f0..ea0b3863ad0f 100644 --- a/drivers/crypto/Kconfig +++ b/drivers/crypto/Kconfig | |||
@@ -77,7 +77,7 @@ config ZCRYPT | |||
77 | 77 | ||
78 | config ZCRYPT_MONOLITHIC | 78 | config ZCRYPT_MONOLITHIC |
79 | bool "Monolithic zcrypt module" | 79 | bool "Monolithic zcrypt module" |
80 | depends on ZCRYPT="m" | 80 | depends on ZCRYPT |
81 | help | 81 | help |
82 | Select this option if you want to have a single module z90crypt, | 82 | Select this option if you want to have a single module z90crypt, |
83 | that contains all parts of the crypto device driver (ap bus, | 83 | that contains all parts of the crypto device driver (ap bus, |
diff --git a/drivers/s390/block/dasd.c b/drivers/s390/block/dasd.c index 1a84fae155e1..8373ca0de8e0 100644 --- a/drivers/s390/block/dasd.c +++ b/drivers/s390/block/dasd.c | |||
@@ -1325,14 +1325,14 @@ static void __dasd_device_check_expire(struct dasd_device *device) | |||
1325 | if (device->discipline->term_IO(cqr) != 0) { | 1325 | if (device->discipline->term_IO(cqr) != 0) { |
1326 | /* Hmpf, try again in 5 sec */ | 1326 | /* Hmpf, try again in 5 sec */ |
1327 | dev_err(&device->cdev->dev, | 1327 | dev_err(&device->cdev->dev, |
1328 | "cqr %p timed out (%is) but cannot be " | 1328 | "cqr %p timed out (%lus) but cannot be " |
1329 | "ended, retrying in 5 s\n", | 1329 | "ended, retrying in 5 s\n", |
1330 | cqr, (cqr->expires/HZ)); | 1330 | cqr, (cqr->expires/HZ)); |
1331 | cqr->expires += 5*HZ; | 1331 | cqr->expires += 5*HZ; |
1332 | dasd_device_set_timer(device, 5*HZ); | 1332 | dasd_device_set_timer(device, 5*HZ); |
1333 | } else { | 1333 | } else { |
1334 | dev_err(&device->cdev->dev, | 1334 | dev_err(&device->cdev->dev, |
1335 | "cqr %p timed out (%is), %i retries " | 1335 | "cqr %p timed out (%lus), %i retries " |
1336 | "remaining\n", cqr, (cqr->expires/HZ), | 1336 | "remaining\n", cqr, (cqr->expires/HZ), |
1337 | cqr->retries); | 1337 | cqr->retries); |
1338 | } | 1338 | } |