Home
last modified time | relevance | path

Searched refs:rtp (Results 1 – 23 of 23) sorted by relevance

/linux/kernel/rcu/
A Dtasks.h205 list = rtp->cbs_head; in rcu_tasks_kthread()
206 rtp->cbs_head = NULL; in rcu_tasks_kthread()
207 rtp->cbs_tail = &rtp->cbs_head; in rcu_tasks_kthread()
225 rtp->gp_func(rtp); in rcu_tasks_kthread()
226 rtp->n_gps++; in rcu_tasks_kthread()
248 t = kthread_run(rcu_tasks_kthread, rtp, "%s_kthread", rtp->kname); in rcu_spawn_tasks_kthread_generic()
283 rtp->kname, in show_rcu_tasks_generic_gp_kthread()
284 tasks_gp_state_getname(rtp), data_race(rtp->gp_state), in show_rcu_tasks_generic_gp_kthread()
287 data_race(rtp->n_ipis_fails), data_race(rtp->n_ipis), in show_rcu_tasks_generic_gp_kthread()
311 rtp->pregp_func(); in rcu_tasks_wait_gp()
[all …]
A Drcutorture.c1354 static void rcu_torture_reader_do_mbchk(long myid, struct rcu_torture *rtp, in rcu_torture_reader_do_mbchk() argument
1380 !READ_ONCE(rtp->rtort_chkp) && in rcu_torture_reader_do_mbchk()
1387 cmpxchg_relaxed(&rtp->rtort_chkp, NULL, rtrcp)) in rcu_torture_reader_do_mbchk()
/linux/lib/
A Dradix-tree.c262 if (rtp->nr) { in radix_tree_node_alloc()
263 ret = rtp->nodes; in radix_tree_node_alloc()
264 rtp->nodes = ret->parent; in radix_tree_node_alloc()
265 rtp->nr--; in radix_tree_node_alloc()
334 while (rtp->nr < nr) { in __radix_tree_preload()
341 if (rtp->nr < nr) { in __radix_tree_preload()
343 rtp->nodes = node; in __radix_tree_preload()
344 rtp->nr++; in __radix_tree_preload()
1584 while (rtp->nr) { in radix_tree_cpu_dead()
1585 node = rtp->nodes; in radix_tree_cpu_dead()
[all …]
/linux/drivers/gpu/drm/radeon/
A Datombios_dp.c567 int rtp = 0; in radeon_dp_set_tp() local
573 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1; in radeon_dp_set_tp()
576 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2; in radeon_dp_set_tp()
579 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3; in radeon_dp_set_tp()
582 atombios_dig_encoder_setup(dp_info->encoder, rtp, 0); in radeon_dp_set_tp()
586 rtp = 0; in radeon_dp_set_tp()
589 rtp = 1; in radeon_dp_set_tp()
593 dp_info->dp_clock, dp_info->enc_id, rtp); in radeon_dp_set_tp()
/linux/Documentation/devicetree/bindings/mfd/
A Dallwinner,sun4i-a10-ts.yaml65 rtp: rtp@1c25000 {
/linux/drivers/net/ethernet/amd/
A Ddeclance.c333 unsigned char *rtp; in cp_to_buf() local
349 rtp = (unsigned char *)tp; in cp_to_buf()
352 *rtp++ = *rfp++; in cp_to_buf()
377 rtp = (unsigned char *)tp; in cp_to_buf()
380 *rtp++ = *rfp++; in cp_to_buf()
392 unsigned char *rtp; in cp_from_buf() local
408 rtp = (unsigned char *)tp; in cp_from_buf()
412 *rtp++ = *rfp++; in cp_from_buf()
438 rtp = (unsigned char *)tp; in cp_from_buf()
441 *rtp++ = *rfp++; in cp_from_buf()
/linux/drivers/gpu/drm/amd/amdgpu/
A Datombios_dp.c517 int rtp = 0; in amdgpu_atombios_dp_set_tp() local
522 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1; in amdgpu_atombios_dp_set_tp()
525 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2; in amdgpu_atombios_dp_set_tp()
528 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3; in amdgpu_atombios_dp_set_tp()
531 amdgpu_atombios_encoder_setup_dig_encoder(dp_info->encoder, rtp, 0); in amdgpu_atombios_dp_set_tp()
/linux/net/decnet/
A Ddn_route.c182 struct dn_route __rcu **rtp; in dn_dst_check_expire() local
187 rtp = &dn_rt_hash_table[i].chain; in dn_dst_check_expire()
190 while ((rt = rcu_dereference_protected(*rtp, in dn_dst_check_expire()
194 rtp = &rt->dn_next; in dn_dst_check_expire()
197 *rtp = rt->dn_next; in dn_dst_check_expire()
214 struct dn_route __rcu **rtp; in dn_dst_gc() local
222 rtp = &dn_rt_hash_table[i].chain; in dn_dst_gc()
224 while ((rt = rcu_dereference_protected(*rtp, in dn_dst_gc()
228 rtp = &rt->dn_next; in dn_dst_gc()
231 *rtp = rt->dn_next; in dn_dst_gc()
/linux/drivers/md/
A Ddm-raid.c637 if (rtp->level == 10) { in __got_raid10()
638 switch (rtp->algorithm) { in __got_raid10()
657 struct raid_type *rtp = raid_types + ARRAY_SIZE(raid_types); in get_raid_type() local
659 while (rtp-- > raid_types) in get_raid_type()
660 if (!strcasecmp(rtp->name, name)) in get_raid_type()
661 return rtp; in get_raid_type()
669 struct raid_type *rtp = raid_types + ARRAY_SIZE(raid_types); in get_raid_type_by_ll() local
671 while (rtp-- > raid_types) { in get_raid_type_by_ll()
673 if (rtp->level == level && in get_raid_type_by_ll()
674 (__got_raid10(rtp, layout) || rtp->algorithm == layout)) in get_raid_type_by_ll()
[all …]
/linux/net/ipv4/
A Dip_output.c1229 struct ipcm_cookie *ipc, struct rtable **rtp) in ip_setup_cork() argument
1234 rt = *rtp; in ip_setup_cork()
1264 *rtp = NULL; in ip_setup_cork()
1293 struct ipcm_cookie *ipc, struct rtable **rtp, in ip_append_data() argument
1303 err = ip_setup_cork(sk, &inet->cork.base, ipc, rtp); in ip_append_data()
1603 struct ipcm_cookie *ipc, struct rtable **rtp, in ip_make_skb() argument
1617 err = ip_setup_cork(sk, cork, ipc, rtp); in ip_make_skb()
A Dfib_semantics.c146 static void rt_fibinfo_free(struct rtable __rcu **rtp) in rt_fibinfo_free() argument
148 struct rtable *rt = rcu_dereference_protected(*rtp, 1); in rt_fibinfo_free()
190 static void rt_fibinfo_free_cpus(struct rtable __rcu * __percpu *rtp) in rt_fibinfo_free_cpus() argument
194 if (!rtp) in rt_fibinfo_free_cpus()
200 rt = rcu_dereference_protected(*per_cpu_ptr(rtp, cpu), 1); in rt_fibinfo_free_cpus()
206 free_percpu(rtp); in rt_fibinfo_free_cpus()
A Draw.c346 struct rtable **rtp, unsigned int flags, in raw_send_hdrinc() argument
355 struct rtable *rt = *rtp; in raw_send_hdrinc()
382 *rtp = NULL; in raw_send_hdrinc()
/linux/net/ipv6/
A Dip6_fib.c1902 struct fib6_info __rcu **rtp, struct nl_info *info) in fib6_del_route() argument
1906 struct fib6_info *rt = rcu_dereference_protected(*rtp, in fib6_del_route()
1928 *rtp = rt->fib6_next; in fib6_del_route()
2001 struct fib6_info __rcu **rtp; in fib6_del() local
2021 for (rtp = &fn->leaf; *rtp; rtp = rtp_next) { in fib6_del()
2022 struct fib6_info *cur = rcu_dereference_protected(*rtp, in fib6_del()
2027 fib6_del_route(table, fn, rtp, info); in fib6_del()
A Daddrconf.c6503 struct rt6_info **rtp; in addrconf_disable_policy_idev() local
6505 rtp = per_cpu_ptr(nh->rt6i_pcpu, cpu); in addrconf_disable_policy_idev()
6506 addrconf_set_nopolicy(*rtp, val); in addrconf_disable_policy_idev()
/linux/net/mctp/test/
A Droute-test.c290 struct mctp_test_route **rtp, in __mctp_route_test_init() argument
315 *rtp = rt; in __mctp_route_test_init()
/linux/arch/arm/boot/dts/
A Dsun5i-a13.dtsi55 thermal-sensors = <&rtp>;
A Dsun4i-a10.dtsi133 thermal-sensors = <&rtp>;
943 rtp: rtp@1c25000 { label
A Dsun5i-gr8-evb.dts287 &rtp {
A Dsun5i.dtsi646 rtp: rtp@1c25000 { label
A Dsun6i-a31.dtsi168 thermal-sensors = <&rtp>;
807 rtp: rtp@1c25000 { label
A Dsun7i-a20.dtsi145 thermal-sensors = <&rtp>;
1310 rtp: rtp@1c25000 { label
/linux/include/net/
A Dip.h234 struct ipcm_cookie *ipc, struct rtable **rtp,
/linux/
A D.mailmap51 Arnaud Patard <arnaud.patard@rtp-net.org>

Completed in 74 milliseconds