Lines Matching refs:smsg_path
31 static struct iucv_path *smsg_path; variable
132 if (smsg_path && iucv_path_connected) { in smsg_pm_freeze()
133 iucv_path_sever(smsg_path, NULL); in smsg_pm_freeze()
146 if (smsg_path && !iucv_path_connected) { in smsg_pm_restore_thaw()
147 memset(smsg_path, 0, sizeof(*smsg_path)); in smsg_pm_restore_thaw()
148 smsg_path->msglim = 255; in smsg_pm_restore_thaw()
149 smsg_path->flags = 0; in smsg_pm_restore_thaw()
150 rc = iucv_path_connect(smsg_path, &smsg_handler, "*MSG ", in smsg_pm_restore_thaw()
199 smsg_path = iucv_path_alloc(255, 0, GFP_KERNEL); in smsg_init()
200 if (!smsg_path) { in smsg_init()
204 rc = iucv_path_connect(smsg_path, &smsg_handler, "*MSG ", in smsg_init()
230 iucv_path_free(smsg_path); in smsg_init()
231 smsg_path = NULL; in smsg_init()