The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
bcsp_mux.c 1.7 1.8=20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
If it isn't an ack-packet, we shouldn't signal an ack here. Ack sent in dat=
a packets
are taken care of in the sequence-layer.
The diff of the modified file(s):
--- bcsp_mux.c 2001/05/30 09:47:00 1.7
+++ bcsp_mux.c 2001/07/20 06:41:00 1.8
@@ -72,10 +72,9 @@
/* If we received an ack packet, we discard the packet, sice the ack
has already been handled by signal_rxack */
=20
- bcsp_signal_rxack(BCSP_GET_ACK(bcsp));
-=09
if (bcsp->identifier =3D=3D 0) {
D(__FUNCTION__ ": Received ack, returning\n");
+ bcsp_signal_rxack(BCSP_GET_ACK(bcsp));
return 0;
}
=20=09
|