Searched refs:rt (Results 76 - 100 of 333) sorted by relevance

1234567891011>>

/linux-master/net/appletalk/
H A Dddp.c513 struct atalk_route *rt; local
529 for (rt = atalk_routes; rt; rt = rt->next) {
530 if (r->rt_flags != rt->flags)
533 if (ta->sat_addr.s_net == rt->target.s_net) {
534 if (!(rt->flags & RTF_HOST))
536 if (ta->sat_addr.s_node == rt->target.s_node)
566 if (!rt) {
884 atrtr_ioctl_addrt(struct rtentry *rt) argument
905 struct rtentry rt; local
1303 struct atalk_route *rt; local
1558 struct atalk_route *rt, *rt_lo = NULL; local
1832 struct rtentry rt; local
[all...]
/linux-master/arch/mips/include/asm/octeon/
H A Dcvmx-asm.h136 asm volatile ("rdhwr %[rt],$" CVMX_TMP_STR(regstr) : [rt] "=d" (result))
138 asm ("rdhwr %[rt],$" CVMX_TMP_STR(regstr) : [rt] "=d" (result))
/linux-master/kernel/sched/
H A Dbuild_policy.c20 #include <linux/sched/rt.h>
45 #include "rt.c"
H A Drt.c16 * period over which we measure -rt task CPU usage in us.
22 * part of the period that we allow rt tasks to run in us.
175 return container_of(rt_se, struct task_struct, rt);
235 rt_se->rt_rq = &rq->rt;
290 return container_of(rt_se, struct task_struct, rt);
295 return container_of(rt_rq, struct rq, rt);
309 return &rq->rt;
327 return rq->online && rq->rt.highest_prio.curr > prev->prio;
366 return !plist_head_empty(&rq->rt.pushable_tasks);
390 plist_del(&p->pushable_tasks, &rq->rt
2648 DEFINE_SCHED_CLASS(rt) = { variable
[all...]
/linux-master/drivers/platform/chrome/
H A Dcros_usbpd_logger.c88 struct rtc_time rt; local
95 rt = rtc_ktime_to_tm(tstamp);
163 rt.tm_year + 1900, rt.tm_mon + 1, rt.tm_mday,
164 rt.tm_hour, rt.tm_min, rt.tm_sec, rem,
/linux-master/arch/x86/pci/
H A Dpcbios.c369 struct irq_routing_table *rt = NULL; local
405 rt = kmalloc(sizeof(struct irq_routing_table) + opt.size, GFP_KERNEL);
406 if (rt) {
407 memset(rt, 0, sizeof(struct irq_routing_table));
408 rt->size = opt.size + sizeof(struct irq_routing_table);
409 rt->exclusive_irqs = map;
410 memcpy(rt->slots, (void *) page, opt.size);
415 return rt;
/linux-master/drivers/net/netdevsim/
H A Dfib.c96 struct fib6_info *rt; member in struct:nsim_fib6_rt_nh
483 const struct fib6_info *rt)
488 if (fib6_rt_nh->rt == rt)
496 struct fib6_info *rt)
504 fib6_info_hold(rt);
505 fib6_rt_nh->rt = rt;
513 static void nsim_rt6_release(struct fib6_info *rt) argument
515 fib6_info_release(rt);
482 nsim_fib6_rt_nh_find(const struct nsim_fib6_rt *fib6_rt, const struct fib6_info *rt) argument
495 nsim_fib6_rt_nh_add(struct nsim_fib6_rt *fib6_rt, struct fib6_info *rt) argument
518 nsim_rt6_release(struct fib6_info *rt) argument
523 nsim_fib6_rt_nh_del(struct nsim_fib6_rt *fib6_rt, const struct fib6_info *rt) argument
542 struct fib6_info *rt = rt_arr[0]; local
590 nsim_fib6_rt_lookup(struct rhashtable *fib_rt_ht, const struct fib6_info *rt) argument
607 struct fib6_info *rt = fib6_event->rt_arr[0]; local
739 struct fib6_info *rt = fib6_event->rt_arr[0]; local
772 struct fib6_info *rt = fib6_event->rt_arr[0]; local
802 struct fib6_info *rt = fen6_info->rt; local
[all...]
/linux-master/drivers/bus/
H A Domap_l3_smx.c169 status = omap3_l3_readll(l3->rt, L3_SI_FLAG_STATUS_0);
171 status = omap3_l3_readll(l3->rt, L3_SI_FLAG_STATUS_1);
176 base = l3->rt + omap3_l3_bases[int_type][err_source];
230 l3->rt = ioremap(res->start, resource_size(res));
231 if (!l3->rt) {
258 iounmap(l3->rt);
270 iounmap(l3->rt);
/linux-master/arch/mips/kernel/
H A Dunaligned.c245 regs->regs[insn.spec3_format.rt] = value;
254 regs->regs[insn.spec3_format.rt] = value;
263 regs->regs[insn.spec3_format.rt] = value;
269 value = regs->regs[insn.spec3_format.rt];
278 value = regs->regs[insn.spec3_format.rt];
301 regs->regs[insn.i_format.rt] = value;
316 regs->regs[insn.i_format.rt] = value;
331 regs->regs[insn.i_format.rt] = value;
350 regs->regs[insn.i_format.rt] = value;
373 regs->regs[insn.i_format.rt]
[all...]
/linux-master/arch/arm/net/
H A Dbpf_jit_32.c351 static u32 arm_bpf_ldst_imm12(u32 op, u8 rt, u8 rn, s16 imm12) argument
353 op |= rt << 12 | rn << 16;
361 static u32 arm_bpf_ldst_imm8(u32 op, u8 rt, u8 rn, s16 imm8) argument
363 op |= rt << 12 | rn << 16;
371 #define ARM_LDR_I(rt, rn, off) arm_bpf_ldst_imm12(ARM_INST_LDR_I, rt, rn, off)
372 #define ARM_LDRB_I(rt, rn, off) arm_bpf_ldst_imm12(ARM_INST_LDRB_I, rt, rn, off)
373 #define ARM_LDRD_I(rt, rn, off) arm_bpf_ldst_imm8(ARM_INST_LDRD_I, rt, r
876 s8 rt; local
1013 s8 rt; local
1037 s8 rt; local
1062 s8 rt; local
1170 const s8 *rd, *rt; local
1350 emit_ar_r(const u8 rd, const u8 rt, const u8 rm, const u8 rn, struct jit_ctx *ctx, u8 op, bool is_jmp64) argument
1516 const s8 *rt; local
1601 s8 rd_lo, rt, rm, rn; local
[all...]
/linux-master/drivers/net/wireguard/
H A Dsocket.c30 struct rtable *rt = NULL; local
49 rt = dst_cache_get_ip4(cache, &fl.saddr);
51 if (!rt) {
61 rt = ip_route_output_flow(sock_net(sock), &fl, sock);
62 if (unlikely(endpoint->src_if4 && ((IS_ERR(rt) &&
63 PTR_ERR(rt) == -EINVAL) || (!IS_ERR(rt) &&
64 rt->dst.dev->ifindex != endpoint->src_if4)))) {
70 if (!IS_ERR(rt))
71 ip_rt_put(rt);
[all...]
/linux-master/include/linux/
H A Dinit_task.h19 #include <linux/sched/rt.h>
/linux-master/net/netfilter/
H A Dxt_addrtype.c37 struct rt6_info *rt; local
51 route_err = nf_ip6_route(net, (struct dst_entry **)&rt,
56 if (rt->rt6i_flags & RTF_REJECT)
59 if (dev == NULL && rt->rt6i_flags & RTF_LOCAL)
61 if (ipv6_anycast_destination((struct dst_entry *)rt, addr))
64 dst_release(&rt->dst);
/linux-master/arch/arm/boot/dts/broadcom/
H A DMakefile49 bcm4708-asus-rt-ac56u.dtb \
50 bcm4708-asus-rt-ac68u.dtb \
61 bcm47081-asus-rt-n18u.dtb \
67 bcm4709-asus-rt-ac87u.dtb \
73 bcm47094-asus-rt-ac3100.dtb \
74 bcm47094-asus-rt-ac88u.dtb \
/linux-master/scripts/dtc/include-prefixes/arm/broadcom/
H A DMakefile49 bcm4708-asus-rt-ac56u.dtb \
50 bcm4708-asus-rt-ac68u.dtb \
61 bcm47081-asus-rt-n18u.dtb \
67 bcm4709-asus-rt-ac87u.dtb \
73 bcm47094-asus-rt-ac3100.dtb \
74 bcm47094-asus-rt-ac88u.dtb \
/linux-master/net/mpls/
H A Dmpls_iptunnel.c45 struct rtable *rt = NULL; local
84 rt = (struct rtable *)dst;
133 if (rt) {
134 if (rt->rt_gw_family == AF_INET6)
135 err = neigh_xmit(NEIGH_ND_TABLE, out_dev, &rt->rt_gw6,
138 err = neigh_xmit(NEIGH_ARP_TABLE, out_dev, &rt->rt_gw4,
/linux-master/net/ipv6/
H A Dip6_output.c595 struct rt6_info *rt; local
602 rt = (struct rt6_info *) dst;
603 if (rt->rt6i_flags & RTF_GATEWAY)
604 target = &rt->rt6i_gateway;
859 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb); local
913 hroom = LL_RESERVED_SPACE(rt->dst.dev);
949 /* We prevent @rt from being freed. */
961 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
973 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
981 IP6_INC_STATS(net, ip6_dst_idev(&rt
1056 struct rt6_info *rt; local
1102 struct rt6_info *rt; local
1118 struct rt6_info *rt; local
1308 ip6_append_data_mtu(unsigned int *mtu, int *maxfraglen, unsigned int fragheaderlen, struct sk_buff *skb, struct rt6_info *rt, unsigned int orig_mtu) argument
1332 ip6_setup_cork(struct sock *sk, struct inet_cork_full *cork, struct inet6_cork *v6_cork, struct ipcm6_cookie *ipc6, struct rt6_info *rt) argument
1426 struct rt6_info *rt = (struct rt6_info *)cork->dst; local
1803 ip6_append_data(struct sock *sk, int getfrag(void *from, char *to, int offset, int len, int odd, struct sk_buff *skb), void *from, size_t length, int transhdrlen, struct ipcm6_cookie *ipc6, struct flowi6 *fl6, struct rt6_info *rt, unsigned int flags) argument
1880 struct rt6_info *rt = (struct rt6_info *)cork->base.dst; local
1952 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb); local
2003 ip6_make_skb(struct sock *sk, int getfrag(void *from, char *to, int offset, int len, int odd, struct sk_buff *skb), void *from, size_t length, int transhdrlen, struct ipcm6_cookie *ipc6, struct rt6_info *rt, unsigned int flags, struct inet_cork_full *cork) argument
[all...]
/linux-master/net/ipv4/
H A Dip_options.c45 __be32 daddr, struct rtable *rt)
57 ip_rt_get_source(iph + opt->rr + iph[opt->rr + 2] - 5, skb, rt);
59 ip_rt_get_source(iph + opt->ts + iph[opt->ts + 2] - 9, skb, rt);
247 struct rtable *rt = NULL; local
253 rt = skb_rtable(skb);
329 if (rt) {
370 if (rt) {
542 struct rtable *rt = skb_rtable(skb); local
547 ip_rt_get_source(&optptr[optptr[2]-5], skb, rt);
567 ip_rt_get_source(&optptr[srrptr-1], skb, rt);
44 ip_options_build(struct sk_buff *skb, struct ip_options *opt, __be32 daddr, struct rtable *rt) argument
592 struct rtable *rt = skb_rtable(skb); local
[all...]
H A Dip_tunnel.c292 struct rtable *rt; local
298 rt = ip_route_output_key(tunnel->net, &fl4);
300 if (!IS_ERR(rt)) {
301 tdev = rt->dst.dev;
302 ip_rt_put(rt);
511 struct rtable *rt, __be16 df,
524 mtu = dst_mtu(&rt->dst) - (sizeof(struct iphdr) + tunnel_hlen);
591 struct rtable *rt = NULL; local
624 rt = dst_cache_get_ip4(&tun_info->dst_cache, &fl4.saddr);
625 if (!rt) {
510 tnl_update_pmtu(struct net_device *dev, struct sk_buff *skb, struct rtable *rt, __be16 df, const struct iphdr *inner_iph, int tunnel_hlen, __be32 dst, bool md) argument
688 struct rtable *rt = NULL; /* Route to the other host */ local
[all...]
/linux-master/sound/parisc/
H A Dharmony.c398 struct snd_pcm_runtime *rt = ss->runtime; local
409 h->st.rate = snd_harmony_rate_bits(rt->rate);
410 h->st.format = snd_harmony_set_data_format(h, rt->format, 0);
412 if (rt->channels == 2)
419 h->pbuf.addr = rt->dma_addr;
428 struct snd_pcm_runtime *rt = ss->runtime; local
439 h->st.rate = snd_harmony_rate_bits(rt->rate);
440 h->st.format = snd_harmony_set_data_format(h, rt->format, 0);
442 if (rt->channels == 2)
449 h->cbuf.addr = rt
457 struct snd_pcm_runtime *rt = ss->runtime; local
486 struct snd_pcm_runtime *rt = ss->runtime; local
516 struct snd_pcm_runtime *rt = ss->runtime; local
535 struct snd_pcm_runtime *rt = ss->runtime; local
[all...]
/linux-master/arch/arm/probes/kprobes/
H A Dactions-thumb.c110 int rt = (insn >> 12) & 0xf; local
122 if (rt == 15) {
140 regs->uregs[rt] = rtv;
188 int rt = (insn >> 12) & 0xf; local
192 register unsigned long rtv asm("r0") = regs->uregs[rt];
204 if (rt == 15) /* Can't be true for a STR as they aren't allowed */
207 regs->uregs[rt] = rtv;
325 int rt = (insn >> 8) & 0x7; local
326 regs->uregs[rt] = base[index];
335 int rt local
349 int rt = (insn >> 8) & 0x7; local
[all...]
/linux-master/sound/soc/sh/
H A Dsiu_pcm.c207 struct snd_pcm_runtime *rt = substream->runtime; local
221 buff = (dma_addr_t)PERIOD_OFFSET(rt->dma_addr,
230 (dma_addr_t)PERIOD_OFFSET(rt->dma_addr,
362 struct snd_pcm_runtime *rt; local
371 rt = siu_stream->substream->runtime;
377 info->port_id, rt->channels, siu_stream->period_bytes);
387 xfer_cnt = bytes_to_frames(rt, siu_stream->period_bytes);
391 siu_stream->format = rt->format;
396 (unsigned long)rt->dma_addr, siu_stream->buf_bytes,
398 siu_stream->format, rt
454 struct snd_pcm_runtime *rt = ss->runtime; local
[all...]
/linux-master/drivers/net/ppp/
H A Dpptp.c164 struct rtable *rt; local
172 rt = pptp_route_output(po, &fl4);
173 if (IS_ERR(rt))
176 tdev = rt->dst.dev;
183 ip_rt_put(rt);
241 if (ip_dont_fragment(sk, &rt->dst))
249 iph->ttl = ip4_dst_hoplimit(&rt->dst);
253 skb_dst_set(skb, &rt->dst);
421 struct rtable *rt; local
455 rt
[all...]
/linux-master/kernel/kcsan/
H A Dreport.c133 struct report_time *rt = &report_times[i]; local
141 if (time_before(rt->time, use_entry->time))
142 use_entry = rt;
148 if (rt->time == 0)
152 if (time_before(rt->time, invalid_before))
156 if ((rt->frame1 == frame1 && rt->frame2 == frame2) ||
157 (rt->frame1 == frame2 && rt->frame2 == frame1))
/linux-master/sound/usb/caiaq/
H A Daudio.c368 struct snd_pcm_runtime *rt = sub->runtime; local
369 char *audio_buf = rt->dma_area;
370 int sz = frames_to_bytes(rt, rt->buffer_size);
415 struct snd_pcm_runtime *rt = sub->runtime; local
416 char *audio_buf = rt->dma_area;
417 int sz = frames_to_bytes(rt, rt->buffer_size);
447 struct snd_pcm_runtime *rt = sub->runtime; local
448 audio_buf = rt
528 struct snd_pcm_runtime *rt = sub->runtime; local
564 struct snd_pcm_runtime *rt = sub->runtime; local
[all...]

Completed in 524 milliseconds

1234567891011>>