Lines Matching refs:connector
5 Kernel connector - new netlink based userspace <-> kernel space easy
37 connector.h header for in-kernel usage. void (*callback) (void *) is a
39 is received by the connector core. The argument for that function must
59 Registers new callback with connector core.
61 struct cb_id *id - unique connector's user identifier.
62 It must be registered in connector.h for legal in-kernel users.
63 char *name - connector's callback symbolic name.
64 void (*callback) (struct cn..) - connector's callback.
70 Unregisters new callback with connector core.
72 struct cb_id *id - unique connector's user identifier.
90 be searched through all registered connector users,
97 Note: When registering new callback user, connector core assigns
126 The connector allows event notification in the following form: kernel
127 driver or userspace process can ask connector to notify it when
129 callback). It is done by sending a special command to the connector
133 uses the connector to request notification and to send messages.
142 cn_msg [main connector's message header] contains u32 seq and u32 ack
151 So, if you wish to use a netlink socket (for example using connector)
178 In case of connector it is CN_NETLINK_USERS + 0xf, so if you want to use
183 not use add/remove connector's group notifications, but as far as I know,