mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
Bluetooth: Remove some pointless conditionals before kfree_skb()
Remove some pointless conditionals before kfree_skb(). Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
2ae9a6be5f
commit
7585b97a48
3 changed files with 3 additions and 6 deletions
|
@ -126,8 +126,7 @@ static inline void cmtp_add_msgpart(struct cmtp_session *session, int id, const
|
||||||
|
|
||||||
session->reassembly[id] = nskb;
|
session->reassembly[id] = nskb;
|
||||||
|
|
||||||
if (skb)
|
kfree_skb(skb);
|
||||||
kfree_skb(skb);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int cmtp_recv_frame(struct cmtp_session *session, struct sk_buff *skb)
|
static inline int cmtp_recv_frame(struct cmtp_session *session, struct sk_buff *skb)
|
||||||
|
|
|
@ -1565,8 +1565,7 @@ static void hci_cmd_task(unsigned long arg)
|
||||||
|
|
||||||
/* Send queued commands */
|
/* Send queued commands */
|
||||||
if (atomic_read(&hdev->cmd_cnt) && (skb = skb_dequeue(&hdev->cmd_q))) {
|
if (atomic_read(&hdev->cmd_cnt) && (skb = skb_dequeue(&hdev->cmd_q))) {
|
||||||
if (hdev->sent_cmd)
|
kfree_skb(hdev->sent_cmd);
|
||||||
kfree_skb(hdev->sent_cmd);
|
|
||||||
|
|
||||||
if ((hdev->sent_cmd = skb_clone(skb, GFP_ATOMIC))) {
|
if ((hdev->sent_cmd = skb_clone(skb, GFP_ATOMIC))) {
|
||||||
atomic_dec(&hdev->cmd_cnt);
|
atomic_dec(&hdev->cmd_cnt);
|
||||||
|
|
|
@ -518,8 +518,7 @@ static void l2cap_conn_del(struct hci_conn *hcon, int err)
|
||||||
|
|
||||||
BT_DBG("hcon %p conn %p, err %d", hcon, conn, err);
|
BT_DBG("hcon %p conn %p, err %d", hcon, conn, err);
|
||||||
|
|
||||||
if (conn->rx_skb)
|
kfree_skb(conn->rx_skb);
|
||||||
kfree_skb(conn->rx_skb);
|
|
||||||
|
|
||||||
/* Kill channels */
|
/* Kill channels */
|
||||||
while ((sk = conn->chan_list.head)) {
|
while ((sk = conn->chan_list.head)) {
|
||||||
|
|
Loading…
Reference in a new issue