Home
last modified time | relevance | path

Searched refs:xpc_interface (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/drivers/misc/sgi-xp/
Dxp_main.c74 struct xpc_interface xpc_interface = { }; variable
75 EXPORT_SYMBOL_GPL(xpc_interface);
89 xpc_interface.connect = connect; in xpc_set_interface()
90 xpc_interface.disconnect = disconnect; in xpc_set_interface()
91 xpc_interface.send = send; in xpc_set_interface()
92 xpc_interface.send_notify = send_notify; in xpc_set_interface()
93 xpc_interface.received = received; in xpc_set_interface()
94 xpc_interface.partid_to_nasids = partid_to_nasids; in xpc_set_interface()
104 memset(&xpc_interface, 0, sizeof(xpc_interface)); in xpc_clear_interface()
167 if (xpc_interface.connect) in xpc_connect()
[all …]
Dxp.h283 struct xpc_interface { struct
293 extern struct xpc_interface xpc_interface; argument
312 if (!xpc_interface.send) in xpc_send()
315 return xpc_interface.send(partid, ch_number, flags, payload, in xpc_send()
323 if (!xpc_interface.send_notify) in xpc_send_notify()
326 return xpc_interface.send_notify(partid, ch_number, flags, payload, in xpc_send_notify()
333 if (xpc_interface.received) in xpc_received()
334 xpc_interface.received(partid, ch_number, payload); in xpc_received()
340 if (!xpc_interface.partid_to_nasids) in xpc_partid_to_nasids()
343 return xpc_interface.partid_to_nasids(partid, nasids); in xpc_partid_to_nasids()