|
From: Fredrik S. <fre...@us...> - 2002-02-12 10:57:42
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- hci_internal.h 1.21 1.22=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added a counter of number of pending packets for each HCI handle. The diff of the modified file(s): --- hci_internal.h 2 Oct 2001 11:00:25 -0000 1.21 +++ hci_internal.h 12 Feb 2002 10:57:41 -0000 1.22 @@ -116,6 +116,8 @@ =20 #define NBR_CMD_BUFS 10 =20 +#define MAX_HCI_HANDLE_NBR 0xFF + /* Define the different OpCode Group Field (OGF) values */ #define HCI_LC 0x01 /* Link Control Command */ #define HCI_LP 0x02 /* Link Policy Command */ @@ -337,6 +339,9 @@ u32 nbr_of_connections; u8 local_bd[6]; hci_con con[MAX_NBR_OF_CONNECTIONS]; + + /* A counter of # of pending packets for each HCI handle */ + u8 acl_buf_count[MAX_HCI_HANDLE_NBR+1]; } hci_controller; =20 /****************** EXPORTED FUNCTION DECLARATION SECTION ****************= ***/ |