Lines Matching refs:as

16 The multi-process example applications are built in the same way as other sample applications,
17 and as documented in the *DPDK Getting Started Guide*.
40 passing at least two cores in the coremask/corelist, as follows:
49 The process should start successfully and display a command prompt as follows:
82 When running a secondary process such as that shown above, the proc-type parameter can again be spe…
83 However, omitting the parameter altogether will cause the process to try and start as a primary rat…
86 the process starts up, displaying largely similar status messages to the primary instance as it ini…
113 since the secondary process cannot create objects in memory as it cannot reserve memory zones,
114 and the secondary process then uses lookup functions to attach to these objects as it starts up.
128 Note, however, that the named ring structure used as send_ring in the primary process is the recv_r…
144 we refer to this as symmetric multi-processing, to differentiate it from asymmetric multi- processi…
145 such as a client-server mode of operation seen in the next example,
164 As with the simple_mp example, the first instance of the symmetric_mp process must be run as the pr…
178 and the first two must be the same as those passed to the primary instance, or errors result.
182 the following commands can be used (assuming run as root):
193 …In the above example, the process type can be explicitly specified as primary or secondary, rather…
202 Instead, that process can be restarted as a secondary,
205as auto-detection will detect no primary processes running and therefore attempt to re-initialize …
212 Thereafter, the initialization done depends on whether the process is configured as a primary or se…
217 therefore will be accessible by the secondary process as it initializes.
264 The server process must be run initially as the primary process to set up all memory structures for…
293 as there is no support in the server application for it to run as a secondary process.
299 …rk port and data structure initialization much as the symmetric multi-process application does whe…
302 as is done for the symmetric multi-process application, and therefore eliminates mismatched paramet…
304 In the same way that the server process is designed to be run as a primary process instance only,
305 the client processes are designed to be run as secondary instances only.
309 which will, as in the symmetric multi-process example,
314 On the client side, the packets are read from the rings in as big of bursts as possible, then route…
320 so as to allow the sending of multiple packets in a single burst to improve efficiency.