You can subscribe to this list here.
2001 |
Jan
|
Feb
(44) |
Mar
(202) |
Apr
(134) |
May
(89) |
Jun
(94) |
Jul
(58) |
Aug
(58) |
Sep
(56) |
Oct
(75) |
Nov
(26) |
Dec
(14) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(24) |
Feb
(30) |
Mar
(15) |
Apr
(49) |
May
(12) |
Jun
(6) |
Jul
(11) |
Aug
(20) |
Sep
(19) |
Oct
(3) |
Nov
(13) |
Dec
(1) |
2003 |
Jan
(7) |
Feb
(4) |
Mar
(7) |
Apr
(5) |
May
(6) |
Jun
(3) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
(51) |
Dec
(1) |
2004 |
Jan
(11) |
Feb
(5) |
Mar
|
Apr
(5) |
May
(2) |
Jun
|
Jul
(21) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Peter K. <pk...@us...> - 2001-07-31 17:50:56
|
The following files were modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.h 1.43 1.44=20=20=20=20=20=20=20=20=20=20=20=20 hci.h 1.62 1.63=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Corrected a CONFIG_BLUETOOTH_USE_BCSP to CONFIG_BLUETOOTH_SUPPORT_BCSP. The diff of the modified file(s): --- bluetooth.h 2001/07/31 16:50:41 1.43 +++ bluetooth.h 2001/07/31 17:50:55 1.44 @@ -50,7 +50,7 @@ =20 /* glue functions */ s32 bt_write_lower_driver(u8 *data, s32 len); -#ifdef CONFIG_BLUETOOTH_USE_BCSP +#ifdef CONFIG_BLUETOOTH_SUPPORT_BCSP s32 bt_write_lower_driver_real(u8 *data, s32 len); #endif s32 bt_receive_top(u32 con_id, u8 *data, s32 len); --- hci.h 2001/07/06 06:56:08 1.62 +++ hci.h 2001/07/31 17:50:55 1.63 @@ -97,7 +97,7 @@ void hci_receive_data(u8* data, u32 count); s32 hci_send_data(bt_tx_buf *tx_buf); =20 -#ifdef CONFIG_BLUETOOTH_USE_BCSP +#ifdef CONFIG_BLUETOOTH_SUPPORT_BCSP void hci_receive_event(u8 *data, s32 count); void hci_receive_acl(u8 *data, s32 count); void hci_receive_hq(u8 *data, u32 count); |
From: Peter K. <pk...@us...> - 2001-07-31 17:28:07
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- test.c 1.18 1.19=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * Include linux/interrupt.h to make it compile for 2.4.x * Check for __KERNEL__ instead of BTD_USERSTACK. The diff of the modified file(s): --- test.c 2001/07/31 09:04:13 1.18 +++ test.c 2001/07/31 17:28:05 1.19 @@ -45,10 +45,13 @@ =20 #ifdef __KERNEL__ #include <linux/malloc.h> +#include <linux/interrupt.h> + #include <linux/bluetooth/test.h> #include <linux/bluetooth/btcommon.h> #include <linux/bluetooth/btmem.h> #include <linux/bluetooth/l2cap.h> +#include <linux/bluetooth/unplug_test.h> #else #include <string.h> =20 @@ -57,6 +60,7 @@ #include "include/btdebug.h" #include "include/btmem.h" #include "include/l2cap.h" +#include "include/unplug_test.h" #endif =20 /****************** DEBUG CONSTANT AND MACRO SECTION *********************= ***/ @@ -185,13 +189,13 @@ =20 static s32 t_init =3D -1; =20 -#ifndef BTD_USERSTACK +#ifdef __KERNEL__ struct tq_struct test_task; #endif =20 void test_connect_ind(l2cap_con *l2cap)=20 { -#ifndef BTD_USERSTACK +#ifdef __KERNEL__ if (t_init < 0) t_init =3D jiffies; #endif @@ -204,7 +208,7 @@ D_ERR("test_connect_ind: l2ca_connect_rsp failed\n");=20 return; } -#ifdef BTD_USERSTACK +#ifndef __KERNEL__ printk("'Authorization' pending for 5 secs...\n"); sleep(5); #else |
From: Peter K. <pk...@us...> - 2001-07-31 17:18:45
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- rfcomm.h 1.38 1.39=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added rfcomm_disc_msg(). The diff of the modified file(s): --- rfcomm.h 2001/06/14 10:46:28 1.38 +++ rfcomm.h 2001/07/31 17:18:44 1.39 @@ -207,7 +207,7 @@ s32 rfcomm_sprint_status(u8 *buf); s32 rfcomm_ua_msg(rfcomm_con *rfcomm, u8 dlci); s32 rfcomm_dm_msg(rfcomm_con *rfcomm, u8 dlci); -s32 rfcomm_send_disc(rfcomm_con *rfcomm, u8 dlci); +s32 rfcomm_disc_msg(rfcomm_con *rfcomm, u8 dlci); s32 rfcomm_test_msg(rfcomm_con *rfcomm, u8 *test_pattern, u32 len, u8 cr); s32 rfcomm_fcon_msg(rfcomm_con *rfcomm, u8 cr); s32 rfcomm_fcoff_msg(rfcomm_con *rfcomm, u8 cr); |
From: Peter K. <pk...@us...> - 2001-07-31 17:05:50
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- hci.c 1.167 1.168=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Removed a couple of compiler warnings. The diff of the modified file(s): --- hci.c 2001/07/18 12:42:30 1.167 +++ hci.c 2001/07/31 17:05:49 1.168 @@ -220,6 +220,7 @@ /* Informational Parameters (HCI_IP) */ =20 /* Other functions */ +static s32 hci_update_load_factor(void); static s32 hci_read_buffer_size(s32 block);=20 static void set_hci_con(u8 *bd, s32 con_hdl); static void set_hci_con_name(u8 *bd, u8 *name); @@ -767,6 +768,7 @@ { u16 hci_hdl; s32 i; + PRINTPKT(__FUNCTION__, buf, len); =20 switch (event_code) { @@ -789,7 +791,7 @@ =20 case INQUIRY_RESULT: { - s32 i, j; + s32 j; u8 tmp_bd[6]; =20 D_CMD(__FUNCTION__ ": INQUIRY_RESULT\n"); @@ -2704,7 +2706,7 @@ * amount of simultanious connections is altered.=20 */=20 s32 -hci_update_load_factor() +hci_update_load_factor(void) { static unsigned char load; =20 |
From: Peter K. <pk...@us...> - 2001-07-31 16:50:42
|
The following files were modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.h 1.42 1.43=20=20=20=20=20=20=20=20=20=20=20=20 local.h 1.4 1.5=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Check for __KERNEL__ instead of BTD_USERSTACK. The diff of the modified file(s): --- bluetooth.h 2001/06/13 12:13:50 1.42 +++ bluetooth.h 2001/07/31 16:50:41 1.43 @@ -42,7 +42,7 @@ #ifndef BLUETOOTH_H #define BLUETOOTH_H =20 -#ifndef BTD_USERSTACK +#ifdef __KERNEL__ #include <linux/bluetooth/btcommon.h> #else #include "btcommon.h" --- local.h 2001/03/12 15:55:02 1.4 +++ local.h 2001/07/31 16:50:41 1.5 @@ -61,7 +61,7 @@ # endif #endif =20=20 -#ifdef BTD_USERSTACK +#ifndef __KERNEL__ =20=20 # ifdef __LITTLE_ENDIAN # define cpu_to_le16(x) (x) |
From: Anders J. <and...@us...> - 2001-07-31 09:05:04
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.30 1.31=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Changed #INCLUDE_UNPLUG_TEST -> #CONFIG_BLUETOOTH_UNPLUG_TEST The diff of the modified file(s): --- btconfig.h 2001/06/07 10:47:37 1.30 +++ btconfig.h 2001/07/31 09:05:03 1.31 @@ -54,6 +54,8 @@ * General * ******************/ =20 +/* Use testcode or not +//define #CONFIG_BLUETOOTH_UNPLUG_TEST /* Bluetooth HW defines used to setup different HW and to cope with=20 limitations in HW */ =20 |
From: Anders J. <and...@us...> - 2001-07-31 09:04:14
|
The following files were modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- Config.in 1.18 1.19=20=20=20=20=20=20=20=20=20=20=20=20 Makefile 1.23 1.24=20=20=20=20=20=20=20=20=20=20=20=20 test.c 1.17 1.18=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Changed #INCLUDE_UNPLUG_TEST -> #CONFIG_BLUETOOTH_UNPLUG_TEST The diff of the modified file(s): --- Config.in 2001/07/30 16:54:06 1.18 +++ Config.in 2001/07/31 09:04:13 1.19 @@ -36,7 +36,7 @@ bool ' Allow connectionless L2CAP' CONFIG_BLUETOOTH_L2CAP_CONNECTIONLESS bool ' Enable TCI' CONFIG_BLUETOOTH_USE_TCI bool ' Enable M/S Switch' CONFIG_BLUETOOTH_ENABLE_MSSWITCH - bool ' Enable Unplug Test Code' INCLUDE_UNPLUG_TEST + bool ' Enable Unplug Test Code' CONFIG_BLUETOOTH_UNPLUG_TEST =20 if [ "$CONFIG_BLUETOOTH_ENABLE_MSSWITCH" =3D "y" ]; then # CSR can't do scatternet yet, so we need to do M/S switch=20 --- Makefile 2001/07/30 15:45:28 1.23 +++ Makefile 2001/07/31 09:04:13 1.24 @@ -11,7 +11,7 @@ =20 # Uncomment this line to enable the unplugged testcases. If you # don't know what this is just leave it commented. -#INCLUDE_UNPLUG_TEST =3D 1 +INCLUDE_UNPLUG_TEST =3D 1 =20 ifeq ($(TOPDIR)/Rules.make,$(wildcard $(TOPDIR)/Rules.make)) =20 @@ -60,7 +60,7 @@ =20 ifdef INCLUDE_UNPLUG_TEST OBJS +=3D unplug_test.o -CFLAGS +=3D -DINCLUDE_UNPLUG_TEST +CFLAGS +=3D -DCONFIG_BLUETOOTH_UNPLUG_TEST endif =20 all: $(O_TARGET) --- test.c 2001/07/30 13:48:49 1.17 +++ test.c 2001/07/31 09:04:13 1.18 @@ -449,13 +449,7 @@ =20 void test_process_cmd(unsigned char *cmd, s32 size) { - /* FIXME: To allow the testcommand to be processed we need to=20 - link unplug_test.c with the code. This file is=20 - currently located in apps/bluetooth/userstack. - Make a link in this directory to that file and - include it in the build (add it to the Makefile) - if you are going to use this feature. */ -#ifdef INCLUDE_UNPLUG_TEST=20 +#ifdef CONFIG_BLUETOOTH_UNPLUG_TEST=20 int testcase =3D my_atoi(cmd+2); =20 if (testcase > 0) |
From: Anders J. <and...@us...> - 2001-07-31 09:03:35
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Comment ---- ----------- ----------- ------- btd.c 1.101 1.102=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Changed #INCLUDE_UNPLUG_TEST -> #CONFIG_BLUETOOTH_UNPLUG_TEST The diff of the modified file(s): --- btd.c 2001/07/30 15:44:01 1.101 +++ btd.c 2001/07/31 09:03:34 1.102 @@ -581,7 +581,7 @@ " bb_conn <xx:xx:xx:xx:xx:xx>", /* connect only baseband */ " bb_disc <hci handle>", /* disconnect baseband */ " ", -#ifdef INCLUDE_UNPLUG_TEST +#ifdef CONFIG_BLUETOOTH_UNPLUG_TEST " t <testcase>", /* e.g testcase 4.3 't 43' */ #endif "", @@ -1506,7 +1506,7 @@ tmp_bd[3], tmp_bd[4], tmp_bd[5], tmp[0]); l2ca_getinfo(tmp_bd, tmp[0]); } -#ifdef INCLUDE_UNPLUG_TEST +#ifdef CONFIG_BLUETOOTH_UNPLUG_TEST else if (sscanf(buf, "t %d", &i) =3D=3D 1) { /* unplug test cases, if you don't know what it is, don't use it !!! := ) */ |
From: Anders J. <and...@us...> - 2001-07-31 09:02:53
|
The following file was modified in apps/bluetooth/userstack: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.22 1.23=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Changed #INCLUDE_UNPLUG_TEST -> #CONFIG_BLUETOOTH_UNPLUG_TEST The diff of the modified file(s): --- Makefile 2001/07/30 16:04:08 1.22 +++ Makefile 2001/07/31 09:02:53 1.23 @@ -62,7 +62,7 @@ =20 ifeq ($@, $("unplugtest")) OBJS +=3D unplug_test.o -CFLAGS +=3D -DINCLUDE_UNPLUG_TEST +CFLAGS +=3D -DCONFIG_BLUETOOTH_UNPLUG_TEST endif =20 all: links $(PROGS) |
From: Anders J. <and...@us...> - 2001-07-31 09:02:22
|
The following files were modified in apps/bluetooth/experimental: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.6 1.7=20=20=20=20=20=20=20=20=20=20=20=20=20 bttest.c 1.11 1.12=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Changed #INCLUDE_UNPLUG_TEST -> #CONFIG_BLUETOOTH_UNPLUG_TEST The diff of the modified file(s): --- Makefile 2001/06/18 13:59:57 1.6 +++ Makefile 2001/07/31 09:02:21 1.7 @@ -15,6 +15,8 @@ HAVE_READLINE_READLINE =3D 1 #HAVE_READLINE =3D 1 =20 +INCLUDE_UNPLUG_TEST =3D 1 + INSTDIR =3D $(prefix)/bin/ INSTMODE =3D 0755 INSTOWNER =3D root @@ -38,6 +40,10 @@ ifdef HAVE_READLINE LDLIBS +=3D -lreadline -ltermcap CFLAGS +=3D -DHAVE_READLINE -I$(prefix)/include +endif + +ifdef INCLUDE_UNPLUG_TEST +CFLAGS +=3D -DCONFIG_BLUETOOTH_UNPLUG_TEST endif =20 CFLAGS +=3D -MD --- bttest.c 2001/07/30 15:47:54 1.11 +++ bttest.c 2001/07/31 09:02:21 1.12 @@ -101,7 +101,7 @@ " ecs_testcon <xx:xx:xx:xx:xx:xx> (hex)",=20=20 " enable_dut", /* enable device under test mode */ #endif -#ifdef INCLUDE_UNPLUG_TEST +#ifdef CONFIG_BLUETOOTH_UNPLUG_TEST " upt <teststring>", /* e.g testcase 4.3 't 43' */ #endif " quit",=20 @@ -348,7 +348,7 @@ bt_testcmd(bt_cfd, buf+7); } =20 -#ifdef INCLUDE_UNPLUG_TEST +#ifdef CONFIG_BLUETOOTH_UNPLUG_TEST else if (strncmp(buf, "upt", 3) =3D=3D 0) { if (sscanf(buf+4, "t %d", &i) =3D=3D 1) |
From: Anders J. <and...@us...> - 2001-07-30 16:54:07
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- Config.in 1.17 1.18=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added option to include unplug test code The diff of the modified file(s): --- Config.in 2001/06/06 15:50:17 1.17 +++ Config.in 2001/07/30 16:54:06 1.18 @@ -36,6 +36,7 @@ bool ' Allow connectionless L2CAP' CONFIG_BLUETOOTH_L2CAP_CONNECTIONLESS bool ' Enable TCI' CONFIG_BLUETOOTH_USE_TCI bool ' Enable M/S Switch' CONFIG_BLUETOOTH_ENABLE_MSSWITCH + bool ' Enable Unplug Test Code' INCLUDE_UNPLUG_TEST =20 if [ "$CONFIG_BLUETOOTH_ENABLE_MSSWITCH" =3D "y" ]; then # CSR can't do scatternet yet, so we need to do M/S switch=20 |
From: Anders J. <and...@us...> - 2001-07-30 16:53:45
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- unplug_test.c 1.1 1.2=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added isInitalized to run the initialization first time the process_cmd is = called The diff of the modified file(s): --- unplug_test.c 2001/07/30 11:03:11 1.1 +++ unplug_test.c 2001/07/30 16:53:43 1.2 @@ -251,6 +251,7 @@ =20 #define UPDATA_MAXLEN 16384 static u8 tmpdata[UPDATA_MAXLEN]; +static u8 isInitialized =3D 0; =20 void unplug_test_init() @@ -263,6 +264,7 @@ for (i =3D 0; i < UPDATA_MAXLEN; i++) { *(tmpdata+i) =3D (u8) i%0x100; } + isInitialized =3D 1; } =20 #define SERVER 0 @@ -1378,6 +1380,11 @@ =20 void process_test_cmd(s32 test_case) { + if(!isInitialized) + { + unplug_test_init(); + } +=20=20=20=20 printf("test_case %d\n",test_case); =20 switch(test_case){ |
From: Anders J. <and...@us...> - 2001-07-30 16:04:09
|
The following file was modified in apps/bluetooth/userstack: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.21 1.22=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Corrected the unplug define The diff of the modified file(s): --- Makefile 2001/07/30 15:42:15 1.21 +++ Makefile 2001/07/30 16:04:08 1.22 @@ -62,7 +62,7 @@ =20 ifeq ($@, $("unplugtest")) OBJS +=3D unplug_test.o -CFLAGS +=3D -DINCLUDE_UPLUG_TEST +CFLAGS +=3D -DINCLUDE_UNPLUG_TEST endif =20 all: links $(PROGS) |
From: Anders J. <and...@us...> - 2001-07-30 15:47:54
|
The following file was modified in apps/bluetooth/experimental: Name Old version New version Comment ---- ----------- ----------- ------- bttest.c 1.10 1.11=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Inserted an ifdef around unplug-test-specific code The diff of the modified file(s): --- bttest.c 2001/07/30 10:20:02 1.10 +++ bttest.c 2001/07/30 15:47:54 1.11 @@ -101,7 +101,9 @@ " ecs_testcon <xx:xx:xx:xx:xx:xx> (hex)",=20=20 " enable_dut", /* enable device under test mode */ #endif +#ifdef INCLUDE_UNPLUG_TEST " upt <teststring>", /* e.g testcase 4.3 't 43' */ +#endif " quit",=20 =20 "", @@ -345,6 +347,8 @@ { bt_testcmd(bt_cfd, buf+7); } + +#ifdef INCLUDE_UNPLUG_TEST else if (strncmp(buf, "upt", 3) =3D=3D 0) { if (sscanf(buf+4, "t %d", &i) =3D=3D 1) @@ -357,6 +361,7 @@ /* fixme */ } } +#endif =20 else if (sscanf(buf, "getinfo %x:%x:%x:%x:%x:%x %x", &tmp[0], &tmp[1], &tmp[2], &tmp[3], &tmp[4], &tmp[5],=20 |
From: Anders J. <and...@us...> - 2001-07-30 15:45:29
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.22 1.23=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added option to include/exclude unplug test code. The diff of the modified file(s): --- Makefile 2001/06/06 15:52:13 1.22 +++ Makefile 2001/07/30 15:45:28 1.23 @@ -9,6 +9,10 @@ BOBJS =3D bcsp.o bcsp_datagram.o bcsp_integrity.o bcsp_mux.o \ bcsp_sequence.o bcsp_slip.o =20 +# Uncomment this line to enable the unplugged testcases. If you +# don't know what this is just leave it commented. +#INCLUDE_UNPLUG_TEST =3D 1 + ifeq ($(TOPDIR)/Rules.make,$(wildcard $(TOPDIR)/Rules.make)) =20 #--------------------------------------------------------------------- @@ -29,6 +33,10 @@ endif M_OBJS =3D $(O_TARGET) =20 +ifdef INCLUDE_UNPLUG_TEST +O_OBJS +=3D unplug_test.o +endif + include $(TOPDIR)/Rules.make =20 else @@ -49,6 +57,11 @@ =20 MODFLAGS =3D -DMODVERSIONS -include $(INCLUDEDIR)/linux/modversions.h CFLAGS =3D -D__KERNEL__ -DMODULE -I../../../include -I$(INCLUDEDIR) -Wa= ll -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strength-reduce $(MODF= LAGS) -MD + +ifdef INCLUDE_UNPLUG_TEST +OBJS +=3D unplug_test.o +CFLAGS +=3D -DINCLUDE_UNPLUG_TEST +endif =20 all: $(O_TARGET) =20 |
From: Anders J. <and...@us...> - 2001-07-30 15:44:04
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Comment ---- ----------- ----------- ------- btd.c 1.100 1.101=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: The t command isn't available if we are not building with unplug test code The diff of the modified file(s): --- btd.c 2001/07/30 12:54:27 1.100 +++ btd.c 2001/07/30 15:44:01 1.101 @@ -581,7 +581,9 @@ " bb_conn <xx:xx:xx:xx:xx:xx>", /* connect only baseband */ " bb_disc <hci handle>", /* disconnect baseband */ " ", +#ifdef INCLUDE_UNPLUG_TEST " t <testcase>", /* e.g testcase 4.3 't 43' */ +#endif "", #endif NULL @@ -1504,11 +1506,13 @@ tmp_bd[3], tmp_bd[4], tmp_bd[5], tmp[0]); l2ca_getinfo(tmp_bd, tmp[0]); } +#ifdef INCLUDE_UNPLUG_TEST else if (sscanf(buf, "t %d", &i) =3D=3D 1) { /* unplug test cases, if you don't know what it is, don't use it !!! := ) */ process_test_cmd(i); } +#endif else if(sscanf(buf, "tcs_conn %x:%x:%x:%x:%x:%x", &bd[0], &bd[1], &bd[2], &bd[3], &bd[4], &bd[5]) =3D=3D 6) {=20=20=20=20 |
From: Anders J. <and...@us...> - 2001-07-30 15:42:16
|
The following file was modified in apps/bluetooth/userstack: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.20 1.21=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added buildtarget unplugtest to enable the unplug tests in the code The diff of the modified file(s): --- Makefile 2001/07/30 11:12:58 1.20 +++ Makefile 2001/07/30 15:42:15 1.21 @@ -47,21 +47,27 @@ INSTGROUP =3D root =20 SRCS =3D btd.c btdebug.c btmem.c hci.c l2cap.c l2cap_con.c rfcomm.c sdp.= c \ - tcs.c test.c unplug_test.c bt_proc.c hci_vendor.c sec_client.c= \ - l2cap_sec.c rfcomm_sec.c + tcs.c test.c bt_proc.c hci_vendor.c sec_client.c \ + l2cap_sec.c rfcomm_sec.c unplug_test.c =20 OBJS =3D btd.o btdebug.o btmem.o hci.o l2cap.o l2cap_con.o rfcomm.o s= dp.o \ - tcs.o test.o unplug_test.o bt_proc.o hci_vendor.o sec_client.o= \ + tcs.o test.o bt_proc.o hci_vendor.o sec_client.o \ l2cap_sec.o rfcomm_sec.o =20 BTDSRCS =3D btd.c KSRCS =3D btdebug.c btmem.c hci.c l2cap.c l2cap_con.c rfcomm.c sdp.c t= cs.c \ test.c bt_proc.c hci_vendor.c sec_client.c l2cap_sec.c rfcomm_= sec.c -UTSRCS =3D unplug_test.c =20 CFLAGS +=3D -DBTD_USERSTACK =20 +ifeq ($@, $("unplugtest")) +OBJS +=3D unplug_test.o +CFLAGS +=3D -DINCLUDE_UPLUG_TEST +endif + all: links $(PROGS) + +unplugtest: all =20 btduser: $(OBJS) $(CC) -pthread $(LDFLAGS) $^ $(LDLIBS) -o $@ |
From: Anders J. <and...@us...> - 2001-07-30 13:48:50
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- test.c 1.16 1.17=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Corrected spelling error The diff of the modified file(s): --- test.c 2001/07/30 10:16:35 1.16 +++ test.c 2001/07/30 13:48:49 1.17 @@ -455,7 +455,7 @@ Make a link in this directory to that file and include it in the build (add it to the Makefile) if you are going to use this feature. */ -#if 0 +#ifdef INCLUDE_UNPLUG_TEST=20 int testcase =3D my_atoi(cmd+2); =20 if (testcase > 0) @@ -468,7 +468,7 @@ /* other stuff */ } #else - printk("test_process_cmd: Not available, see test.c for details\n"); + printk("test_process_cmd: Not available\n"); #endif =20 } |
From: Anders J. <and...@us...> - 2001-07-30 12:54:29
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Comment ---- ----------- ----------- ------- btd.c 1.99 1.100=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Removed unplug_test_init as this is done at first call to the process_test_= command in unplug_test.c The diff of the modified file(s): --- btd.c 2001/07/30 11:13:52 1.99 +++ btd.c 2001/07/30 12:54:27 1.100 @@ -1729,7 +1729,6 @@ tcs_init(); test_init(); btmem_init(); - unplug_test_init(); bt_stat.bytes_received =3D 0; bt_stat.bytes_sent =3D 0;=20=20 =20 |
From: Anders J. <and...@us...> - 2001-07-30 11:19:54
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- unplug_test.h 1.1 Removed The accompanying log: OOPS, wrong place, removing |
From: Anders J. <and...@us...> - 2001-07-30 11:17:05
|
The following file was modified in apps/bluetooth/userstack: Name Old version New version Comment ---- ----------- ----------- ------- unplug_test.h 1.4 Removed The accompanying log: Moved to includedirectory of the driver |
From: Anders J. <and...@us...> - 2001-07-30 11:13:53
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Comment ---- ----------- ----------- ------- btd.c 1.98 1.99=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Corrected include of unplug_test.h The diff of the modified file(s): --- btd.c 2001/06/15 12:43:15 1.98 +++ btd.c 2001/07/30 11:13:52 1.99 @@ -186,7 +186,7 @@ #include "include/rfcomm.h" #include "include/btdebug.h" #include "include/bt_proc.h" -#include "unplug_test.h" +#include "include/unplug_test.h" =20 /* * Local functions |
From: Anders J. <and...@us...> - 2001-07-30 11:12:58
|
The following file was modified in apps/bluetooth/userstack: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.19 1.20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Corrected Makefile to work with new location of unplug_test.c The diff of the modified file(s): --- Makefile 2001/05/07 11:25:59 1.19 +++ Makefile 2001/07/30 11:12:58 1.20 @@ -92,6 +92,7 @@ @ln -sf $(srcdir)/l2cap_sec.c=20 @ln -sf $(srcdir)/rfcomm_sec.c=20 @ln -sf $(srcdir)/sec_client.c + @ln -sf $(srcdir)/unplug_test.c @ln -sf $(incdir) include =20 unlinks: |
From: Anders J. <and...@us...> - 2001-07-30 11:09:39
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- unplug_test.h 1.1 Added The accompanying log: Moved here from userstack |
From: Mats F. <ma...@us...> - 2001-07-20 06:43:17
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bcsp_sequence.c 1.14 1.15=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: If the sequence nbr is correct, signal rxack The diff of the modified file(s): --- bcsp_sequence.c 2001/07/06 07:00:07 1.14 +++ bcsp_sequence.c 2001/07/20 06:43:16 1.15 @@ -106,7 +106,6 @@ =20 static u8 rtx_count =3D BCSP_RTX_MAX; =20 - static u32 got_packet =3D FALSE; =20 static struct timer_list resend_timer; @@ -150,10 +149,13 @@ D(__FUNCTION__": txack:%d, expected_rxseq:%d, BCSP_GET_SEQ(bcsp):%d\n", t= xack, expected_rxseq, BCSP_GET_SEQ(bcsp)); =20 if (expected_rxseq =3D=3D BCSP_GET_SEQ(bcsp)) { + cli(); txack =3D (BCSP_GET_SEQ(bcsp) + 1) % 8; expected_rxseq =3D (expected_rxseq + 1) % 8; sti(); + + bcsp_signal_rxack(BCSP_GET_ACK(bcsp)); =20=09=09 /* FIXME: Do we need to schedule when winsize > 0 ? */ if ((winspace > 0) && buf_count() && (hci_acl_num_cnt() > 0)) { |