From: Johan Hedberg Date: Fri, 4 Jul 2014 13:17:23 +0000 (+0300) Subject: Bluetooth: Use list_del when freeing the list entry X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d1dbf12e3be0befcd3fd1f978202c5f72d2cc67b;p=linux-beck.git Bluetooth: Use list_del when freeing the list entry It's wasteful to use list_del_init (which re-initializes the list_head) if we're just about to free the element and never use it again. Signed-off-by: Johan Hedberg Signed-off-by: Marcel Holtmann --- diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index f1672b15c0f3..90eabcae3ed2 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -5225,7 +5225,7 @@ static int remove_device(struct sock *sk, struct hci_dev *hdev, goto unlock; } - list_del_init(¶ms->action); + list_del(¶ms->action); list_del(¶ms->list); kfree(params); hci_update_background_scan(hdev);