/linux/drivers/greybus/ |
H A D | svc.c | 28 struct gb_svc *svc = to_gb_svc(dev); in endo_id_show() local 30 return sprintf(buf, "0x%04x\n", svc->endo_id); in endo_id_show() 37 struct gb_svc *svc = to_gb_svc(dev); in ap_intf_id_show() local 39 return sprintf(buf, "%u\n", svc->ap_intf_id); in ap_intf_id_show() 52 struct gb_svc *svc = to_gb_svc(dev); in intf_eject_store() local 62 ret = gb_svc_intf_eject(svc, intf_id); in intf_eject_store() 73 struct gb_svc *svc = to_gb_svc(dev); in watchdog_show() local 76 gb_svc_watchdog_enabled(svc) ? "enabled" : "disabled"); in watchdog_show() 83 struct gb_svc *svc = to_gb_svc(dev); in watchdog_store() local 92 retval = gb_svc_watchdog_enable(svc); in watchdog_store() [all …]
|
H A D | svc_watchdog.c | 17 struct gb_svc *svc; member 32 gb_svc_watchdog_disable(watchdog->svc); in svc_watchdog_pm_notifier() 35 gb_svc_watchdog_enable(watchdog->svc); in svc_watchdog_pm_notifier() 66 struct gb_svc *svc; in do_work() local 70 svc = watchdog->svc; in do_work() 72 dev_dbg(&svc->dev, "%s: ping.\n", __func__); in do_work() 73 retval = gb_svc_ping(svc); in do_work() 82 dev_err(&svc->dev, in do_work() 86 if (svc->action == GB_SVC_WATCHDOG_BITE_PANIC_KERNEL) { in do_work() 88 } else if (svc->action == GB_SVC_WATCHDOG_BITE_RESET_UNIPRO) { in do_work() [all …]
|
H A D | hd.c | 112 if (hd->svc) in gb_hd_release() 113 gb_svc_put(hd->svc); in gb_hd_release() 189 hd->svc = gb_svc_create(hd); in gb_hd_create() 190 if (!hd->svc) { in gb_hd_create() 208 ret = gb_svc_add(hd->svc); in gb_hd_add() 228 gb_svc_del(hd->svc); in gb_hd_del() 236 gb_svc_del(hd->svc); in gb_hd_shutdown()
|
/linux/include/linux/greybus/ |
H A D | svc.h | 36 struct gb_svc *svc; member 63 int gb_svc_add(struct gb_svc *svc); 64 void gb_svc_del(struct gb_svc *svc); 65 void gb_svc_put(struct gb_svc *svc); 67 int gb_svc_pwrmon_intf_sample_get(struct gb_svc *svc, u8 intf_id, 69 int gb_svc_intf_device_id(struct gb_svc *svc, u8 intf_id, u8 device_id); 70 int gb_svc_route_create(struct gb_svc *svc, u8 intf1_id, u8 dev1_id, 72 void gb_svc_route_destroy(struct gb_svc *svc, u8 intf1_id, u8 intf2_id); 73 int gb_svc_connection_create(struct gb_svc *svc, u8 intf1_id, u16 cport1_id, 75 void gb_svc_connection_destroy(struct gb_svc *svc, u8 intf1_id, u16 cport1_id, [all …]
|
/linux/net/netfilter/ipvs/ |
H A D | ip_vs_mh.c | 123 struct ip_vs_service *svc) in ip_vs_mh_permutate() argument 138 p = &svc->destinations; in ip_vs_mh_permutate() 140 while ((p = p->next) != &svc->destinations) { in ip_vs_mh_permutate() 143 ds->offset = ip_vs_mh_hashkey(svc->af, &dest->addr, in ip_vs_mh_permutate() 146 ds->skip = ip_vs_mh_hashkey(svc->af, &dest->addr, in ip_vs_mh_permutate() 160 struct ip_vs_service *svc) in ip_vs_mh_populate() argument 181 p = &svc->destinations; in ip_vs_mh_populate() 185 if (p == &svc->destinations) in ip_vs_mh_populate() 189 while (p != &svc->destinations) { in ip_vs_mh_populate() 235 ip_vs_mh_get(struct ip_vs_service *svc, struct ip_vs_mh_state *s, in ip_vs_mh_get() argument [all …]
|
H A D | ip_vs_wrr.c | 69 static int ip_vs_wrr_gcd_weight(struct ip_vs_service *svc) in ip_vs_wrr_gcd_weight() argument 75 list_for_each_entry(dest, &svc->destinations, n_list) { in ip_vs_wrr_gcd_weight() 91 static int ip_vs_wrr_max_weight(struct ip_vs_service *svc) in ip_vs_wrr_max_weight() argument 96 list_for_each_entry(dest, &svc->destinations, n_list) { in ip_vs_wrr_max_weight() 106 static int ip_vs_wrr_init_svc(struct ip_vs_service *svc) in ip_vs_wrr_init_svc() argument 117 mark->cl = list_entry(&svc->destinations, struct ip_vs_dest, n_list); in ip_vs_wrr_init_svc() 118 mark->di = ip_vs_wrr_gcd_weight(svc); in ip_vs_wrr_init_svc() 119 mark->mw = ip_vs_wrr_max_weight(svc) - (mark->di - 1); in ip_vs_wrr_init_svc() 121 svc->sched_data = mark; in ip_vs_wrr_init_svc() 127 static void ip_vs_wrr_done_svc(struct ip_vs_service *svc) in ip_vs_wrr_done_svc() argument [all …]
|
H A D | ip_vs_rr.c | 26 static int ip_vs_rr_init_svc(struct ip_vs_service *svc) in ip_vs_rr_init_svc() argument 28 svc->sched_data = &svc->destinations; in ip_vs_rr_init_svc() 33 static int ip_vs_rr_del_dest(struct ip_vs_service *svc, struct ip_vs_dest *dest) in ip_vs_rr_del_dest() argument 37 spin_lock_bh(&svc->sched_lock); in ip_vs_rr_del_dest() 38 p = (struct list_head *) svc->sched_data; in ip_vs_rr_del_dest() 43 svc->sched_data = p->next->prev; in ip_vs_rr_del_dest() 44 spin_unlock_bh(&svc->sched_lock); in ip_vs_rr_del_dest() 53 ip_vs_rr_schedule(struct ip_vs_service *svc, const struct sk_buff *skb, in ip_vs_rr_schedule() argument 62 spin_lock_bh(&svc->sched_lock); in ip_vs_rr_schedule() 63 p = (struct list_head *) svc->sched_data; in ip_vs_rr_schedule() [all …]
|
H A D | ip_vs_lblc.c | 105 struct ip_vs_service *svc; /* pointer back to service */ member 228 static void ip_vs_lblc_flush(struct ip_vs_service *svc) in ip_vs_lblc_flush() argument 230 struct ip_vs_lblc_table *tbl = svc->sched_data; in ip_vs_lblc_flush() 235 spin_lock_bh(&svc->sched_lock); in ip_vs_lblc_flush() 243 spin_unlock_bh(&svc->sched_lock); in ip_vs_lblc_flush() 246 static int sysctl_lblc_expiration(struct ip_vs_service *svc) in sysctl_lblc_expiration() argument 249 return svc->ipvs->sysctl_lblc_expiration; in sysctl_lblc_expiration() 255 static inline void ip_vs_lblc_full_check(struct ip_vs_service *svc) in ip_vs_lblc_full_check() argument 257 struct ip_vs_lblc_table *tbl = svc->sched_data; in ip_vs_lblc_full_check() 266 spin_lock(&svc->sched_lock); in ip_vs_lblc_full_check() [all …]
|
H A D | ip_vs_sched.c | 40 int ip_vs_bind_scheduler(struct ip_vs_service *svc, in ip_vs_bind_scheduler() argument 46 ret = scheduler->init_service(svc); in ip_vs_bind_scheduler() 52 rcu_assign_pointer(svc->scheduler, scheduler); in ip_vs_bind_scheduler() 60 void ip_vs_unbind_scheduler(struct ip_vs_service *svc, in ip_vs_unbind_scheduler() argument 65 cur_sched = rcu_dereference_protected(svc->scheduler, 1); in ip_vs_unbind_scheduler() 71 sched->done_service(svc); in ip_vs_unbind_scheduler() 143 void ip_vs_scheduler_err(struct ip_vs_service *svc, const char *msg) in ip_vs_scheduler_err() argument 145 struct ip_vs_scheduler *sched = rcu_dereference(svc->scheduler); in ip_vs_scheduler_err() 148 if (svc->fwmark) { in ip_vs_scheduler_err() 150 sched_name, svc->fwmark, svc->fwmark, msg); in ip_vs_scheduler_err() [all …]
|
H A D | ip_vs_lblcr.c | 277 struct ip_vs_service *svc; /* pointer back to service */ member 394 static void ip_vs_lblcr_flush(struct ip_vs_service *svc) in ip_vs_lblcr_flush() argument 396 struct ip_vs_lblcr_table *tbl = svc->sched_data; in ip_vs_lblcr_flush() 401 spin_lock_bh(&svc->sched_lock); in ip_vs_lblcr_flush() 408 spin_unlock_bh(&svc->sched_lock); in ip_vs_lblcr_flush() 411 static int sysctl_lblcr_expiration(struct ip_vs_service *svc) in sysctl_lblcr_expiration() argument 414 return svc->ipvs->sysctl_lblcr_expiration; in sysctl_lblcr_expiration() 420 static inline void ip_vs_lblcr_full_check(struct ip_vs_service *svc) in ip_vs_lblcr_full_check() argument 422 struct ip_vs_lblcr_table *tbl = svc->sched_data; in ip_vs_lblcr_full_check() 431 spin_lock(&svc->sched_lock); in ip_vs_lblcr_full_check() [all …]
|
H A D | ip_vs_sh.c | 104 ip_vs_sh_get(struct ip_vs_service *svc, struct ip_vs_sh_state *s, in ip_vs_sh_get() argument 107 unsigned int hash = ip_vs_sh_hashkey(svc->af, addr, port, 0); in ip_vs_sh_get() 121 ip_vs_sh_get_fallback(struct ip_vs_service *svc, struct ip_vs_sh_state *s, in ip_vs_sh_get_fallback() argument 129 ihash = ip_vs_sh_hashkey(svc->af, addr, port, 0); in ip_vs_sh_get_fallback() 144 hash = ip_vs_sh_hashkey(svc->af, addr, port, roffset); in ip_vs_sh_get_fallback() 163 ip_vs_sh_reassign(struct ip_vs_sh_state *s, struct ip_vs_service *svc) in ip_vs_sh_reassign() argument 173 p = &svc->destinations; in ip_vs_sh_reassign() 183 if (p == &svc->destinations) in ip_vs_sh_reassign() 228 static int ip_vs_sh_init_svc(struct ip_vs_service *svc) in ip_vs_sh_init_svc() argument 237 svc->sched_data = s; in ip_vs_sh_init_svc() [all …]
|
H A D | ip_vs_dh.c | 98 ip_vs_dh_reassign(struct ip_vs_dh_state *s, struct ip_vs_service *svc) in ip_vs_dh_reassign() argument 107 p = &svc->destinations; in ip_vs_dh_reassign() 116 if (p == &svc->destinations) in ip_vs_dh_reassign() 152 static int ip_vs_dh_init_svc(struct ip_vs_service *svc) in ip_vs_dh_init_svc() argument 161 svc->sched_data = s; in ip_vs_dh_init_svc() 167 ip_vs_dh_reassign(s, svc); in ip_vs_dh_init_svc() 173 static void ip_vs_dh_done_svc(struct ip_vs_service *svc) in ip_vs_dh_done_svc() argument 175 struct ip_vs_dh_state *s = svc->sched_data; in ip_vs_dh_done_svc() 187 static int ip_vs_dh_dest_changed(struct ip_vs_service *svc, in ip_vs_dh_dest_changed() argument 190 struct ip_vs_dh_state *s = svc->sched_data; in ip_vs_dh_dest_changed() [all …]
|
H A D | ip_vs_core.c | 129 struct ip_vs_service *svc; in ip_vs_in_stats() local 139 svc = rcu_dereference(dest->svc); in ip_vs_in_stats() 140 s = this_cpu_ptr(svc->stats.cpustats); in ip_vs_in_stats() 165 struct ip_vs_service *svc; in ip_vs_out_stats() local 175 svc = rcu_dereference(dest->svc); in ip_vs_out_stats() 176 s = this_cpu_ptr(svc->stats.cpustats); in ip_vs_out_stats() 194 ip_vs_conn_stats(struct ip_vs_conn *cp, struct ip_vs_service *svc) in ip_vs_conn_stats() argument 196 struct netns_ipvs *ipvs = svc->ipvs; in ip_vs_conn_stats() 206 s = this_cpu_ptr(svc->stats.cpustats); in ip_vs_conn_stats() 230 ip_vs_conn_fill_param_persist(const struct ip_vs_service *svc, in ip_vs_conn_fill_param_persist() argument [all …]
|
H A D | ip_vs_wlc.c | 29 ip_vs_wlc_schedule(struct ip_vs_service *svc, const struct sk_buff *skb, in ip_vs_wlc_schedule() argument 50 list_for_each_entry_rcu(dest, &svc->destinations, n_list) { in ip_vs_wlc_schedule() 58 ip_vs_scheduler_err(svc, "no destination available"); in ip_vs_wlc_schedule() 65 list_for_each_entry_continue_rcu(dest, &svc->destinations, n_list) { in ip_vs_wlc_schedule()
|
H A D | ip_vs_sed.c | 57 ip_vs_sed_schedule(struct ip_vs_service *svc, const struct sk_buff *skb, in ip_vs_sed_schedule() argument 78 list_for_each_entry_rcu(dest, &svc->destinations, n_list) { in ip_vs_sed_schedule() 86 ip_vs_scheduler_err(svc, "no destination available"); in ip_vs_sed_schedule() 93 list_for_each_entry_continue_rcu(dest, &svc->destinations, n_list) { in ip_vs_sed_schedule()
|
H A D | ip_vs_twos.c | 44 static struct ip_vs_dest *ip_vs_twos_schedule(struct ip_vs_service *svc, in ip_vs_twos_schedule() argument 55 list_for_each_entry_rcu(dest, &svc->destinations, n_list) { in ip_vs_twos_schedule() 66 ip_vs_scheduler_err(svc, "no destination available"); in ip_vs_twos_schedule() 78 list_for_each_entry_rcu(dest, &svc->destinations, n_list) { in ip_vs_twos_schedule()
|
/linux/drivers/thunderbolt/ |
H A D | dma_test.c | 93 const struct tb_service *svc; member 225 dev_warn(&dt->svc->dev, "failed to disable DMA paths\n"); in dma_test_stop_rings() 247 dev_dbg(&dt->svc->dev, "packet %u/%u received\n", dt->packets_received, in dma_test_rx_callback() 349 dev_dbg(&dt->svc->dev, "packet %u/%u sent\n", dt->packets_sent, in dma_test_submit_tx() 361 struct tb_service *svc = data; \ 362 struct dma_test *dt = tb_service_get_drvdata(svc); \ 374 struct tb_service *svc = data; \ 375 struct dma_test *dt = tb_service_get_drvdata(svc); \ 509 struct tb_service *svc = data; in test_store() local 510 struct dma_test *dt = tb_service_get_drvdata(svc); in test_store() [all …]
|
H A D | domain.c | 22 const struct tb_service *svc) in match_service_id() argument 25 if (strcmp(id->protocol_key, svc->key)) in match_service_id() 30 if (id->protocol_id != svc->prtcid) in match_service_id() 35 if (id->protocol_version != svc->prtcvers) in match_service_id() 40 if (id->protocol_revision != svc->prtcrevs) in match_service_id() 52 struct tb_service *svc; in __tb_service_match() local 54 svc = tb_to_service(dev); in __tb_service_match() 55 if (!svc) in __tb_service_match() 63 if (match_service_id(ids, svc)) in __tb_service_match() 77 struct tb_service *svc = tb_to_service(dev); in tb_service_probe() local [all …]
|
/linux/drivers/soc/qcom/ |
H A D | apr.c | 62 spin_lock_irqsave(&adev->svc.lock, flags); in apr_send_pkt() 66 hdr->src_svc = adev->svc.id; in apr_send_pkt() 68 hdr->dest_svc = adev->svc.id; in apr_send_pkt() 71 spin_unlock_irqrestore(&adev->svc.lock, flags); in apr_send_pkt() 95 struct pkt_router_svc *svc; in gpr_alloc_port() local 102 svc = port; in gpr_alloc_port() 103 svc->callback = cb; in gpr_alloc_port() 104 svc->pr = pr; in gpr_alloc_port() 105 svc->priv = priv; in gpr_alloc_port() 106 svc->dev = dev; in gpr_alloc_port() [all …]
|
/linux/include/linux/ |
H A D | thunderbolt.h | 407 static inline struct tb_service *tb_service_get(struct tb_service *svc) 409 if (svc) in tb_service_get() 410 get_device(&svc->dev); in tb_service_get() 411 return svc; in tb_service_get() 414 static inline void tb_service_put(struct tb_service *svc) 416 if (svc) in tb_service_put() 417 put_device(&svc->dev); in tb_service_put() 442 int (*probe)(struct tb_service *svc, const struct tb_service_id *id); 443 void (*remove)(struct tb_service *svc); 444 void (*shutdown)(struct tb_service *svc); 408 tb_service_get(struct tb_service * svc) tb_service_get() argument 415 tb_service_put(struct tb_service * svc) tb_service_put() argument 458 tb_service_get_drvdata(const struct tb_service * svc) tb_service_get_drvdata() argument 463 tb_service_set_drvdata(struct tb_service * svc,void * data) tb_service_set_drvdata() argument 468 tb_service_parent(struct tb_service * svc) tb_service_parent() argument [all...] |
/linux/drivers/firmware/qcom/ |
H A D | qcom_scm.c | 227 .svc = QCOM_SCM_SVC_INFO, in __get_convention() 345 .svc = QCOM_SCM_SVC_INFO, in __qcom_scm_is_call_available() 376 .svc = QCOM_SCM_SVC_BOOT, in qcom_scm_set_boot_addr() 397 .svc = QCOM_SCM_SVC_BOOT, in qcom_scm_set_boot_addr_mc() 456 .svc = QCOM_SCM_SVC_BOOT, in qcom_scm_cpu_power_down() 470 .svc = QCOM_SCM_SVC_BOOT, in qcom_scm_set_remote_state() 490 .svc = QCOM_SCM_SVC_BOOT, in qcom_scm_disable_sdi() 512 .svc = QCOM_SCM_SVC_BOOT, in __qcom_scm_set_dload_mode() 582 .svc = QCOM_SCM_SVC_PIL, in qcom_scm_pas_init_image() 668 .svc = QCOM_SCM_SVC_PIL, in qcom_scm_pas_mem_setup() [all …]
|
/linux/Documentation/driver-api/firmware/ |
H A D | other_interfaces.rst | 35 .. kernel-doc:: include/linux/firmware/intel/stratix10-svc-client.h 38 .. kernel-doc:: include/linux/firmware/intel/stratix10-svc-client.h 41 .. kernel-doc:: include/linux/firmware/intel/stratix10-svc-client.h 44 .. kernel-doc:: include/linux/firmware/intel/stratix10-svc-client.h 47 .. kernel-doc:: include/linux/firmware/intel/stratix10-svc-client.h 50 .. kernel-doc:: drivers/firmware/stratix10-svc.c
|
/linux/net/sunrpc/ |
H A D | svcauth.c | 188 struct svc_cred *svc) in svcauth_map_clnt_to_svc_cred_local() argument 193 memset(svc, 0, sizeof(struct svc_cred)); in svcauth_map_clnt_to_svc_cred_local() 195 svc->cr_uid = KUIDT_INIT(from_kuid_munged(userns, cred->fsuid)); in svcauth_map_clnt_to_svc_cred_local() 196 svc->cr_gid = KGIDT_INIT(from_kgid_munged(userns, cred->fsgid)); in svcauth_map_clnt_to_svc_cred_local() 197 svc->cr_flavor = clnt->cl_auth->au_flavor; in svcauth_map_clnt_to_svc_cred_local() 199 svc->cr_group_info = get_group_info(cred->group_info); in svcauth_map_clnt_to_svc_cred_local() 201 svc->cr_principal = NULL; in svcauth_map_clnt_to_svc_cred_local() 202 svc->cr_gss_mech = NULL; in svcauth_map_clnt_to_svc_cred_local()
|
/linux/tools/testing/selftests/arm64/fp/ |
H A D | zt-test.S | 159 svc #0 184 svc #0 228 svc #0 242 svc #0 258 svc #0 265 // svc #0 294 svc #0 298 // svc #0 302 svc #0 305 // svc # [all...] |
H A D | za-test.S | 190 svc #0 215 svc #0 280 svc #0 303 svc #0 324 svc #0 331 // svc #0 364 svc #0 368 // svc #0 372 svc #0 375 // svc # [all...] |