Home
last modified time | relevance | path

Searched refs:service (Results 1 – 25 of 129) sorted by relevance

123456

/f-stack/freebsd/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_core.c171 service->state->id, service->localport, in vchiq_set_service_state()
310 if (service && service->ref_count) { in unlock_service()
324 if (service && service->userdata_term) in unlock_service()
336 id = service ? service->client_id : 0; in vchiq_get_client_id()
356 return service ? service->base.fourcc : 0; in vchiq_get_service_fourcc()
403 service->state->id, service->handle); in make_service_callback()
1129 (service && service->closing)) { in release_slot()
1178 service->state->id, service->localport, in notify_bulks()
1266 request_poll(service->state, service, in notify_bulks()
1833 &service->bulk_tx : &service->bulk_rx; in parse_rx_slots()
[all …]
H A Dvchiq_shim.c553 service->callback(service->callback_param, in shim_callback()
560 service->callback(service->callback_param, in shim_callback()
565 service->callback(service->callback_param, in shim_callback()
570 service->callback(service->callback_param, in shim_callback()
579 service->callback(service->callback_param, in shim_callback()
585 service->callback(service->callback_param, in shim_callback()
608 if (service) { in service_alloc()
623 if (service) { in service_free()
762 if(service) in vchi_get_peer_version()
835 if (service) in vchi_service_use()
[all …]
H A Dvchiq_if.h47 #define VCHIQ_GET_SERVICE_USERDATA(service) vchiq_get_service_userdata(service) argument
48 #define VCHIQ_GET_SERVICE_FOURCC(service) vchiq_get_service_fourcc(service) argument
140 extern VCHIQ_STATUS_T vchiq_use_service(VCHIQ_SERVICE_HANDLE_T service);
142 VCHIQ_SERVICE_HANDLE_T service);
145 extern VCHIQ_STATUS_T vchiq_queue_message(VCHIQ_SERVICE_HANDLE_T service,
154 VCHIQ_SERVICE_HANDLE_T service, VCHI_MEM_HANDLE_T handle,
157 VCHIQ_SERVICE_HANDLE_T service, VCHI_MEM_HANDLE_T handle,
162 extern VCHIQ_STATUS_T vchiq_bulk_receive(VCHIQ_SERVICE_HANDLE_T service,
171 extern int vchiq_get_client_id(VCHIQ_SERVICE_HANDLE_T service);
172 extern void *vchiq_get_service_userdata(VCHIQ_SERVICE_HANDLE_T service);
[all …]
H A Dvchiq_arm.c465 service = NULL; in vchiq_ioctl()
536 user_service->service = service; in vchiq_ioctl()
1123 if (service) in vchiq_ioctl()
2516 if (service) { in vchiq_release_internal()
2591 return vchiq_release_internal(service->state, service); in vchiq_release_service_internal()
2612 if (service) { in vchiq_use_service_no_resume()
2613 ret = vchiq_use_internal(service->state, service, in vchiq_use_service_no_resume()
2626 ret = vchiq_use_internal(service->state, service, in vchiq_use_service()
2639 ret = vchiq_release_internal(service->state, service); in vchiq_release_service()
2733 if (!service || !service->state) in vchiq_check_service()
[all …]
H A Dvchiq_kern_lib.c230 VCHIQ_SERVICE_T *service = NULL; in vchiq_add_service() local
242 service = vchiq_add_service_internal( in vchiq_add_service()
249 if (service) { in vchiq_add_service()
250 *phandle = service->handle; in vchiq_add_service()
275 VCHIQ_SERVICE_T *service = NULL; in vchiq_open_service() local
291 if (service) { in vchiq_open_service()
292 *phandle = service->handle; in vchiq_open_service()
384 VCHIQ_SERVICE_T *service; in vchiq_blocking_bulk_transfer() local
390 if (!service) in vchiq_blocking_bulk_transfer()
393 instance = service->instance; in vchiq_blocking_bulk_transfer()
[all …]
H A Dvchiq_core.h158 #define VCHIQ_SERVICE_STATS_INC(service, stat) (service->stats. stat++) argument
159 #define VCHIQ_SERVICE_STATS_ADD(service, stat, addend) \ argument
160 (service->stats. stat += addend)
163 #define VCHIQ_SERVICE_STATS_INC(service, stat) ((void)0) argument
555 vchiq_free_service_internal(VCHIQ_SERVICE_T *service);
619 lock_service(VCHIQ_SERVICE_T *service);
622 unlock_service(VCHIQ_SERVICE_T *service);
666 VCHIQ_SERVICE_T *service);
669 vchiq_use_service_internal(VCHIQ_SERVICE_T *service);
672 vchiq_release_service_internal(VCHIQ_SERVICE_T *service);
[all …]
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dservice_cores.rst7 The service cores sample application demonstrates the service cores capabilities
9 any DPDK component to register a service. A service is a work item or task, that
32 pass a service core-mask as an EAL argument at startup time.
44 service core counts and mappings at runtime.
58 struct rte_service_spec service = {
71 /* Collect statistics for the service */
88 These are the functions to start a service core, and have it run a service:
92 /* the lcore ID to use as a service core */
103 /* map a service to the service core, causing it to run the service */
115 Note that it is not allowed to remove a service core if the service is running,
[all …]
/f-stack/dpdk/app/test/
H A Dtest_service_cores.c146 service.callback = dummy_cb; in dummy_register()
151 snprintf(service.name, sizeof(service.name), DUMMY_SERVICE_NAME); in dummy_register()
182 service.callback = dummy_cb; in service_get_by_name()
186 snprintf(service.name, sizeof(service.name), DUMMY_SERVICE_NAME); in service_get_by_name()
215 service.callback = dummy_cb; in service_probe_capability()
216 snprintf(service.name, sizeof(service.name), DUMMY_SERVICE_NAME); in service_probe_capability()
231 snprintf(service.name, sizeof(service.name), DUMMY_SERVICE_NAME); in service_probe_capability()
263 snprintf(service.name, sizeof(service.name), DUMMY_SERVICE_NAME); in service_attr_get()
352 snprintf(service.name, sizeof(service.name), DUMMY_SERVICE_NAME); in service_lcore_attr_get()
636 snprintf(service.name, sizeof(service.name), MT_SAFE_SERVICE_NAME); in service_threaded_test()
[all …]
/f-stack/dpdk/doc/guides/prog_guide/
H A Dservice_cores.rst7 DPDK has a concept known as service cores, which enables a dynamic way of
13 require CPU cycles to operate) and service cores (DPDK lcores, tasked with
15 between service cores and services can be configured to abstract away the
32 in the service coremask the cores become service-cores instead of DPDK
38 Each registered service can be individually mapped to a service core, or set of
39 service cores. Enabling a service on a particular core means that the lcore in
40 question will run the service. Disabling that core on the service stops the
41 lcore in question from running the service.
44 service core, and map N workloads to M number of service cores. Each service
46 function to run the service.
[all …]
H A Devent_ethernet_rx_adapter.rst33 the service function.
41 a service function.
61 service function and needs to create an event port for it. The callback is
75 adapter uses a service core function.
117 a service core to the service function as show below.
132 service function if one exists.
165 service function dequeues the port id and queue id from the ring buffer,
169 CPUs as the lcores of the Rx adapter service function, if the Rx adapter
170 service function has not been mapped to any lcores, the interrupt thread
178 capabilities flags for a particular ethernet device, the service function
[all …]
H A Devent_ethernet_tx_adapter.rst18 which runs as a rte_service function. The service function dequeues events
37 a service function.
42 The callback function is invoked if the adapter needs to use a service function
79 query this flag to determine if a service function is associated with the
80 adapter and retrieve its service identifier using the
94 If the adapter uses a service function as described in the previous section, the
103 If the adapter uses a service function, the application can assign
104 a service core to the service function as shown below.
116 and the ``rte_service_run_state_set()`` to enable the service function if one exists.
130 If the adapter uses a service function for the ethernet device then the application
[all …]
/f-stack/freebsd/contrib/openzfs/etc/systemd/system/
H A Dzfs-share.service.in4 After=nfs-server.service nfs-kernel-server.service
5 After=smb.service
6 Before=rpc-statd-notify.service
7 Wants=zfs-mount.service
8 After=zfs-mount.service
9 PartOf=nfs-server.service nfs-kernel-server.service
10 PartOf=smb.service
H A D50-zfs.preset.in2 enable zfs-import-cache.service
3 disable zfs-import-scan.service
5 enable zfs-mount.service
6 enable zfs-share.service
7 enable zfs-zed.service
8 enable zfs-volume-wait.service
H A DMakefile.am7 zfs-zed.service \
8 zfs-import-cache.service \
9 zfs-import-scan.service \
10 zfs-mount.service \
11 zfs-share.service \
12 zfs-volume-wait.service \
H A Dzfs-import-cache.service.in5 Requires=systemd-udev-settle.service
6 After=systemd-udev-settle.service
9 After=systemd-remount-fs.service
/f-stack/dpdk/drivers/common/qat/
H A Dqat_common.c74 enum qat_service_type service) in qat_stats_get() argument
79 if (stats == NULL || dev == NULL || service >= QAT_SERVICE_INVALID) { in qat_stats_get()
81 stats, dev, service); in qat_stats_get()
85 qp = dev->qps_in_use[service]; in qat_stats_get()
89 service, i); in qat_stats_get()
104 enum qat_service_type service) in qat_stats_reset() argument
109 if (dev == NULL || service >= QAT_SERVICE_INVALID) { in qat_stats_reset()
111 dev, service); in qat_stats_reset()
115 qp = dev->qps_in_use[service]; in qat_stats_reset()
119 service, i); in qat_stats_reset()
[all …]
/f-stack/freebsd/contrib/openzfs/contrib/dracut/90zfs/
H A Dmodule-setup.sh.in99 dracut_install @systemdunitdir@/zfs-import-$_item.service
100 …if ! [ -L "${initdir}/$systemdsystemunitdir/zfs-import.target.wants"/zfs-import-$_item.service ]; …
101 …ln -s ../zfs-import-$_item.service "${initdir}/$systemdsystemunitdir/zfs-import.target.wants"/zfs-…
102 type mark_hostonly >/dev/null 2>&1 && mark_hostonly @systemdunitdir@/zfs-import-$_item.service
105 inst "${moddir}"/zfs-env-bootfs.service "${systemdsystemunitdir}"/zfs-env-bootfs.service
106 …ln -s ../zfs-env-bootfs.service "${initdir}/${systemdsystemunitdir}/zfs-import.target.wants"/zfs-e…
107 type mark_hostonly >/dev/null 2>&1 && mark_hostonly @systemdunitdir@/zfs-env-bootfs.service
116 for _service in zfs-snapshot-bootfs.service zfs-rollback-bootfs.service ; do
H A D.gitignore9 zfs-env-bootfs.service
10 zfs-snapshot-bootfs.service
11 zfs-rollback-bootfs.service
H A DMakefile.am15 zfs-env-bootfs.service \
16 zfs-snapshot-bootfs.service \
17 zfs-rollback-bootfs.service
H A Dzfs-rollback-bootfs.service.in4 After=zfs-import.target zfs-snapshot-bootfs.service
5 Before=dracut-mount.service
10 # ${BOOTFS} should have been set by zfs-env-bootfs.service
/f-stack/freebsd/contrib/device-tree/Bindings/soc/qcom/
H A Dqcom,apr.txt28 by the individual bindings for the specific service
51 Definition: Must list the protection domain service name and path
52 that the particular apr service has a dependency on.
68 apr-service@3 {
73 apr-service@4 {
85 apr-service@7 {
91 apr-service@8 {
109 apr-service@3 {
114 q6afe: apr-service@4 {
121 q6asm: apr-service@7 {
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/sound/
H A Dqcom,q6core.txt1 Qualcomm ADSP Core service binding
3 Q6CORE is one of the APR audio service on Q6DSP.
4 Please refer to qcom,apr.txt for details of the common apr service bindings
5 used by the apr service device.
18 apr-service@3 {
H A Dqcom,q6adm.txt3 Q6ADM is one of the APR audio service on Q6DSP.
4 Please refer to qcom,apr.txt for details of the coommon apr service bindings
5 used by the apr service device.
32 apr-service@8 {
/f-stack/freebsd/contrib/device-tree/Bindings/net/
H A Dhisilicon-hns-nic.txt22 debug service
32 | | service| port(2)
43 In NIC mode of DSAF, all 6 PHYs of service DSAF are taken as ethernet ports
49 debug debug service
53 In Switch mode of DSAF, all 6 PHYs of service DSAF are taken as physical
60 | | service| port(0)
/f-stack/dpdk/drivers/net/failsafe/
H A Dfailsafe_intr.c122 struct rte_service_spec service; in fs_rx_event_proxy_service_install() local
133 memset(&service, 0, sizeof(struct rte_service_spec)); in fs_rx_event_proxy_service_install()
134 snprintf(service.name, sizeof(service.name), "%s_Rx_service", in fs_rx_event_proxy_service_install()
136 service.socket_id = priv->data->numa_node; in fs_rx_event_proxy_service_install()
137 service.callback = fs_rx_event_proxy_routine; in fs_rx_event_proxy_service_install()
138 service.callback_userdata = priv; in fs_rx_event_proxy_service_install()
165 int32_t ret = rte_service_component_register(&service, in fs_rx_event_proxy_service_install()

123456