Home
last modified time | relevance | path

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

/Linux-v5.4/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.h266 struct xpc_interface { struct
276 extern struct xpc_interface xpc_interface; argument
295 if (!xpc_interface.send) in xpc_send()
298 return xpc_interface.send(partid, ch_number, flags, payload, in xpc_send()
306 if (!xpc_interface.send_notify) in xpc_send_notify()
309 return xpc_interface.send_notify(partid, ch_number, flags, payload, in xpc_send_notify()
316 if (xpc_interface.received) in xpc_received()
317 xpc_interface.received(partid, ch_number, payload); in xpc_received()
323 if (!xpc_interface.partid_to_nasids) in xpc_partid_to_nasids()
326 return xpc_interface.partid_to_nasids(partid, nasids); in xpc_partid_to_nasids()