Home
last modified time | relevance | path

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

/linux/kernel/rcu/
H A Dtasks.h16 typedef void (*rcu_tasks_gp_func_t)(struct rcu_tasks *rtp);
21 typedef void (*postgp_func_t)(struct rcu_tasks *rtp);
225 static void set_tasks_gp_state(struct rcu_tasks *rtp, int newstate) in set_tasks_gp_state() argument
227 rtp->gp_state = newstate; in set_tasks_gp_state()
228 rtp->gp_jiffies = jiffies; in set_tasks_gp_state()
233 static const char *tasks_gp_state_getname(struct rcu_tasks *rtp) in tasks_gp_state_getname() argument
235 int i = data_race(rtp->gp_state); // Let KCSAN detect update races in tasks_gp_state_getname()
246 static void cblist_init_generic(struct rcu_tasks *rtp) in cblist_init_generic() argument
262 rtp->rtpcp_array = kzalloc_objs(struct rcu_tasks_percpu *, in cblist_init_generic()
264 BUG_ON(!rtp->rtpcp_array); in cblist_init_generic()
[all …]
H A Drcutorture.c1987 static void rcu_torture_reader_do_mbchk(long myid, struct rcu_torture *rtp, in rcu_torture_reader_do_mbchk() argument
2013 !READ_ONCE(rtp->rtort_chkp) && in rcu_torture_reader_do_mbchk()
2020 cmpxchg_relaxed(&rtp->rtort_chkp, NULL, rtrcp)) in rcu_torture_reader_do_mbchk()
/linux/lib/
H A Dradix-tree.c246 struct radix_tree_preload *rtp; in radix_tree_node_alloc() local
263 rtp = this_cpu_ptr(&radix_tree_preloads); in radix_tree_node_alloc()
264 if (rtp->nr) { in radix_tree_node_alloc()
265 ret = rtp->nodes; in radix_tree_node_alloc()
266 rtp->nodes = ret->parent; in radix_tree_node_alloc()
267 rtp->nr--; in radix_tree_node_alloc()
324 struct radix_tree_preload *rtp; in __radix_tree_preload() local
335 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
336 while (rtp->nr < nr) { in __radix_tree_preload()
342 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
[all …]
/linux/drivers/gpu/drm/radeon/
H A Datombios_dp.c562 int rtp = 0; in radeon_dp_set_tp() local
568 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1; in radeon_dp_set_tp()
571 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2; in radeon_dp_set_tp()
574 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3; in radeon_dp_set_tp()
577 atombios_dig_encoder_setup(dp_info->encoder, rtp, 0); in radeon_dp_set_tp()
581 rtp = 0; in radeon_dp_set_tp()
584 rtp = 1; in radeon_dp_set_tp()
588 dp_info->dp_clock, dp_info->enc_id, rtp); in radeon_dp_set_tp()
/linux/drivers/net/ethernet/amd/
H 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/
H A Datombios_dp.c518 int rtp = 0; in amdgpu_atombios_dp_set_tp() local
523 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1; in amdgpu_atombios_dp_set_tp()
526 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2; in amdgpu_atombios_dp_set_tp()
529 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3; in amdgpu_atombios_dp_set_tp()
532 amdgpu_atombios_encoder_setup_dig_encoder(dp_info->encoder, rtp, 0); in amdgpu_atombios_dp_set_tp()
/linux/net/ipv4/
H A Dip_output.c1293 struct ipcm_cookie *ipc, struct rtable **rtp) in ip_setup_cork() argument
1298 rt = *rtp; in ip_setup_cork()
1328 *rtp = NULL; in ip_setup_cork()
1361 struct ipcm_cookie *ipc, struct rtable **rtp, in ip_append_data() argument
1371 err = ip_setup_cork(sk, &inet->cork.base, ipc, rtp); in ip_append_data()
1556 struct ipcm_cookie *ipc, struct rtable **rtp, in ip_make_skb() argument
1570 err = ip_setup_cork(sk, cork, ipc, rtp); in ip_make_skb()
H A Dfib_semantics.c139 static void rt_fibinfo_free(struct rtable __rcu **rtp) in rt_fibinfo_free() argument
141 struct rtable *rt = rcu_dereference_protected(*rtp, 1); in rt_fibinfo_free()
183 static void rt_fibinfo_free_cpus(struct rtable __rcu * __percpu *rtp) in rt_fibinfo_free_cpus() argument
187 if (!rtp) in rt_fibinfo_free_cpus()
193 rt = rcu_dereference_protected(*per_cpu_ptr(rtp, cpu), 1); in rt_fibinfo_free_cpus()
199 free_percpu(rtp); in rt_fibinfo_free_cpus()
H A Draw.c328 struct rtable **rtp, unsigned int flags, in raw_send_hdrinc() argument
337 struct rtable *rt = *rtp; in raw_send_hdrinc()
365 *rtp = NULL; in raw_send_hdrinc()
/linux/drivers/md/
H A Ddm-raid.c637 static bool __got_raid10(struct raid_type *rtp, const int layout) in __got_raid10() argument
639 if (rtp->level == 10) { in __got_raid10()
640 switch (rtp->algorithm) { in __got_raid10()
659 struct raid_type *rtp = raid_types + ARRAY_SIZE(raid_types); in get_raid_type() local
661 while (rtp-- > raid_types) in get_raid_type()
662 if (!strcasecmp(rtp->name, name)) in get_raid_type()
663 return rtp; in get_raid_type()
671 struct raid_type *rtp = raid_types + ARRAY_SIZE(raid_types); in get_raid_type_by_ll() local
673 while (rtp-- > raid_types) { in get_raid_type_by_ll()
675 if (rtp->level == level && in get_raid_type_by_ll()
[all …]
/linux/net/mctp/test/
H A Dsock-test.c18 struct mctp_test_route **rtp, in __mctp_sock_test_init() argument
50 *rtp = rt; in __mctp_sock_test_init()
/linux/net/ipv6/
H A Dip6_fib.c1976 struct fib6_info __rcu **rtp, struct nl_info *info) in fib6_del_route()
1980 struct fib6_info *rt = rcu_dereference_protected(*rtp, in fib6_del_route()
2000 *rtp = rt->fib6_next; in fib6_del_route()
2074 struct fib6_info __rcu **rtp; in fib6_del()
2094 for (rtp = &fn->leaf; *rtp; rtp = rtp_next) { in fib6_del()
2095 struct fib6_info *cur = rcu_dereference_protected(*rtp, in fib6_del()
2100 fib6_del_route(table, fn, rtp, info);
1968 fib6_del_route(struct fib6_table * table,struct fib6_node * fn,struct fib6_info __rcu ** rtp,struct nl_info * info) fib6_del_route() argument
2066 struct fib6_info __rcu **rtp; fib6_del() local
H A Daddrconf.c6683 struct rt6_info **rtp; in addrconf_disable_policy_idev() local
6685 rtp = per_cpu_ptr(nh->rt6i_pcpu, cpu); in addrconf_disable_policy_idev()
6686 addrconf_set_nopolicy(*rtp, val); in addrconf_disable_policy_idev()
/linux/arch/arm/boot/dts/allwinner/
H A Dsun5i-a13.dtsi55 thermal-sensors = <&rtp>;
H A Dsun4i-a10.dtsi133 thermal-sensors = <&rtp>;
943 rtp: rtp@1c25000 { label
H A Dsun5i-gr8-evb.dts287 &rtp {
H A Dsun5i.dtsi655 rtp: rtp@1c25000 { label
H A Dsun6i-a31.dtsi169 thermal-sensors = <&rtp>;
809 rtp: rtp@1c25000 { label
H A Dsun7i-a20.dtsi145 thermal-sensors = <&rtp>;
1310 rtp: rtp@1c25000 { label
/linux/tools/perf/util/
H A Devsel.c1116 double rtp; in evsel__apply_ratio_to_prev() local
1118 rtp = strtod(buf, NULL); in evsel__apply_ratio_to_prev()
1119 if (rtp <= 0) { in evsel__apply_ratio_to_prev()
1120 pr_err("Invalid ratio-to-prev value %lf\n", rtp); in evsel__apply_ratio_to_prev()
1148 attr->sample_period = prev_attr->sample_period * rtp; in evsel__apply_ratio_to_prev()
1152 prev_attr->sample_period = attr->sample_period / rtp; in evsel__apply_ratio_to_prev()
1158 attr->sample_period = prev_attr->sample_period * rtp; in evsel__apply_ratio_to_prev()
/linux/drivers/gpu/drm/xe/tests/
H A Dxe_rtp_test.c503 KUNIT_ARRAY_PARAM(rtp, rtp_cases, rtp_desc);
/linux/include/net/
H A Dip.h240 struct ipcm_cookie *ipc, struct rtable **rtp,
/linux/
H A D.mailmap106 Arnaud Patard <arnaud.patard@rtp-net.org>