diff options
author | Marcel Holtmann | 2005-08-10 05:30:28 +0200 |
---|---|---|
committer | David S. Miller | 2005-08-30 00:55:13 +0200 |
commit | 0d48d93947dd9ea21c5cdc76a8581b06a4a39281 (patch) | |
tree | 96a1cbfe83a02e27fed3d30f1ac9f2fe05c17506 /include | |
parent | [Bluetooth]: Fix sparse warnings (__nocast type) (diff) | |
download | kernel-qcow2-linux-0d48d93947dd9ea21c5cdc76a8581b06a4a39281.tar.gz kernel-qcow2-linux-0d48d93947dd9ea21c5cdc76a8581b06a4a39281.tar.xz kernel-qcow2-linux-0d48d93947dd9ea21c5cdc76a8581b06a4a39281.zip |
[Bluetooth]: Move packet type into the SKB control buffer
This patch moves the usage of packet type into the SKB control
buffer. After this patch it is now possible to shrink the sk_buff
structure and redefine its pkt_type.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bluetooth/bluetooth.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/bluetooth/bluetooth.h b/include/net/bluetooth/bluetooth.h index 5309b6fa6690..6dfa4a61ffd0 100644 --- a/include/net/bluetooth/bluetooth.h +++ b/include/net/bluetooth/bluetooth.h @@ -131,7 +131,8 @@ struct sock *bt_accept_dequeue(struct sock *parent, struct socket *newsock); /* Skb helpers */ struct bt_skb_cb { - int incoming; + __u8 pkt_type; + __u8 incoming; }; #define bt_cb(skb) ((struct bt_skb_cb *)(skb->cb)) |