Re: bluetooth: Add hci_h4p driver

From: Pavel Machek
Date: Thu Dec 18 2014 - 14:32:04 EST


Hi!

> > + h4p_simple_send_frame(info, skb);
> > +
> > + if (!wait_for_completion_interruptible_timeout(&info->init_completion,
> > + msecs_to_jiffies(1000))) {
> > + printk("h4p: negotiation did not return\n");
>
> Memory leak in the error case

And memory leak in the normal case, too, no? Fixed.

> > + case H4_ACL_PKT:
> > + acl_hdr = (struct hci_acl_hdr *)skb->data;
> > + retval = le16_to_cpu(acl_hdr->dlen);
>
> Could you explain, why only this needs endianness converted?

This one is 16 bit, the others I checked are 8 bit.

> > +static void h4p_rx_tasklet(unsigned long data)
> > +{
> > + u8 byte;
> > + struct h4p_info *info = (struct h4p_info *)data;
> > +
> > + BT_DBG("tasklet woke up");
> > + BT_DBG("rx_tasklet woke up");
>
> Isn't this a bit redundant?

Fixed.

> > + struct sk_buff *skb;
> > + struct h4p_info *info = (struct h4p_info *)data;
> > +
> > + BT_DBG("tasklet woke up");
> > + BT_DBG("tx_tasklet woke up");
>
> Doubled?

Fixed.

Thanks,
Pavel

--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/