Lines Matching full:napi
5 Test napi threaded states.
15 napi = nl.napi_get({'id': napi_id})
16 ksft_eq(napi['threaded'], 'enabled')
17 ksft_ne(napi.get('pid'), None)
21 napi = nl.napi_get({'id': napi_id})
22 ksft_eq(napi['threaded'], 'disabled')
23 ksft_eq(napi.get('pid'), None)
44 Test that threaded state (in the persistent NAPI config) gets updated
45 even when NAPI with given ID is not allocated at the time.
56 for napi in napis:
57 ksft_eq(napi['threaded'], 'disabled')
58 ksft_eq(napi.get('pid'), None)
65 for napi in napis:
66 ksft_eq(napi['threaded'], 'enabled')
67 ksft_ne(napi.get('pid'), None)
72 Test that when napi threaded is enabled at device level and
73 then disabled at napi level for one napi, the threaded state
88 # check napi threaded is set for both napis
103 Test that when napi threaded is enabled at device level,
104 the napi threaded state is preserved after a change in
119 # check napi threaded is set for both napis
126 # check napi threaded is set for both napis