Subject: Re: CVS commit: src/sys/netbt
To: None <source-changes@NetBSD.org>
From: Joerg Sonnenberger <joerg@britannica.bec.de>
List: source-changes
Date: 11/03/2007 18:14:19
On Sat, Nov 03, 2007 at 05:20:17PM +0000, Iain Hibbert wrote:
> Modified Files:
> 	src/sys/netbt: hci.h hci_link.c l2cap.h l2cap_misc.c rfcomm.h
> 	    rfcomm_dlc.c rfcomm_session.c rfcomm_upper.c
> 
> Log Message:
> "struct callout" -> callout_t
> don't use callout_reset()
> do use callout_destroy()

A small note. The call to callout_schedule might be better at the end of
the init function in l2cap_misc.c, so that the callout is scheduled
first when the entire structure is initialised. This could make a
difference in the future for locking.

Joerg