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
116
117
118
119
120
121
122
123
124
125
127
133
134
135
141
142
143
144
145
146
147
148
150
151
152
153
154
155
156
157
158
159
160
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
189
190
191
192
193
194
195
196
197
198
199
200
207
208
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
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
263
267
271
272
273
274
275
276
278
284
285
286
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
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
391
392
393
394
395
396
397
398
399
400
401
402
409
410
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
458
459
461
467
468
469
475
476
477
478
479
480
482
483
484
485
487
493
494
495
501
502
503
504
505
506
507
508
509
510
511
512
513
517
518
519
520
521
522
...
...
...
#define FX_SOURCE_CODE
#include "fx_api.h"
#include "fx_system.h"
#include "fx_utility.h"
...
...
UINT _fx_utility_logical_sector_flush(FX_MEDIA *media_ptr, ULONG64 starting_sector, ULONG64 sectors, UINT invalidate)
{
#ifndef FX_DISABLE_CACHE
FX_CACHED_SECTOR *cache_entry;
UINT cache_size;
UINT i, bit_set, use_starting_sector;
ULONG index;
ULONG remaining_valid;
ULONG remaining_dirty;
ULONG64 ending_sector;
ULONG valid_bit_map;
FX_UTILITY_LOGICAL_SECTOR_FLUSH_EXTENSION
ending_sector = starting_sector + sectors - 1;
remaining_dirty = media_ptr -> fx_media_sector_cache_dirty_count;
FX_TRACE_IN_LINE_INSERT(FX_TRACE_INTERNAL_MEDIA_FLUSH, media_ptr, media_ptr -> fx_media_sector_cache_dirty_count, 0, 0, FX_TRACE_INTERNAL_EVENTS, 0, 0)
if (media_ptr -> fx_media_sector_cache_hashed == FX_FALSE)
{
/* ... */
cache_size = media_ptr -> fx_media_sector_cache_size;
cache_entry = media_ptr -> fx_media_sector_cache_list_ptr;
while ((cache_size--) && (cache_entry -> fx_cached_sector))
{
/* ... */
if ((remaining_dirty == 0) && (invalidate == FX_FALSE))
{
break;
}if ((remaining_dirty == 0) && (invalidate == FX_FALSE)) { ... }
if (sectors == 0)
{
break;
}if (sectors == 0) { ... }
if ((cache_entry -> fx_cached_sector_valid) &&
(cache_entry -> fx_cached_sector >= starting_sector) &&
(cache_entry -> fx_cached_sector <= ending_sector))
{
/* ... */
if (cache_entry -> fx_cached_sector_buffer_dirty)
{
if (media_ptr -> fx_media_driver_write_protect == FX_FALSE)
{
#ifndef FX_MEDIA_STATISTICS_DISABLE
media_ptr -> fx_media_driver_write_requests++;/* ... */
#endif
media_ptr -> fx_media_driver_request = FX_DRIVER_WRITE;
media_ptr -> fx_media_driver_status = FX_IO_ERROR;
media_ptr -> fx_media_driver_buffer = cache_entry -> fx_cached_sector_memory_buffer;
#ifdef FX_DRIVER_USE_64BIT_LBA
media_ptr -> fx_media_driver_logical_sector = cache_entry -> fx_cached_sector;
#else
media_ptr -> fx_media_driver_logical_sector = (ULONG)cache_entry -> fx_cached_sector;
#endif
media_ptr -> fx_media_driver_sectors = 1;
media_ptr -> fx_media_driver_sector_type = cache_entry -> fx_cached_sector_type;
#ifndef FX_FAULT_TOLERANT
if (cache_entry -> fx_cached_sector_type != FX_DATA_SECTOR)
{
/* ... */
media_ptr -> fx_media_driver_system_write = FX_TRUE;
}if (cache_entry -> fx_cached_sector_type != FX_DATA_SECTOR) { ... }
/* ... */#endif
FX_TRACE_IN_LINE_INSERT(FX_TRACE_INTERNAL_IO_DRIVER_WRITE, media_ptr, cache_entry -> fx_cached_sector, 1, cache_entry -> fx_cached_sector_memory_buffer, FX_TRACE_INTERNAL_EVENTS, 0, 0)
(media_ptr -> fx_media_driver_entry) (media_ptr);
media_ptr -> fx_media_driver_system_write = FX_FALSE;
if (media_ptr -> fx_media_driver_status)
{
/* ... */
return(media_ptr -> fx_media_driver_status);
}if (media_ptr -> fx_media_driver_status) { ... }
/* ... */
cache_entry -> fx_cached_sector_buffer_dirty = FX_FALSE;
media_ptr -> fx_media_sector_cache_dirty_count--;
remaining_dirty--;
}if (media_ptr -> fx_media_driver_write_protect == FX_FALSE) { ... }
}if (cache_entry -> fx_cached_sector_buffer_dirty) { ... }
if (invalidate)
{
cache_entry -> fx_cached_sector_valid = FX_FALSE;
cache_entry -> fx_cached_sector = (~(ULONG64)0);
/* ... */
if (cache_entry -> fx_cached_sector_buffer_dirty)
{
cache_entry -> fx_cached_sector_buffer_dirty = FX_FALSE;
media_ptr -> fx_media_sector_cache_dirty_count--;
remaining_dirty--;
}if (cache_entry -> fx_cached_sector_buffer_dirty) { ... }
}if (invalidate) { ... }
sectors--;
}if ((cache_entry -> fx_cached_sector_valid) && (cache_entry -> fx_cached_sector >= starting_sector) && (cache_entry -> fx_cached_sector <= ending_sector)) { ... }
cache_entry = cache_entry -> fx_cached_sector_next_used;
}while ((cache_size--) && (cache_entry -> fx_cached_sector)) { ... }
}if (media_ptr -> fx_media_sector_cache_hashed == FX_FALSE) { ... }
else
{
cache_size = media_ptr -> fx_media_sector_cache_size;
bit_set = 0;
valid_bit_map = media_ptr -> fx_media_sector_cache_hashed_sector_valid;
/* ... */
if (sectors < 32)
{
use_starting_sector = FX_TRUE;
}if (sectors < 32) { ... }
else
{
use_starting_sector = FX_FALSE;
}else { ... }
while (valid_bit_map)
{
/* ... */
if ((remaining_dirty == 0) && (invalidate == FX_FALSE))
{
break;
}if ((remaining_dirty == 0) && (invalidate == FX_FALSE)) { ... }
if ((sectors == 0) || (starting_sector > ending_sector))
{
break;
}if ((sectors == 0) || (starting_sector > ending_sector)) { ... }
if (use_starting_sector)
{
index = (ULONG)(starting_sector & media_ptr -> fx_media_sector_cache_hash_mask);
bit_set = (index % 32);
index = (bit_set * FX_SECTOR_CACHE_DEPTH);
}if (use_starting_sector) { ... }
else
{
while ((valid_bit_map & 1) == 0)
{
valid_bit_map = valid_bit_map >> 1;
bit_set++;
}while ((valid_bit_map & 1) == 0) { ... }
index = (bit_set * FX_SECTOR_CACHE_DEPTH);
}else { ... }
/* ... */
remaining_valid = 0;
do
{
cache_entry = &(media_ptr -> fx_media_sector_cache[index]);
for (i = 0; i < 4; i++)
{
if ((cache_entry -> fx_cached_sector_valid) &&
(cache_entry -> fx_cached_sector >= starting_sector) &&
(cache_entry -> fx_cached_sector <= ending_sector))
{
if (cache_entry -> fx_cached_sector_buffer_dirty)
{
if (media_ptr -> fx_media_driver_write_protect == FX_FALSE)
{
#ifndef FX_MEDIA_STATISTICS_DISABLE
media_ptr -> fx_media_driver_write_requests++;/* ... */
#endif
media_ptr -> fx_media_driver_request = FX_DRIVER_WRITE;
media_ptr -> fx_media_driver_status = FX_IO_ERROR;
media_ptr -> fx_media_driver_buffer = cache_entry -> fx_cached_sector_memory_buffer;
#ifdef FX_DRIVER_USE_64BIT_LBA
media_ptr -> fx_media_driver_logical_sector = cache_entry -> fx_cached_sector;
#else
media_ptr -> fx_media_driver_logical_sector = (ULONG)cache_entry -> fx_cached_sector;
#endif
media_ptr -> fx_media_driver_sectors = 1;
media_ptr -> fx_media_driver_sector_type = cache_entry -> fx_cached_sector_type;
#ifndef FX_FAULT_TOLERANT
if (cache_entry -> fx_cached_sector_type != FX_DATA_SECTOR)
{
/* ... */
media_ptr -> fx_media_driver_system_write = FX_TRUE;
}if (cache_entry -> fx_cached_sector_type != FX_DATA_SECTOR) { ... }
/* ... */#endif
FX_TRACE_IN_LINE_INSERT(FX_TRACE_INTERNAL_IO_DRIVER_WRITE, media_ptr, cache_entry -> fx_cached_sector, 1, cache_entry -> fx_cached_sector_memory_buffer, FX_TRACE_INTERNAL_EVENTS, 0, 0)
(media_ptr -> fx_media_driver_entry) (media_ptr);
media_ptr -> fx_media_driver_system_write = FX_FALSE;
if (media_ptr -> fx_media_driver_status)
{
/* ... */
return(media_ptr -> fx_media_driver_status);
}if (media_ptr -> fx_media_driver_status) { ... }
/* ... */
cache_entry -> fx_cached_sector_buffer_dirty = FX_FALSE;
media_ptr -> fx_media_sector_cache_dirty_count--;
remaining_dirty--;
}if (media_ptr -> fx_media_driver_write_protect == FX_FALSE) { ... }
}if (cache_entry -> fx_cached_sector_buffer_dirty) { ... }
if (invalidate)
{
cache_entry -> fx_cached_sector_valid = FX_FALSE;
cache_entry -> fx_cached_sector = (~(ULONG64)0);
/* ... */
if (cache_entry -> fx_cached_sector_buffer_dirty)
{
cache_entry -> fx_cached_sector_buffer_dirty = FX_FALSE;
media_ptr -> fx_media_sector_cache_dirty_count--;
remaining_dirty--;
}if (cache_entry -> fx_cached_sector_buffer_dirty) { ... }
}if (invalidate) { ... }
sectors--;
}if ((cache_entry -> fx_cached_sector_valid) && (cache_entry -> fx_cached_sector >= starting_sector) && (cache_entry -> fx_cached_sector <= ending_sector)) { ... }
else
{
if (cache_entry -> fx_cached_sector_valid)
{
remaining_valid++;
}if (cache_entry -> fx_cached_sector_valid) { ... }
}else { ... }
/* ... */
if ((remaining_dirty == 0) && (invalidate == FX_FALSE))
{
break;
}if ((remaining_dirty == 0) && (invalidate == FX_FALSE)) { ... }
if ((sectors == 0) && (invalidate == FX_FALSE))
{
break;
}if ((sectors == 0) && (invalidate == FX_FALSE)) { ... }
cache_entry++;
}for (i = 0; i < 4; i++) { ... }
/* ... */
index = index + (32 * FX_SECTOR_CACHE_DEPTH);
...} while (index < cache_size);
/* ... */
if ((invalidate) && (remaining_valid == 0))
{
media_ptr -> fx_media_sector_cache_hashed_sector_valid &= ~(((ULONG)1) << bit_set);
}if ((invalidate) && (remaining_valid == 0)) { ... }
if (use_starting_sector)
{
starting_sector++;
}if (use_starting_sector) { ... }
else
{
valid_bit_map = valid_bit_map >> 1;
bit_set++;
}else { ... }
}while (valid_bit_map) { ... }
}else { ... }
/* ... */#else
FX_PARAMETER_NOT_USED(media_ptr);
FX_PARAMETER_NOT_USED(starting_sector);
FX_PARAMETER_NOT_USED(sectors);
FX_PARAMETER_NOT_USED(invalidate);/* ... */
#endif
return(FX_SUCCESS);
}{ ... }