blob: 904e54b05e86b1b5598ff4dcd65312bb281b6eb6 (
plain)
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
|
/*++
Copyright (c) Microsoft Corporation
Module Name:
error.c
Abstract:
This module contains the code that is very specific to error
operations in the serial driver
Environment:
Kernel mode
--*/
#include "precomp.h"
#if defined(EVENT_TRACING)
#include "error.tmh"
#endif
VOID
SerialCommError(
IN WDFDPC Dpc
)
/*++
Routine Description:
This routine is invoked at dpc level to in response to
a comm error. All comm errors complete all read and writes
Arguments:
Return Value:
None.
--*/
{
PSERIAL_DEVICE_EXTENSION Extension = NULL;
Extension = SerialGetDeviceExtension(WdfDpcGetParentObject(Dpc));
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_INIT,
">SerialCommError(%p)\n", Extension);
SerialFlushRequests(
Extension->WriteQueue,
&Extension->CurrentWriteRequest
);
SerialFlushRequests(
Extension->ReadQueue,
&Extension->CurrentReadRequest
);
SerialDbgPrintEx(TRACE_LEVEL_INFORMATION, DBG_INIT,
"<SerialCommError\n");
}
|