From: Mats F. <ma...@us...> - 2001-06-19 06:13:02
|
The following files were modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btcommon.h 1.76 1.77=20=20=20=20=20=20=20=20=20=20=20=20 btmem.h 1.18 1.19=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: We need to keep track of how many bytes there are in the BT-buf for each li= ne The diff of the modified file(s): --- btcommon.h 2001/06/15 12:31:55 1.76 +++ btcommon.h 2001/06/19 06:13:01 1.77 @@ -224,6 +224,7 @@ u32 hci_hdl; /* The destination hci connection handle */ u8 pb_flag; /* Packet boundary flag */ u8 bc_flag; /* Broadcast flag */ + s32 line; /* -1 means that the buffer isn't allocated for a line */ =20 /* 'Filled in' data length (up to this point) when creating object. Also used when sending data to mark how much that has been sent --- btmem.h 2001/02/15 16:28:46 1.18 +++ btmem.h 2001/06/19 06:13:01 1.19 @@ -82,7 +82,7 @@ s32 buf_count(void); =20 /* Returns total number of bytes in buffer (fragmented) */ -s32 buf_byte_count(void); +s32 buf_byte_count(s32 line); =20 /* Returns unfragmented buffer space */=20 s32 buf_write_room(void); |