mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-19 13:11:14 +00:00
[PATCH] s390: iucv message limit for smsg
The message limit on the iucv connect call for the smsg module is too low. Therefore increase the smsg message limit to 255. Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
331c465914
commit
fbcae7eafc
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ smsg_init(void)
|
||||||
driver_unregister(&smsg_driver);
|
driver_unregister(&smsg_driver);
|
||||||
return -EIO; /* better errno ? */
|
return -EIO; /* better errno ? */
|
||||||
}
|
}
|
||||||
rc = iucv_connect (&smsg_pathid, 1, 0, "*MSG ", 0, 0, 0, 0,
|
rc = iucv_connect (&smsg_pathid, 255, 0, "*MSG ", 0, 0, 0, 0,
|
||||||
smsg_handle, 0);
|
smsg_handle, 0);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
printk(KERN_ERR "SMSGIUCV: failed to connect to *MSG");
|
printk(KERN_ERR "SMSGIUCV: failed to connect to *MSG");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue