other versions
- wheezy-backports 3.16.39-1+deb8u1~bpo70+1
- jessie 3.16.43-2
| STRUCT W1_NETLINK_MS(9) | W1 API internal to the kernel | STRUCT W1_NETLINK_MS(9) |
NAME¶
struct_w1_netlink_msg - holds w1 message type, id, and resultSYNOPSIS¶
struct w1_netlink_msg {
__u8 type;
__u8 status;
__u16 len;
union id;
__u8 data[0];
};
MEMBERS¶
typeone of enum w1_netlink_message_types
status
kernel feedback for success 0 or errno failure
value
len
length of data following w1_netlink_msg
id
union holding master bus id (msg.id) and slave
device id (id[8]).
data[0]
start address of any following data
DESCRIPTION¶
The base message structure for w1 messages over netlink. The netlink connector data sequence is, struct nlmsghdr, struct cn_msg, then one or more struct w1_netlink_msg (each with optional data).AUTHOR¶
David Fries <David@Fries.net>Author.
COPYRIGHT¶
| February 2017 | Kernel Hackers Manual 3.16 |