projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
331c465
)
[PATCH] s390: iucv message limit for smsg
author
Martin Schwidefsky
<
[email protected]
>
Wed, 8 Mar 2006 05:55:38 +0000
(21:55 -0800)
committer
Linus Torvalds
<
[email protected]
>
Wed, 8 Mar 2006 22:14:01 +0000
(14:14 -0800)
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 <
[email protected]
>
Signed-off-by: Heiko Carstens <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/s390/net/smsgiucv.c
patch
|
blob
|
history
diff --git
a/drivers/s390/net/smsgiucv.c
b/drivers/s390/net/smsgiucv.c
index d6469baa7e16ef1698d7ff9ff27436aca11fc723..72118ee689549a3bdb499fcfc9b11d3feda2e753 100644
(file)
--- a/
drivers/s390/net/smsgiucv.c
+++ b/
drivers/s390/net/smsgiucv.c
@@
-168,7
+168,7
@@
smsg_init(void)
driver_unregister(&smsg_driver);
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);
if (rc) {
printk(KERN_ERR "SMSGIUCV: failed to connect to *MSG");