1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
|
/*++
Copyright (c) Microsoft Corporation
Module Name:
read.c
Abstract:
This module contains the code that is very specific to read
operations in the serial driver
Environment:
Kernel mode
--*/
#include "precomp.h"
#if defined(EVENT_TRACING)
#include "read.tmh"
#endif
EVT_WDF_REQUEST_CANCEL SerialCancelCurrentRead;
EVT_WDF_INTERRUPT_SYNCHRONIZE SerialGrabReadFromIsr;
EVT_WDF_INTERRUPT_SYNCHRONIZE SerialUpdateReadByIsr;
EVT_WDF_INTERRUPT_SYNCHRONIZE SerialUpdateInterruptBuffer;
EVT_WDF_INTERRUPT_SYNCHRONIZE SerialUpdateAndSwitchToUser;
EVT_WDF_INTERRUPT_SYNCHRONIZE SerialUpdateAndSwitchToNew;
ULONG
SerialGetCharsFromIntBuffer(
PSERIAL_DEVICE_EXTENSION Extension
);
NTSTATUS
SerialResizeBuffer(
IN PSERIAL_DEVICE_EXTENSION Extension
);
ULONG
SerialMoveToNewIntBuffer(
PSERIAL_DEVICE_EXTENSION Extension,
PUCHAR NewBuffer
);
VOID
SerialEvtIoRead(
IN WDFQUEUE Queue,
IN WDFREQUEST Request,
IN size_t Length
)
/*++
Routine Description:
This is the dispatch routine for reading. It validates the parameters
for the read request and if all is ok then it places the request
on the work queue.
Arguments:
Queue - Queue handle
Request - Handle to the read request
Lenght - Length of the data buffer associated with the request.
The default property of the queue is to not dispatch
zero lenght read & write requests to the driver and
complete is with status success. So we will never get
a zero length request.
Return Value:
--*/
{
PSERIAL_DEVICE_EXTENSION extension;
NTSTATUS status;
WDFDEVICE hDevice;
WDF_REQUEST_PARAMETERS params;
PREQUEST_CONTEXT reqContext;
size_t bufLen;
hDevice = WdfIoQueueGetDevice(Queue);
extension = SerialGetDeviceExtension(hDevice);
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ,
">SerialEvtIoRead(%p, 0x%I64x)\n", Request, Length);
if (SerialCompleteIfError(extension, Request) != STATUS_SUCCESS) {
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ, "<SerialEvtIoRead (2) %d\n", STATUS_CANCELLED);
return;
}
WDF_REQUEST_PARAMETERS_INIT(¶ms);
WdfRequestGetParameters(
Request,
¶ms
);
//
// Initialize the scratch area of the request.
//
reqContext = SerialGetRequestContext(Request);
reqContext->MajorFunction = params.Type;
reqContext->Length = (ULONG) Length;
status = WdfRequestRetrieveOutputBuffer (Request, Length, &reqContext->SystemBuffer, &bufLen);
if (!NT_SUCCESS (status)) {
SerialCompleteRequest(Request , status, 0);
SerialDbgPrintEx(TRACE_LEVEL_ERROR, DBG_READ, "<SerialEvtIoRead (5) %X\n", status);
return;
}
ASSERT(bufLen == reqContext->Length);
//
// Well it looks like we actually have to do some
// work. Put the read on the queue so that we can
// process it when our previous reads are done.
//
SerialStartOrQueue(extension, Request, extension->ReadQueue,
&extension->CurrentReadRequest, SerialStartRead);
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ, "<SerialEvtIoRead (3) %X\n", status);
return;
}
VOID
SerialStartRead(
IN PSERIAL_DEVICE_EXTENSION Extension
)
/*++
Routine Description:
This routine is used to start off any read. It initializes
the Iostatus fields of the request. It will set up any timers
that are used to control the read. It will attempt to complete
the read from data already in the interrupt buffer. If the
read can be completed quickly it will start off another if
necessary.
Arguments:
Extension - Simply a pointer to the serial device extension.
Return Value:
This routine will return the status of the first read
request. This is useful in that if we have a read that can
complete right away (AND there had been nothing in the
queue before it) the read could return SUCCESS and the
application won't have to do a wait.
--*/
{
SERIAL_UPDATE_CHAR updateChar;
WDFREQUEST newRequest;
BOOLEAN returnWithWhatsPresent;
BOOLEAN os2ssreturn;
BOOLEAN crunchDownToOne;
BOOLEAN useTotalTimer;
BOOLEAN useIntervalTimer;
ULONG multiplierVal = 0;
ULONG constantVal = 0;
LARGE_INTEGER totalTime = {0};
SERIAL_TIMEOUTS timeoutsForIrp;
PREQUEST_CONTEXT reqContext;
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ,
">SerialStartRead(%p)\n", Extension);
updateChar.Extension = Extension;
do {
reqContext = SerialGetRequestContext(Extension->CurrentReadRequest);
//
// Check to see if this is a resize request. If it is
// then go to a routine that specializes in that.
//
if (reqContext->MajorFunction != IRP_MJ_READ) {
NTSTATUS localStatus = SerialResizeBuffer(Extension);
UNREFERENCED_PARAMETER(localStatus);
ASSERT(NT_SUCCESS(localStatus));
} else {
Extension->NumberNeededForRead = reqContext->Length;
//
// Calculate the timeout value needed for the
// request. Note that the values stored in the
// timeout record are in milliseconds.
//
useTotalTimer = FALSE;
returnWithWhatsPresent = FALSE;
os2ssreturn = FALSE;
crunchDownToOne = FALSE;
useIntervalTimer = FALSE;
//
//
// CIMEXCIMEX -- this is a lie
//
// Always initialize the timer objects so that the
// completion code can tell when it attempts to
// cancel the timers whether the timers had ever
// been Set.
//
// CIMEXCIMEX -- this is the truth
//
// What we want to do is just make sure the timers are
// cancelled to the best of our ability and move on with
// life.
//
SerialCancelTimer(Extension->ReadRequestTotalTimer, Extension);
SerialCancelTimer(Extension->ReadRequestIntervalTimer, Extension);
//
// We get the *current* timeout values to use for timing
// this read.
//
timeoutsForIrp = Extension->Timeouts;
//
// Calculate the interval timeout for the read.
//
if (timeoutsForIrp.ReadIntervalTimeout &&
(timeoutsForIrp.ReadIntervalTimeout !=
MAXULONG)) {
useIntervalTimer = TRUE;
Extension->IntervalTime.QuadPart =
UInt32x32To64(
timeoutsForIrp.ReadIntervalTimeout,
10000
);
if (Extension->IntervalTime.QuadPart >=
Extension->CutOverAmount.QuadPart) {
Extension->IntervalTimeToUse =
&Extension->LongIntervalAmount;
} else {
Extension->IntervalTimeToUse =
&Extension->ShortIntervalAmount;
}
}
if (timeoutsForIrp.ReadIntervalTimeout == MAXULONG) {
//
// We need to do special return quickly stuff here.
//
// 1) If both constant and multiplier are
// 0 then we return immediately with whatever
// we've got, even if it was zero.
//
// 2) If constant and multiplier are not MAXULONG
// then return immediately if any characters
// are present, but if nothing is there, then
// use the timeouts as specified.
//
// 3) If multiplier is MAXULONG then do as in
// "2" but return when the first character
// arrives.
//
if (!timeoutsForIrp.ReadTotalTimeoutConstant &&
!timeoutsForIrp.ReadTotalTimeoutMultiplier) {
returnWithWhatsPresent = TRUE;
} else if ((timeoutsForIrp.ReadTotalTimeoutConstant != MAXULONG)
&&
(timeoutsForIrp.ReadTotalTimeoutMultiplier
!= MAXULONG)) {
useTotalTimer = TRUE;
os2ssreturn = TRUE;
multiplierVal = timeoutsForIrp.ReadTotalTimeoutMultiplier;
constantVal = timeoutsForIrp.ReadTotalTimeoutConstant;
} else if ((timeoutsForIrp.ReadTotalTimeoutConstant != MAXULONG)
&&
(timeoutsForIrp.ReadTotalTimeoutMultiplier
== MAXULONG)) {
useTotalTimer = TRUE;
os2ssreturn = TRUE;
crunchDownToOne = TRUE;
multiplierVal = 0;
constantVal = timeoutsForIrp.ReadTotalTimeoutConstant;
}
} else {
//
// If both the multiplier and the constant are
// zero then don't do any total timeout processing.
//
if (timeoutsForIrp.ReadTotalTimeoutMultiplier ||
timeoutsForIrp.ReadTotalTimeoutConstant) {
//
// We have some timer values to calculate.
//
useTotalTimer = TRUE;
multiplierVal = timeoutsForIrp.ReadTotalTimeoutMultiplier;
constantVal = timeoutsForIrp.ReadTotalTimeoutConstant;
}
}
if (useTotalTimer) {
totalTime.QuadPart = ((LONGLONG)(UInt32x32To64(
Extension->NumberNeededForRead,
multiplierVal
)
+ constantVal))
* -10000;
}
//
// We do this copy in the hope of getting most (if not
// all) of the characters out of the interrupt buffer.
//
// Note that we need to protect this operation with a
// spinlock since we don't want a purge to hose us.
//
updateChar.CharsCopied = SerialGetCharsFromIntBuffer(Extension);
//
// See if we have any cause to return immediately.
//
if (returnWithWhatsPresent || (!Extension->NumberNeededForRead) ||
(os2ssreturn &&
reqContext->Information)) {
//
// We got all we needed for this read.
// Update the number of characters in the
// interrupt read buffer.
//
WdfInterruptSynchronize(
Extension->WdfInterrupt,
SerialUpdateInterruptBuffer,
&updateChar
);
reqContext->Status = STATUS_SUCCESS;
} else {
//
// The request might go under control of the isr. It
// won't hurt to initialize the reference count
// right now.
//
SERIAL_INIT_REFERENCE(reqContext);
//
// If we are supposed to crunch the read down to
// one character, then update the read length
// in the request and truncate the number needed for
// read down to one. Note that if we are doing
// this crunching, then the information must be
// zero (or we would have completed above) and
// the number needed for the read must still be
// equal to the read length.
//
if (crunchDownToOne) {
ASSERT(
(!reqContext->Information)
&&
(Extension->NumberNeededForRead == reqContext->Length)
);
Extension->NumberNeededForRead = 1;
reqContext->Length = 1;
}
//
// We still need to get more characters for this read.
// synchronize with the isr so that we can update the
// number of characters and if necessary it will have the
// isr switch to copying into the users buffer.
//
WdfInterruptSynchronize(
Extension->WdfInterrupt,
SerialUpdateAndSwitchToUser,
&updateChar
);
if (!updateChar.Completed) {
SerialSetCancelRoutine(Extension->CurrentReadRequest,
SerialCancelCurrentRead);
//
// The request still isn't complete. The
// completion routines will end up reinvoking
// this routine. So we simply leave.
//
// First thought we should start off the total
// timer for the read and increment the reference
// count that the total timer has on the current
// request. Note that this is safe, because even if
// the io has been satisfied by the isr it can't
// complete yet because we still own the cancel
// spinlock.
//
if (useTotalTimer) {
BOOLEAN result;
result = SerialSetTimer(
Extension->ReadRequestTotalTimer,
totalTime
);
if(result == FALSE) {
SERIAL_SET_REFERENCE(
reqContext,
SERIAL_REF_TOTAL_TIMER
);
}
}
if (useIntervalTimer) {
BOOLEAN result;
KeQuerySystemTime(
&Extension->LastReadTime
);
result = SerialSetTimer(
Extension->ReadRequestIntervalTimer,
*Extension->IntervalTimeToUse
);
if(result == FALSE) {
SERIAL_SET_REFERENCE(
reqContext,
SERIAL_REF_INT_TIMER
);
}
}
break;
} else {
reqContext->Status = STATUS_SUCCESS;
}
}
}
//
// Well the operation is complete.
//
SerialGetNextRequest(&Extension->CurrentReadRequest,
Extension->ReadQueue,
&newRequest, TRUE, Extension);
} while (newRequest);
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ, "<SerialStartRead \n");
return;
}
VOID
SerialCompleteRead(
IN WDFDPC Dpc
)
/*++
Routine Description:
This routine is merely used to complete any read that
ended up being used by the Isr. It assumes that the
status and the information fields of the request are already
correctly filled in.
Arguments:
Dpc - Not Used.
Return Value:
None.
--*/
{
PSERIAL_DEVICE_EXTENSION extension = NULL;
extension = SerialGetDeviceExtension(WdfDpcGetParentObject(Dpc));
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ, ">SerialCompleteRead(%p)\n",
extension);
//
// We set this to indicate to the interval timer
// that the read has completed.
//
// Recall that the interval timer dpc can be lurking in some
// DPC queue.
//
extension->CountOnLastRead = SERIAL_COMPLETE_READ_COMPLETE;
SerialTryToCompleteCurrent(
extension,
NULL,
STATUS_SUCCESS,
&extension->CurrentReadRequest,
extension->ReadQueue,
extension->ReadRequestIntervalTimer,
extension->ReadRequestTotalTimer,
SerialStartRead,
SerialGetNextRequest,
SERIAL_REF_ISR
);
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ, "<SerialCompleteRead\n");
}
VOID
SerialCancelCurrentRead(
WDFREQUEST Request
)
/*++
Routine Description:
This routine is used to cancel the current read.
Arguments:
Device - Wdf device handle
Request - Pointer to the WDFREQUEST to be canceled.
Return Value:
None.
--*/
{
PSERIAL_DEVICE_EXTENSION extension = NULL;
WDFDEVICE device = WdfIoQueueGetDevice(WdfRequestGetIoQueue(Request));
UNREFERENCED_PARAMETER(Request);
extension = SerialGetDeviceExtension(device);
//
// We set this to indicate to the interval timer
// that the read has encountered a cancel.
//
// Recall that the interval timer dpc can be lurking in some
// DPC queue.
//
extension->CountOnLastRead = SERIAL_COMPLETE_READ_CANCEL;
SerialTryToCompleteCurrent(
extension,
SerialGrabReadFromIsr,
STATUS_CANCELLED,
&extension->CurrentReadRequest,
extension->ReadQueue,
extension->ReadRequestIntervalTimer,
extension->ReadRequestTotalTimer,
SerialStartRead,
SerialGetNextRequest,
SERIAL_REF_CANCEL
);
}
BOOLEAN
SerialGrabReadFromIsr(
IN WDFINTERRUPT Interrupt,
IN PVOID Context
)
/*++
Routine Description:
This routine is used to grab (if possible) the request from the
isr. If it finds that the isr still owns the request it grabs
the ipr away (updating the number of characters copied into the
users buffer). If it grabs it away it also decrements the
reference count on the request since it no longer belongs to the
isr (and the dpc that would complete it).
NOTE: This routine assumes that if the current buffer that the
ISR is copying characters into is the interrupt buffer then
the dpc has already been queued.
NOTE: This routine is being called from WdfInterruptSynchronize.
NOTE: This routine assumes that it is called with the cancel spin
lock held.
Arguments:
Context - Really a pointer to the device extension.
Return Value:
Always false.
--*/
{
PSERIAL_DEVICE_EXTENSION extension = Context;
PREQUEST_CONTEXT reqContext;
UNREFERENCED_PARAMETER(Interrupt);
reqContext = SerialGetRequestContext(extension->CurrentReadRequest);
if (extension->ReadBufferBase !=
extension->InterruptReadBuffer) {
//
// We need to set the information to the number of characters
// that the read wanted minus the number of characters that
// didn't get read into the interrupt buffer.
//
reqContext->Information = reqContext->Length -
((extension->LastCharSlot - extension->CurrentCharSlot) + 1);
//
// Switch back to the interrupt buffer.
//
extension->ReadBufferBase = extension->InterruptReadBuffer;
extension->CurrentCharSlot = extension->InterruptReadBuffer;
extension->FirstReadableChar = extension->InterruptReadBuffer;
extension->LastCharSlot = extension->InterruptReadBuffer +
(extension->BufferSize - 1);
extension->CharsInInterruptBuffer = 0;
SERIAL_CLEAR_REFERENCE(
reqContext,
SERIAL_REF_ISR
);
}
return FALSE;
}
VOID
SerialReadTimeout(
IN WDFTIMER Timer
)
/*++
Routine Description:
This routine is used to complete a read because its total
timer has expired.
Arguments:
Return Value:
None.
--*/
{
PSERIAL_DEVICE_EXTENSION extension = NULL;
extension = SerialGetDeviceExtension(WdfTimerGetParentObject(Timer));
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ, ">SerialReadTimeout(%p)\n",
extension);
//
// We set this to indicate to the interval timer
// that the read has completed due to total timeout.
//
// Recall that the interval timer dpc can be lurking in some
// DPC queue.
//
extension->CountOnLastRead = SERIAL_COMPLETE_READ_TOTAL;
SerialTryToCompleteCurrent(
extension,
SerialGrabReadFromIsr,
STATUS_TIMEOUT,
&extension->CurrentReadRequest,
extension->ReadQueue,
extension->ReadRequestIntervalTimer,
extension->ReadRequestTotalTimer,
SerialStartRead,
SerialGetNextRequest,
SERIAL_REF_TOTAL_TIMER
);
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ, "<SerialReadTimeout\n");
}
BOOLEAN
SerialUpdateReadByIsr(
IN WDFINTERRUPT Interrupt,
IN PVOID Context
)
/*++
Routine Description:
This routine is used to update the count of characters read
by the isr since the last interval timer experation.
NOTE: This routine is being called from WdfInterruptSynchronize.
NOTE: This routine assumes that it is called with the cancel spin
lock held.
Arguments:
Context - Really a pointer to the device extension.
Return Value:
Always false.
--*/
{
PSERIAL_DEVICE_EXTENSION extension = Context;
UNREFERENCED_PARAMETER(Interrupt);
extension->CountOnLastRead = extension->ReadByIsr;
extension->ReadByIsr = 0;
return FALSE;
}
VOID
SerialIntervalReadTimeout(
IN WDFTIMER Timer
)
/*++
Routine Description:
This routine is used timeout the request if the time between
characters exceed the interval time. A global is kept in
the device extension that records the count of characters read
the last the last time this routine was invoked (This dpc
will resubmit the timer if the count has changed). If the
count has not changed then this routine will attempt to complete
the request. Note the special case of the last count being zero.
The timer isn't really in effect until the first character is
read.
Arguments:
Return Value:
None.
--*/
{
PSERIAL_DEVICE_EXTENSION extension = NULL;
extension = SerialGetDeviceExtension(WdfTimerGetParentObject(Timer));
//SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ, ">SerialIntervalReadTimeout(%p)\n",
// extension);
if (extension->CountOnLastRead == SERIAL_COMPLETE_READ_TOTAL) {
//
// This value is only set by the total
// timer to indicate that it has fired.
// If so, then we should simply try to complete.
//
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_INIT, "in SERIAL_COMPLETE_READ_TOTAL\n");
SerialTryToCompleteCurrent(
extension,
SerialGrabReadFromIsr,
STATUS_TIMEOUT,
&extension->CurrentReadRequest,
extension->ReadQueue,
extension->ReadRequestIntervalTimer,
extension->ReadRequestTotalTimer,
SerialStartRead,
SerialGetNextRequest,
SERIAL_REF_INT_TIMER
);
} else if (extension->CountOnLastRead == SERIAL_COMPLETE_READ_COMPLETE) {
//
// This value is only set by the regular
// completion routine.
//
// If so, then we should simply try to complete.
//
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_INIT, "in SERIAL_COMPLETE_READ_COMPLETE\n");
SerialTryToCompleteCurrent(
extension,
SerialGrabReadFromIsr,
STATUS_SUCCESS,
&extension->CurrentReadRequest,
extension->ReadQueue,
extension->ReadRequestIntervalTimer,
extension->ReadRequestTotalTimer,
SerialStartRead,
SerialGetNextRequest,
SERIAL_REF_INT_TIMER
);
} else if (extension->CountOnLastRead == SERIAL_COMPLETE_READ_CANCEL) {
//
// This value is only set by the cancel
// read routine.
//
// If so, then we should simply try to complete.
//
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_INIT, "in SERIAL_COMPLETE_READ_CANCEL\n");
SerialTryToCompleteCurrent(
extension,
SerialGrabReadFromIsr,
STATUS_CANCELLED,
&extension->CurrentReadRequest,
extension->ReadQueue,
extension->ReadRequestIntervalTimer,
extension->ReadRequestTotalTimer,
SerialStartRead,
SerialGetNextRequest,
SERIAL_REF_INT_TIMER
);
} else if (extension->CountOnLastRead || extension->ReadByIsr) {
//
// Something has happened since we last came here. We
// check to see if the ISR has read in any more characters.
// If it did then we should update the isr's read count
// and resubmit the timer.
//
if (extension->ReadByIsr) {
WdfInterruptSynchronize(
extension->WdfInterrupt,
SerialUpdateReadByIsr,
extension
);
//
// Save off the "last" time something was read.
// As we come back to this routine we will compare
// the current time to the "last" time. If the
// difference is ever larger then the interval
// requested by the user, then time out the request.
//
KeQuerySystemTime(
&extension->LastReadTime
);
SerialSetTimer(
extension->ReadRequestIntervalTimer,
*extension->IntervalTimeToUse
);
} else {
//
// Take the difference between the current time
// and the last time we had characters and
// see if it is greater then the interval time.
// if it is, then time out the request. Otherwise
// go away again for a while.
//
//
// No characters read in the interval time. Kill
// this read.
//
LARGE_INTEGER currentTime;
KeQuerySystemTime(
¤tTime
);
if ((currentTime.QuadPart - extension->LastReadTime.QuadPart) >=
extension->IntervalTime.QuadPart) {
SerialTryToCompleteCurrent(
extension,
SerialGrabReadFromIsr,
STATUS_TIMEOUT,
&extension->CurrentReadRequest,
extension->ReadQueue,
extension->ReadRequestIntervalTimer,
extension->ReadRequestTotalTimer,
SerialStartRead,
SerialGetNextRequest,
SERIAL_REF_INT_TIMER
);
} else {
SerialSetTimer(
extension->ReadRequestIntervalTimer,
*extension->IntervalTimeToUse
);
}
}
} else {
//
// Timer doesn't really start until the first character.
// So we should simply resubmit ourselves.
//
SerialSetTimer(
extension->ReadRequestIntervalTimer,
*extension->IntervalTimeToUse
);
}
//SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_READ, "<SerialIntervalReadTimeout\n");
}
ULONG
SerialGetCharsFromIntBuffer(
PSERIAL_DEVICE_EXTENSION Extension
)
/*++
Routine Description:
This routine is used to copy any characters out of the interrupt
buffer into the users buffer. It will be reading values that
are updated with the ISR but this is safe since this value is
only decremented by synchronization routines. This routine will
return the number of characters copied so some other routine
can call a synchronization routine to update what is seen at
interrupt level.
Arguments:
Extension - A pointer to the device extension.
Return Value:
The number of characters that were copied into the user
buffer.
--*/
{
//
// This value will be the number of characters that this
// routine returns. It will be the minimum of the number
// of characters currently in the buffer or the number of
// characters required for the read.
//
ULONG numberOfCharsToGet;
//
// This holds the number of characters between the first
// readable character and - the last character we will read or
// the real physical end of the buffer (not the last readable
// character).
//
ULONG firstTryNumberToGet;
PREQUEST_CONTEXT reqContext = SerialGetRequestContext(Extension->CurrentReadRequest);
//
// The minimum of the number of characters we need and
// the number of characters available
//
numberOfCharsToGet = Extension->CharsInInterruptBuffer;
if (numberOfCharsToGet > Extension->NumberNeededForRead) {
numberOfCharsToGet = Extension->NumberNeededForRead;
}
if (numberOfCharsToGet) {
//
// This will hold the number of characters between the
// first available character and the end of the buffer.
// Note that the buffer could wrap around but for the
// purposes of the first copy we don't care about that.
//
firstTryNumberToGet = (ULONG)(Extension->LastCharSlot -
Extension->FirstReadableChar) + 1;
if (firstTryNumberToGet > numberOfCharsToGet) {
//
// The characters don't wrap. Actually they may wrap but
// we don't care for the purposes of this read since the
// characters we need are available before the wrap.
//
RtlMoveMemory(
((PUCHAR)(reqContext->SystemBuffer))
+ (reqContext->Length - Extension->NumberNeededForRead),
Extension->FirstReadableChar,
numberOfCharsToGet
);
Extension->NumberNeededForRead -= numberOfCharsToGet;
//
// We now will move the pointer to the first character after
// what we just copied into the users buffer.
//
// We need to check if the stream of readable characters
// is wrapping around to the beginning of the buffer.
//
// Note that we may have just taken the last characters
// at the end of the buffer.
//
if ((Extension->FirstReadableChar + (numberOfCharsToGet - 1)) ==
Extension->LastCharSlot) {
Extension->FirstReadableChar = Extension->InterruptReadBuffer;
} else {
Extension->FirstReadableChar += numberOfCharsToGet;
}
} else {
//
// The characters do wrap. Get up until the end of the buffer.
//
RtlMoveMemory(
((PUCHAR)(reqContext->SystemBuffer))
+ (reqContext->Length - Extension->NumberNeededForRead),
Extension->FirstReadableChar,
firstTryNumberToGet
);
Extension->NumberNeededForRead -= firstTryNumberToGet;
//
// Now get the rest of the characters from the beginning of the
// buffer.
//
RtlMoveMemory(
((PUCHAR)(reqContext->SystemBuffer))
+ (reqContext->Length - Extension->NumberNeededForRead),
Extension->InterruptReadBuffer,
numberOfCharsToGet - firstTryNumberToGet
);
Extension->FirstReadableChar = Extension->InterruptReadBuffer +
(numberOfCharsToGet -
firstTryNumberToGet);
Extension->NumberNeededForRead -= (numberOfCharsToGet -
firstTryNumberToGet);
}
}
reqContext->Information += numberOfCharsToGet;
return numberOfCharsToGet;
}
BOOLEAN
SerialUpdateInterruptBuffer(
IN WDFINTERRUPT Interrupt,
IN PVOID Context
)
/*++
Routine Description:
This routine is used to update the number of characters that
remain in the interrupt buffer. We need to use this routine
since the count could be updated during the update by execution
of the ISR.
NOTE: This is called by WdfInterruptSynchronize.
Arguments:
Context - Points to a structure that contains a pointer to the
device extension and count of the number of characters
that we previously copied into the users buffer. The
structure actually has a third field that we don't
use in this routine.
Return Value:
Always FALSE.
--*/
{
PSERIAL_UPDATE_CHAR update = Context;
PSERIAL_DEVICE_EXTENSION extension = update->Extension;
UNREFERENCED_PARAMETER(Interrupt);
ASSERT(extension->CharsInInterruptBuffer >= update->CharsCopied);
extension->CharsInInterruptBuffer -= update->CharsCopied;
//
// Deal with flow control if necessary.
//
SerialHandleReducedIntBuffer(extension);
return FALSE;
}
BOOLEAN
SerialUpdateAndSwitchToUser(
IN WDFINTERRUPT Interrupt,
IN PVOID Context
)
/*++
Routine Description:
This routine gets the (hopefully) few characters that
remain in the interrupt buffer after the first time we tried
to get them out. If we still don't have enough characters
to satisfy the read it will then we set things up so that the
ISR uses the user buffer copy into.
This routine is also used to update a count that is maintained
by the ISR to keep track of the number of characters in its buffer.
NOTE: This is called by WdfInterruptSynchronize.
Arguments:
Context - Points to a structure that contains a pointer to the
device extension, a count of the number of characters
that we previously copied into the users buffer, and
a boolean that we will set that defines whether we
switched the ISR to copy into the users buffer.
Return Value:
Always FALSE.
--*/
{
PSERIAL_UPDATE_CHAR updateChar = Context;
PSERIAL_DEVICE_EXTENSION extension = updateChar->Extension;
PREQUEST_CONTEXT reqContext;
UNREFERENCED_PARAMETER(Interrupt);
reqContext = SerialGetRequestContext(extension->CurrentReadRequest);
SerialUpdateInterruptBuffer(extension->WdfInterrupt, Context);
//
// There are more characters to get to satisfy this read.
// Copy any characters that have arrived since we got
// the last batch.
//
updateChar->CharsCopied = SerialGetCharsFromIntBuffer(extension);
SerialUpdateInterruptBuffer(extension->WdfInterrupt, Context);
//
// No more new characters will be "received" until we exit
// this routine. We again check to make sure that we
// haven't satisfied this read, and if we haven't we set things
// up so that the ISR copies into the user buffer.
//
if (extension->NumberNeededForRead) {
//
// We shouldn't be switching unless there are no
// characters left.
//
ASSERT(!extension->CharsInInterruptBuffer);
//
// We use the following to values to do inteval timing.
//
// CountOnLastRead is mostly used to simply prevent
// the interval timer from timing out before any characters
// are read. (Interval timing should only be effective
// after the first character is read.)
//
// After the first time the interval timer fires and
// characters have be read we will simply update with
// the value of ReadByIsr and then set ReadByIsr to zero.
// (We do that in a synchronization routine.
//
// If the interval timer dpc routine ever encounters
// ReadByIsr == 0 when CountOnLastRead is non-zero it
// will timeout the read.
//
// (Note that we have a special case of CountOnLastRead
// < 0. This is done by the read completion routines other
// than the total timeout dpc to indicate that the total
// timeout has expired.)
//
extension->CountOnLastRead = (LONG)reqContext->Information;
extension->ReadByIsr = 0;
//
// By compareing the read buffer base address to the
// the base address of the interrupt buffer the ISR
// can determine whether we are using the interrupt
// buffer or the user buffer.
//
extension->ReadBufferBase = reqContext->SystemBuffer;
//
// The current char slot is after the last copied in
// character. We know there is always room since we
// we wouldn't have gotten here if there wasn't.
//
extension->CurrentCharSlot = extension->ReadBufferBase +
reqContext->Information;
//
// The last position that a character can go is on the
// last byte of user buffer. While the actual allocated
// buffer space may be bigger, we know that there is at
// least as much as the read length.
//
extension->LastCharSlot = extension->ReadBufferBase +
(reqContext->Length - 1);
#if 0 // We set the cancel before calling this routine in StartRead
//
// Mark the request as being in a cancelable state.
//
IoSetCancelRoutine(
extension->CurrentReadIrp,
SerialCancelCurrentRead
);
SERIAL_SET_REFERENCE(
reqContext,
SERIAL_REF_CANCEL
);
#endif
//
// Increment the reference count twice.
//
// Once for the Isr owning the request and once
// because the cancel routine has a reference
// to it.
//
SERIAL_SET_REFERENCE(
reqContext,
SERIAL_REF_ISR
);
updateChar->Completed = FALSE;
} else {
updateChar->Completed = TRUE;
}
return FALSE;
}
//
// We use this structure only to communicate to the synchronization
// routine when we are switching to the resized buffer.
//
typedef struct _SERIAL_RESIZE_PARAMS {
PSERIAL_DEVICE_EXTENSION Extension;
PUCHAR OldBuffer;
PUCHAR NewBuffer;
ULONG NewBufferSize;
ULONG NumberMoved;
} SERIAL_RESIZE_PARAMS,*PSERIAL_RESIZE_PARAMS;
NTSTATUS
SerialResizeBuffer(
IN PSERIAL_DEVICE_EXTENSION Extension
)
/*++
Routine Description:
This routine will process the resize buffer request.
If size requested for the RX buffer is smaller than
the current buffer then we will simply return
STATUS_SUCCESS. (We don't want to make buffers smaller.
If we did that then we all of a sudden have "overrun"
problems to deal with as well as flow control to deal
with - very painful.) We ignore the TX buffer size
request since we don't use a TX buffer.
Arguments:
Extension - Pointer to the device extension for the port.
Return Value:
STATUS_SUCCESS if everything worked out ok.
STATUS_INSUFFICIENT_RESOURCES if we couldn't allocate the
memory for the buffer.
--*/
{
PREQUEST_CONTEXT reqContext = SerialGetRequestContext(Extension->CurrentReadRequest);
PSERIAL_QUEUE_SIZE rs = reqContext->SystemBuffer;
PVOID newBuffer = reqContext->Type3InputBuffer;
reqContext->Type3InputBuffer = NULL;
reqContext->Information = 0L;
reqContext->Status = STATUS_SUCCESS;
if (rs->InSize <= Extension->BufferSize) {
//
// Nothing to do. We don't make buffers smaller. Just
// agree with the user. We must deallocate the memory
// that was already allocated in the ioctl dispatch routine.
//
ExFreePool(newBuffer);
} else {
SERIAL_RESIZE_PARAMS rp;
//
// Hmmm, looks like we actually have to go
// through with this. We need to move all the
// data that is in the current buffer into this
// new buffer. We'll do this in two steps.
//
// First we go up to dispatch level and try to
// move as much as we can without stopping the
// ISR from running. We go up to dispatch level
// by acquiring the control lock. We do it at
// dispatch using the control lock so that:
//
// 1) We can't be context switched in the middle
// of the move. Our pointers into the buffer
// could be *VERY* stale by the time we got back.
//
// 2) We use the control lock since we don't want
// some pesky purge request to come along while
// we are trying to move.
//
// After the move, but while we still hold the control
// lock, we synch with the ISR and get those last
// (hopefully) few characters that have come in since
// we started the copy. We switch all of our pointers,
// counters, and such to point to this new buffer. NOTE:
// we need to be careful. If the buffer we were using
// was not the default one created when we initialized
// the device (i.e. it was created via a previous WDFREQUEST of
// this type), we should deallocate it.
//
rp.Extension = Extension;
rp.OldBuffer = Extension->InterruptReadBuffer;
rp.NewBuffer = newBuffer;
rp.NewBufferSize = rs->InSize;
rp.NumberMoved = SerialMoveToNewIntBuffer(
Extension,
newBuffer
);
WdfInterruptSynchronize(
Extension->WdfInterrupt,
SerialUpdateAndSwitchToNew,
&rp
);
//
// Free up the memory that the old buffer consumed.
//
ExFreePool(rp.OldBuffer);
}
return STATUS_SUCCESS;
}
ULONG
SerialMoveToNewIntBuffer(
PSERIAL_DEVICE_EXTENSION Extension,
PUCHAR NewBuffer
)
/*++
Routine Description:
This routine is used to copy any characters out of the interrupt
buffer into the "new" buffer. It will be reading values that
are updated with the ISR but this is safe since this value is
only decremented by synchronization routines. This routine will
return the number of characters copied so some other routine
can call a synchronization routine to update what is seen at
interrupt level.
Arguments:
Extension - A pointer to the device extension.
NewBuffer - Where the characters are to be move to.
Return Value:
The number of characters that were copied into the user
buffer.
--*/
{
ULONG numberOfCharsMoved = Extension->CharsInInterruptBuffer;
if (numberOfCharsMoved) {
//
// This holds the number of characters between the first
// readable character and the last character we will read or
// the real physical end of the buffer (not the last readable
// character).
//
ULONG firstTryNumberToGet = (ULONG)(Extension->LastCharSlot -
Extension->FirstReadableChar) + 1;
if (firstTryNumberToGet >= numberOfCharsMoved) {
//
// The characters don't wrap.
//
RtlMoveMemory(
NewBuffer,
Extension->FirstReadableChar,
numberOfCharsMoved
);
if ((Extension->FirstReadableChar+(numberOfCharsMoved-1)) ==
Extension->LastCharSlot) {
Extension->FirstReadableChar = Extension->InterruptReadBuffer;
} else {
Extension->FirstReadableChar += numberOfCharsMoved;
}
} else {
//
// The characters do wrap. Get up until the end of the buffer.
//
RtlMoveMemory(
NewBuffer,
Extension->FirstReadableChar,
firstTryNumberToGet
);
//
// Now get the rest of the characters from the beginning of the
// buffer.
//
RtlMoveMemory(
NewBuffer+firstTryNumberToGet,
Extension->InterruptReadBuffer,
numberOfCharsMoved - firstTryNumberToGet
);
Extension->FirstReadableChar = Extension->InterruptReadBuffer +
numberOfCharsMoved - firstTryNumberToGet;
}
}
return numberOfCharsMoved;
}
BOOLEAN
SerialUpdateAndSwitchToNew(
IN WDFINTERRUPT Interrupt,
IN PVOID Context
)
/*++
Routine Description:
This routine gets the (hopefully) few characters that
remain in the interrupt buffer after the first time we tried
to get them out.
NOTE: This is called by WdfInterruptSynchronize.
Arguments:
Context - Points to a structure that contains a pointer to the
device extension, a pointer to the buffer we are moving
to, and a count of the number of characters
that we previously copied into the new buffer, and the
actual size of the new buffer.
Return Value:
Always FALSE.
--*/
{
PSERIAL_RESIZE_PARAMS params = Context;
PSERIAL_DEVICE_EXTENSION extension = params->Extension;
ULONG tempCharsInInterruptBuffer = extension->CharsInInterruptBuffer;
UNREFERENCED_PARAMETER(Interrupt);
ASSERT(extension->CharsInInterruptBuffer >= params->NumberMoved);
//
// We temporarily reduce the chars in interrupt buffer to
// "fool" the move routine. We will restore it after the
// move.
//
extension->CharsInInterruptBuffer -= params->NumberMoved;
if (extension->CharsInInterruptBuffer) {
SerialMoveToNewIntBuffer(
extension,
params->NewBuffer + params->NumberMoved
);
}
extension->CharsInInterruptBuffer = tempCharsInInterruptBuffer;
extension->LastCharSlot = params->NewBuffer + (params->NewBufferSize - 1);
extension->FirstReadableChar = params->NewBuffer;
extension->ReadBufferBase = params->NewBuffer;
extension->InterruptReadBuffer = params->NewBuffer;
extension->BufferSize = params->NewBufferSize;
//
// We *KNOW* that the new interrupt buffer is larger than the
// old buffer. We don't need to worry about it being full.
//
extension->CurrentCharSlot = extension->InterruptReadBuffer +
extension->CharsInInterruptBuffer;
//
// We set up the default xon/xoff limits.
//
extension->HandFlow.XoffLimit = extension->BufferSize >> 3;
extension->HandFlow.XonLimit = extension->BufferSize >> 1;
extension->WmiCommData.XoffXmitThreshold = extension->HandFlow.XoffLimit;
extension->WmiCommData.XonXmitThreshold = extension->HandFlow.XonLimit;
extension->BufferSizePt8 = ((3*(extension->BufferSize>>2))+
(extension->BufferSize>>4));
//
// Since we (essentially) reduced the percentage of the interrupt
// buffer being full, we need to handle any flow of control.
//
SerialHandleReducedIntBuffer(extension);
return FALSE;
}
|