* [S390] Replace nopav-message on VM.
@ 2006-09-15 11:27 Martin Schwidefsky
0 siblings, 0 replies; only message in thread
From: Martin Schwidefsky @ 2006-09-15 11:27 UTC (permalink / raw)
To: linux-kernel, peter.oberparleiter
From: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
[S390] Replace nopav-message on VM.
Specifying kernel parameter "dasd=nopav" on systems running under VM
has no function but results in message "disable PAV mode". Correct
message is "'nopav' not supported on VM".
Signed-off-by: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
---
drivers/s390/block/dasd_devmap.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff -urpN linux-2.6/drivers/s390/block/dasd_devmap.c linux-2.6-patched/drivers/s390/block/dasd_devmap.c
--- linux-2.6/drivers/s390/block/dasd_devmap.c 2006-09-15 12:18:24.000000000 +0200
+++ linux-2.6-patched/drivers/s390/block/dasd_devmap.c 2006-09-15 12:18:44.000000000 +0200
@@ -258,8 +258,12 @@ dasd_parse_keyword( char *parsestring )
return residual_str;
}
if (strncmp("nopav", parsestring, length) == 0) {
- dasd_nopav = 1;
- MESSAGE(KERN_INFO, "%s", "disable PAV mode");
+ if (MACHINE_IS_VM)
+ MESSAGE(KERN_INFO, "%s", "'nopav' not supported on VM");
+ else {
+ dasd_nopav = 1;
+ MESSAGE(KERN_INFO, "%s", "disable PAV mode");
+ }
return residual_str;
}
if (strncmp("fixedbuffers", parsestring, length) == 0) {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-09-15 11:27 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-15 11:27 [S390] Replace nopav-message on VM Martin Schwidefsky
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.