Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 34191
b: refs/heads/master
c: dcd707b
h: refs/heads/master
i:
  34189: 2aa4d6a
  34187: 5e92b7a
  34183: e703e25
  34175: 2b45b18
v: v3
  • Loading branch information
Peter Oberparleiter authored and Martin Schwidefsky committed Sep 20, 2006
1 parent a536e01 commit e7482e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: db0c2d59087296b3567ec408abe17108db88b385
refs/heads/master: dcd707b4bdc10b4fa20efa116dbaeded21513115
8 changes: 6 additions & 2 deletions trunk/drivers/s390/block/dasd_devmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e7482e2

Please sign in to comment.