Lines Matching refs:smsg_path
44 static struct iucv_path *smsg_path; variable
145 if (smsg_path && iucv_path_connected) { in smsg_pm_freeze()
146 iucv_path_sever(smsg_path, NULL); in smsg_pm_freeze()
159 if (smsg_path && !iucv_path_connected) { in smsg_pm_restore_thaw()
160 memset(smsg_path, 0, sizeof(*smsg_path)); in smsg_pm_restore_thaw()
161 smsg_path->msglim = 255; in smsg_pm_restore_thaw()
162 smsg_path->flags = 0; in smsg_pm_restore_thaw()
163 rc = iucv_path_connect(smsg_path, &smsg_handler, "*MSG ", in smsg_pm_restore_thaw()
212 smsg_path = iucv_path_alloc(255, 0, GFP_KERNEL); in smsg_init()
213 if (!smsg_path) { in smsg_init()
217 rc = iucv_path_connect(smsg_path, &smsg_handler, "*MSG ", in smsg_init()
243 iucv_path_free(smsg_path); in smsg_init()
244 smsg_path = NULL; in smsg_init()