Lines Matching refs:up_ptr
674 struct user_port *up_ptr; in port_dispatcher_sigh() local
696 up_ptr = p_ptr->user_port; in port_dispatcher_sigh()
697 usr_handle = up_ptr->usr_handle; in port_dispatcher_sigh()
707 tipc_conn_msg_event cb = up_ptr->conn_msg_cb; in port_dispatcher_sigh()
732 tipc_msg_event cb = up_ptr->msg_cb; in port_dispatcher_sigh()
745 tipc_named_msg_event cb = up_ptr->named_msg_cb; in port_dispatcher_sigh()
770 up_ptr->conn_err_cb; in port_dispatcher_sigh()
787 tipc_msg_err_event cb = up_ptr->err_cb; in port_dispatcher_sigh()
800 up_ptr->named_err_cb; in port_dispatcher_sigh()
853 struct user_port *up_ptr; in port_wakeup_sh() local
859 up_ptr = p_ptr->user_port; in port_wakeup_sh()
860 if (up_ptr) { in port_wakeup_sh()
861 cb = up_ptr->continue_event_cb; in port_wakeup_sh()
862 uh = up_ptr->usr_handle; in port_wakeup_sh()
907 struct user_port *up_ptr; in tipc_createport() local
910 up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC); in tipc_createport()
911 if (!up_ptr) { in tipc_createport()
918 kfree(up_ptr); in tipc_createport()
922 p_ptr->user_port = up_ptr; in tipc_createport()
923 up_ptr->usr_handle = usr_handle; in tipc_createport()
924 up_ptr->ref = p_ptr->ref; in tipc_createport()
925 up_ptr->err_cb = error_cb; in tipc_createport()
926 up_ptr->named_err_cb = named_error_cb; in tipc_createport()
927 up_ptr->conn_err_cb = conn_error_cb; in tipc_createport()
928 up_ptr->msg_cb = msg_cb; in tipc_createport()
929 up_ptr->named_msg_cb = named_msg_cb; in tipc_createport()
930 up_ptr->conn_msg_cb = conn_msg_cb; in tipc_createport()
931 up_ptr->continue_event_cb = continue_event_cb; in tipc_createport()