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