Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 216752
b: refs/heads/master
c: a20852d
h: refs/heads/master
v: v3
  • Loading branch information
Heiko Carstens authored and Martin Schwidefsky committed Oct 25, 2010
1 parent a5eda0e commit 0a1a325
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 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: bf2106ae114807772506e62cbf8a7d8e2c5403a1
refs/heads/master: a20852d2b7ca3c6e7b232eecf09631b66dde2a46
7 changes: 6 additions & 1 deletion trunk/arch/s390/mm/cmm.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
#include <asm/pgalloc.h>
#include <asm/diag.h>

static char *sender = "VMRMSVM";
#ifdef CONFIG_CMM_IUCV
static char *cmm_default_sender = "VMRMSVM";
#endif
static char *sender;
module_param(sender, charp, 0400);
MODULE_PARM_DESC(sender,
"Guest name that may send SMSG messages (default VMRMSVM)");
Expand Down Expand Up @@ -440,6 +443,8 @@ static int __init cmm_init(void)
int len = strlen(sender);
while (len--)
sender[len] = toupper(sender[len]);
} else {
sender = cmm_default_sender;
}

rc = smsg_register_callback(SMSG_PREFIX, cmm_smsg_target);
Expand Down

0 comments on commit 0a1a325

Please sign in to comment.