|
@@ -2141,8 +2141,6 @@ static inline int l2cap_skbuff_fromiovec(struct l2cap_chan *chan,
|
|
|
if (memcpy_fromiovec(skb_put(*frag, count), msg->msg_iov, count))
|
|
|
return -EFAULT;
|
|
|
|
|
|
- (*frag)->priority = skb->priority;
|
|
|
-
|
|
|
sent += count;
|
|
|
len -= count;
|
|
|
|
|
@@ -2156,16 +2154,15 @@ static inline int l2cap_skbuff_fromiovec(struct l2cap_chan *chan,
|
|
|
}
|
|
|
|
|
|
static struct sk_buff *l2cap_create_connless_pdu(struct l2cap_chan *chan,
|
|
|
- struct msghdr *msg, size_t len,
|
|
|
- u32 priority)
|
|
|
+ struct msghdr *msg, size_t len)
|
|
|
{
|
|
|
struct l2cap_conn *conn = chan->conn;
|
|
|
struct sk_buff *skb;
|
|
|
int err, count, hlen = L2CAP_HDR_SIZE + L2CAP_PSMLEN_SIZE;
|
|
|
struct l2cap_hdr *lh;
|
|
|
|
|
|
- BT_DBG("chan %p psm 0x%2.2x len %zu priority %u", chan,
|
|
|
- __le16_to_cpu(chan->psm), len, priority);
|
|
|
+ BT_DBG("chan %p psm 0x%2.2x len %zu", chan,
|
|
|
+ __le16_to_cpu(chan->psm), len);
|
|
|
|
|
|
count = min_t(unsigned int, (conn->mtu - hlen), len);
|
|
|
|
|
@@ -2174,8 +2171,6 @@ static struct sk_buff *l2cap_create_connless_pdu(struct l2cap_chan *chan,
|
|
|
if (IS_ERR(skb))
|
|
|
return skb;
|
|
|
|
|
|
- skb->priority = priority;
|
|
|
-
|
|
|
/* Create L2CAP header */
|
|
|
lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
|
|
|
lh->cid = cpu_to_le16(chan->dcid);
|
|
@@ -2191,8 +2186,7 @@ static struct sk_buff *l2cap_create_connless_pdu(struct l2cap_chan *chan,
|
|
|
}
|
|
|
|
|
|
static struct sk_buff *l2cap_create_basic_pdu(struct l2cap_chan *chan,
|
|
|
- struct msghdr *msg, size_t len,
|
|
|
- u32 priority)
|
|
|
+ struct msghdr *msg, size_t len)
|
|
|
{
|
|
|
struct l2cap_conn *conn = chan->conn;
|
|
|
struct sk_buff *skb;
|
|
@@ -2208,8 +2202,6 @@ static struct sk_buff *l2cap_create_basic_pdu(struct l2cap_chan *chan,
|
|
|
if (IS_ERR(skb))
|
|
|
return skb;
|
|
|
|
|
|
- skb->priority = priority;
|
|
|
-
|
|
|
/* Create L2CAP header */
|
|
|
lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
|
|
|
lh->cid = cpu_to_le16(chan->dcid);
|
|
@@ -2430,8 +2422,7 @@ static int l2cap_segment_le_sdu(struct l2cap_chan *chan,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len,
|
|
|
- u32 priority)
|
|
|
+int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len)
|
|
|
{
|
|
|
struct sk_buff *skb;
|
|
|
int err;
|
|
@@ -2442,7 +2433,7 @@ int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len,
|
|
|
|
|
|
/* Connectionless channel */
|
|
|
if (chan->chan_type == L2CAP_CHAN_CONN_LESS) {
|
|
|
- skb = l2cap_create_connless_pdu(chan, msg, len, priority);
|
|
|
+ skb = l2cap_create_connless_pdu(chan, msg, len);
|
|
|
if (IS_ERR(skb))
|
|
|
return PTR_ERR(skb);
|
|
|
|
|
@@ -2499,7 +2490,7 @@ int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len,
|
|
|
return -EMSGSIZE;
|
|
|
|
|
|
/* Create a basic PDU */
|
|
|
- skb = l2cap_create_basic_pdu(chan, msg, len, priority);
|
|
|
+ skb = l2cap_create_basic_pdu(chan, msg, len);
|
|
|
if (IS_ERR(skb))
|
|
|
return PTR_ERR(skb);
|
|
|
|