Lines Matching refs:of
10 (essentially checksum calculation from IP Header Validation) of the Internet protocol
13 provides an indication of the potential performance of a microprocessor in an
16 At the beginning of the application the array (size defined in SIZE_OF_QUEUE)
17 of packet headers is initialized. Each header contains some random data of size
19 in appropriate field defined by CRC_BYTE_1 and CRC_BYTE_2. The contents of
25 |Version| IHL |Type of Service| Total Length |
39 in QUEUE_NUM). After that for each pair of "sender"/"receiver" queues one thread
43 of them first pick the header from "sender" queue, calculates crc and if
47 As soon as all headers in each pair of queues are moved from "sender" to
48 "receiver" queue the execution of threads(related to pair) are terminated.
50 By changing the value of CONFIG_MP_MAX_NUM_CPUS on SMP systems, you
55 number of parallel executed pairs of queues(``QUEUE_NUM``),
56 the number of threads per pair of queues(``THREADS_NUM``),
57 the number of headers in queue (``SIZE_OF_QUEUE``), and
58 size of header in bytes (``SIZE_OF_HEADER``).
79 Each of 2 parallel queues is processed by 3 threads on 2 cores and contain 5000 packet headers.