aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/l2cap.h
diff options
context:
space:
mode:
authorGustavo F. Padovan <padovan@profusion.mobi>2011-03-25 19:09:37 -0400
committerGustavo F. Padovan <padovan@profusion.mobi>2011-04-07 17:06:27 -0400
commit6f61fd475907bf0a1470cb969ee993a31d305513 (patch)
tree3d95dd404d0375d796d75198036466920df214db /include/net/bluetooth/l2cap.h
parent6a026610eee2c53ff59598905fcbaa979aec68d1 (diff)
Bluetooth: Move SDU related vars to struct l2cap_chan
As part of the moving channel stuff to l2cap_chan. Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net/bluetooth/l2cap.h')
-rw-r--r--include/net/bluetooth/l2cap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
index 041213b4175a..19d613bbcf00 100644
--- a/include/net/bluetooth/l2cap.h
+++ b/include/net/bluetooth/l2cap.h
@@ -298,6 +298,10 @@ struct l2cap_chan {
298 __u8 unacked_frames; 298 __u8 unacked_frames;
299 __u8 retry_count; 299 __u8 retry_count;
300 __u8 num_acked; 300 __u8 num_acked;
301 __u16 sdu_len;
302 __u16 partial_sdu_len;
303 struct sk_buff *sdu;
304
301 305
302 struct list_head list; 306 struct list_head list;
303}; 307};
@@ -364,10 +368,6 @@ struct l2cap_pinfo {
364 368
365 __u8 conf_state; 369 __u8 conf_state;
366 370
367 __u16 sdu_len;
368 __u16 partial_sdu_len;
369 struct sk_buff *sdu;
370
371 __u8 tx_win; 371 __u8 tx_win;
372 __u8 max_tx; 372 __u8 max_tx;
373 __u8 remote_tx_win; 373 __u8 remote_tx_win;