1
10
13
14
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "tx_thread.h"
#include "nx_ip.h"
#include "nx_packet.h"
...
...
UINT _nx_ip_raw_packet_disable(NX_IP *ip_ptr)
{
TX_INTERRUPT_SAVE_AREA
NX_PACKET *current_packet;
NX_PACKET *next_packet;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_IP_RAW_PACKET_DISABLE, ip_ptr, 0, 0, 0, NX_TRACE_IP_EVENTS, 0, 0);
tx_mutex_get(&(ip_ptr -> nx_ip_protection), TX_WAIT_FOREVER);
TX_DISABLE
ip_ptr -> nx_ip_raw_ip_processing = NX_NULL;
next_packet = ip_ptr -> nx_ip_raw_received_packet_head;
ip_ptr -> nx_ip_raw_received_packet_head = NX_NULL;
ip_ptr -> nx_ip_raw_received_packet_tail = NX_NULL;
ip_ptr -> nx_ip_raw_received_packet_count = 0;
_tx_thread_preempt_disable++;
TX_RESTORE
while (next_packet)
{
current_packet = next_packet;
next_packet = next_packet -> nx_packet_queue_next;
_nx_packet_release(current_packet);
}while (next_packet) { ... }
while (ip_ptr -> nx_ip_raw_packet_suspension_list)
{
_nx_ip_raw_packet_cleanup(ip_ptr -> nx_ip_raw_packet_suspension_list NX_CLEANUP_ARGUMENT);
}while (ip_ptr -> nx_ip_raw_packet_suspension_list) { ... }
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
TX_DISABLE
_tx_thread_preempt_disable--;
TX_RESTORE
_tx_thread_system_preempt_check();
return(NX_SUCCESS);
}{ ... }