Re: [RFCv2 02/20] Bluetooth: Process HCI callbacks in a workqueue

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tuesday 24 July 2012 16:21:43 Andrei Emeltchenko wrote:
> +void hci_queue_cb(struct hci_dev *hdev, struct hci_cb_cmd *cmd,
> +                 struct workqueue_struct *workqueue)
> +{
> +       struct hci_cb_work *work;
> +
> +       BT_DBG("%s queue cmd %p", hdev->name, cmd);
> +
> +       work = kmalloc(sizeof(*work), GFP_KERNEL);

This looks like prone to deadlocks. You can run networked file
systems over the link and allocating memory with GFP_KERNEL
could run into a recursion problem.

> +       if (!work)
> +               return;
> +
> +       INIT_WORK(&work->work, hci_cb_worker);
> +       work->hdev = hdev;
> +       work->cmd = cmd;
> +       hci_dev_hold(hdev);
> +
> +       if (!queue_work(workqueue, &work->work)) {
> +               kfree(work);
> +               hci_dev_put(hdev);
> +       }
> +}

	Regards
		Oliver

--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux