|
From: Peter K. <pk...@us...> - 2002-03-17 16:14:40
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Tag Comment
---- ----------- ----------- --- -------
hci.h 1.76 1.77=20=20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
The HCI_IN_SIZE need to be at least the size of an Ethernet frame
plus some extra bytes when PAN is used.
The diff of the modified file(s):
--- hci.h 28 Feb 2002 20:09:27 -0000 1.76
+++ hci.h 17 Mar 2002 16:14:39 -0000 1.77
@@ -72,7 +72,12 @@
#ifdef CONFIG_BLUETOOTH_UNPLUG_TEST
#define HCI_IN_SIZE 16386
#else
+#ifdef CONFIG_BLUETOOTH_PAN
+/* Need to be at least the size of an Ethernet frame plus some extra bytes=
*/
+#define HCI_IN_SIZE 1600
+#else
#define HCI_IN_SIZE 800
+#endif
#endif
/* Struct defining a HCI command packet, the meaning of the type field is
decribed in part H:4 chapter 2 in the baseband core specification. The
|