/linux-4.4.14/sound/usb/6fire/ |
D | midi.c | 28 struct midi_runtime *rt = urb->context; in usb6fire_midi_out_handler() local 32 spin_lock_irqsave(&rt->out_lock, flags); in usb6fire_midi_out_handler() 34 if (rt->out) { in usb6fire_midi_out_handler() 35 ret = snd_rawmidi_transmit(rt->out, rt->out_buffer + 4, in usb6fire_midi_out_handler() 38 rt->out_buffer[1] = ret + 2; in usb6fire_midi_out_handler() 39 rt->out_buffer[3] = rt->out_serial++; in usb6fire_midi_out_handler() 48 rt->out = NULL; in usb6fire_midi_out_handler() 50 spin_unlock_irqrestore(&rt->out_lock, flags); in usb6fire_midi_out_handler() 54 struct midi_runtime *rt, u8 *data, int length) in usb6fire_midi_in_received() argument 58 spin_lock_irqsave(&rt->in_lock, flags); in usb6fire_midi_in_received() [all …]
|
D | pcm.c | 74 static int usb6fire_pcm_set_rate(struct pcm_runtime *rt) in usb6fire_pcm_set_rate() argument 77 struct control_runtime *ctrl_rt = rt->chip->control; in usb6fire_pcm_set_rate() 82 dev_err(&rt->chip->dev->dev, in usb6fire_pcm_set_rate() 84 rates[rt->rate]); in usb6fire_pcm_set_rate() 88 ret = ctrl_rt->set_rate(ctrl_rt, rt->rate); in usb6fire_pcm_set_rate() 90 dev_err(&rt->chip->dev->dev, in usb6fire_pcm_set_rate() 92 rates[rt->rate]); in usb6fire_pcm_set_rate() 99 dev_err(&rt->chip->dev->dev, in usb6fire_pcm_set_rate() 101 rates[rt->rate]); in usb6fire_pcm_set_rate() 108 dev_err(&rt->chip->dev->dev, in usb6fire_pcm_set_rate() [all …]
|
D | control.c | 64 static void usb6fire_control_output_vol_update(struct control_runtime *rt) in usb6fire_control_output_vol_update() argument 66 struct comm_runtime *comm_rt = rt->chip->comm; in usb6fire_control_output_vol_update() 71 if (!(rt->ovol_updated & (1 << i))) { in usb6fire_control_output_vol_update() 73 180 - rt->output_vol[i]); in usb6fire_control_output_vol_update() 74 rt->ovol_updated |= 1 << i; in usb6fire_control_output_vol_update() 78 static void usb6fire_control_output_mute_update(struct control_runtime *rt) in usb6fire_control_output_mute_update() argument 80 struct comm_runtime *comm_rt = rt->chip->comm; in usb6fire_control_output_mute_update() 83 comm_rt->write8(comm_rt, 0x12, 0x0e, ~rt->output_mute); in usb6fire_control_output_mute_update() 86 static void usb6fire_control_input_vol_update(struct control_runtime *rt) in usb6fire_control_input_vol_update() argument 88 struct comm_runtime *comm_rt = rt->chip->comm; in usb6fire_control_input_vol_update() [all …]
|
D | comm.c | 25 static void usb6fire_comm_init_urb(struct comm_runtime *rt, struct urb *urb, in usb6fire_comm_init_urb() argument 30 urb->pipe = usb_sndintpipe(rt->chip->dev, COMM_EP); in usb6fire_comm_init_urb() 34 urb->dev = rt->chip->dev; in usb6fire_comm_init_urb() 39 struct comm_runtime *rt = urb->context; in usb6fire_comm_receiver_handler() local 40 struct midi_runtime *midi_rt = rt->chip->midi; in usb6fire_comm_receiver_handler() 43 if (rt->receiver_buffer[0] == 0x10) /* midi in event */ in usb6fire_comm_receiver_handler() 46 rt->receiver_buffer + 2, in usb6fire_comm_receiver_handler() 47 rt->receiver_buffer[1]); in usb6fire_comm_receiver_handler() 50 if (!rt->chip->shutdown) { in usb6fire_comm_receiver_handler() 110 static int usb6fire_comm_write8(struct comm_runtime *rt, u8 request, in usb6fire_comm_write8() argument [all …]
|
D | comm.h | 31 void (*init_urb)(struct comm_runtime *rt, struct urb *urb, u8 *buffer, 34 int (*write8)(struct comm_runtime *rt, u8 request, u8 reg, u8 value); 35 int (*write16)(struct comm_runtime *rt, u8 request, u8 reg,
|
D | control.h | 34 int (*update_streaming)(struct control_runtime *rt); 35 int (*set_rate)(struct control_runtime *rt, int rate); 36 int (*set_channels)(struct control_runtime *rt, int n_analog_out,
|
D | midi.h | 34 void (*in_received)(struct midi_runtime *rt, u8 *data, int length);
|
/linux-4.4.14/arch/mips/ralink/ |
D | timer.c | 38 static inline void rt_timer_w32(struct rt_timer *rt, u8 reg, u32 val) in rt_timer_w32() argument 40 __raw_writel(val, rt->membase + reg); in rt_timer_w32() 43 static inline u32 rt_timer_r32(struct rt_timer *rt, u8 reg) in rt_timer_r32() argument 45 return __raw_readl(rt->membase + reg); in rt_timer_r32() 50 struct rt_timer *rt = (struct rt_timer *) _rt; in rt_timer_irq() local 52 rt_timer_w32(rt, TIMER_REG_TMR0LOAD, rt->timer_freq / rt->timer_div); in rt_timer_irq() 53 rt_timer_w32(rt, TIMER_REG_TMRSTAT, TMRSTAT_TMR0INT); in rt_timer_irq() 59 static int rt_timer_request(struct rt_timer *rt) in rt_timer_request() argument 61 int err = request_irq(rt->irq, rt_timer_irq, 0, in rt_timer_request() 62 dev_name(rt->dev), rt); in rt_timer_request() [all …]
|
/linux-4.4.14/net/x25/ |
D | x25_route.c | 34 struct x25_route *rt; in x25_add_route() local 41 rt = list_entry(entry, struct x25_route, node); in x25_add_route() 43 if (!memcmp(&rt->address, address, sigdigits) && in x25_add_route() 44 rt->sigdigits == sigdigits) in x25_add_route() 48 rt = kmalloc(sizeof(*rt), GFP_ATOMIC); in x25_add_route() 50 if (!rt) in x25_add_route() 53 strcpy(rt->address.x25_addr, "000000000000000"); in x25_add_route() 54 memcpy(rt->address.x25_addr, address->x25_addr, sigdigits); in x25_add_route() 56 rt->sigdigits = sigdigits; in x25_add_route() 57 rt->dev = dev; in x25_add_route() [all …]
|
D | x25_forward.c | 25 struct x25_route *rt; in x25_forward_call() local 33 if ((rt = x25_get_route(dest_addr)) == NULL) in x25_forward_call() 36 if ((neigh_new = x25_get_neigh(rt->dev)) == NULL) { in x25_forward_call() 46 if (rt->dev == from->dev) { in x25_forward_call() 71 new_frwd->dev1 = rt->dev; in x25_forward_call() 90 x25_route_put(rt); in x25_forward_call()
|
D | x25_proc.c | 50 struct x25_route *rt = list_entry(v, struct x25_route, node); in x25_seq_route_show() local 57 rt = v; in x25_seq_route_show() 59 rt->address.x25_addr, rt->sigdigits, in x25_seq_route_show() 60 rt->dev ? rt->dev->name : "???"); in x25_seq_route_show()
|
/linux-4.4.14/sound/aoa/core/ |
D | gpio-pmf.c | 15 static void pmf_gpio_set_##name(struct gpio_runtime *rt, int on)\ 20 if (unlikely(!rt)) return; \ 21 rc = pmf_call_function(rt->node, #name "-mute", &args); \ 25 rt->implementation_private &= ~(1<<bit); \ 26 rt->implementation_private |= (!!on << bit); \ 28 static int pmf_gpio_get_##name(struct gpio_runtime *rt) \ 30 if (unlikely(!rt)) return 0; \ 31 return (rt->implementation_private>>bit)&1; \ 38 static void pmf_gpio_set_hw_reset(struct gpio_runtime *rt, int on) in pmf_gpio_set_hw_reset() argument 43 if (unlikely(!rt)) return; in pmf_gpio_set_hw_reset() [all …]
|
D | gpio-feature.c | 131 static void ftr_gpio_set_##name(struct gpio_runtime *rt, int on)\ 135 if (unlikely(!rt)) return; \ 150 rt->implementation_private &= ~(1<<bit); \ 151 rt->implementation_private |= (!!on << bit); \ 153 static int ftr_gpio_get_##name(struct gpio_runtime *rt) \ 155 if (unlikely(!rt)) return 0; \ 156 return (rt->implementation_private>>bit)&1; \ 164 static void ftr_gpio_set_hw_reset(struct gpio_runtime *rt, int on) in ftr_gpio_set_hw_reset() argument 168 if (unlikely(!rt)) return; in ftr_gpio_set_hw_reset() 181 static void ftr_gpio_all_amps_off(struct gpio_runtime *rt) in ftr_gpio_all_amps_off() argument [all …]
|
/linux-4.4.14/sound/usb/hiface/ |
D | pcm.c | 116 static int hiface_pcm_set_rate(struct pcm_runtime *rt, unsigned int rate) in hiface_pcm_set_rate() argument 118 struct usb_device *device = rt->chip->dev; in hiface_pcm_set_rate() 178 struct pcm_runtime *rt = snd_pcm_substream_chip(alsa_sub); in hiface_pcm_get_substream() local 179 struct device *device = &rt->chip->dev->dev; in hiface_pcm_get_substream() 182 return &rt->playback; in hiface_pcm_get_substream() 189 static void hiface_pcm_stream_stop(struct pcm_runtime *rt) in hiface_pcm_stream_stop() argument 193 if (rt->stream_state != STREAM_DISABLED) { in hiface_pcm_stream_stop() 194 rt->stream_state = STREAM_STOPPING; in hiface_pcm_stream_stop() 198 &rt->out_urbs[i].submitted, 100); in hiface_pcm_stream_stop() 201 &rt->out_urbs[i].submitted); in hiface_pcm_stream_stop() [all …]
|
/linux-4.4.14/net/ipv6/ |
D | route.c | 79 static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort); 98 static void rt6_dst_from_metrics_check(struct rt6_info *rt); 99 static int rt6_score_route(struct rt6_info *rt, int oif, int strict); 118 static void rt6_uncached_list_add(struct rt6_info *rt) in rt6_uncached_list_add() argument 122 rt->dst.flags |= DST_NOCACHE; in rt6_uncached_list_add() 123 rt->rt6i_uncached_list = ul; in rt6_uncached_list_add() 126 list_add_tail(&rt->rt6i_uncached, &ul->head); in rt6_uncached_list_add() 130 static void rt6_uncached_list_del(struct rt6_info *rt) in rt6_uncached_list_del() argument 132 if (!list_empty(&rt->rt6i_uncached)) { in rt6_uncached_list_del() 133 struct uncached_list *ul = rt->rt6i_uncached_list; in rt6_uncached_list_del() [all …]
|
D | ip6_fib.c | 158 static void rt6_rcu_free(struct rt6_info *rt) in rt6_rcu_free() argument 160 call_rcu(&rt->dst.rcu_head, dst_rcu_free); in rt6_rcu_free() 185 static void rt6_release(struct rt6_info *rt) in rt6_release() argument 187 if (atomic_dec_and_test(&rt->rt6i_ref)) { in rt6_release() 188 rt6_free_pcpu(rt); in rt6_release() 189 rt6_rcu_free(rt); in rt6_release() 289 struct rt6_info *rt; in fib6_rule_lookup() local 291 rt = lookup(net, net->ipv6.fib6_main_tbl, fl6, flags); in fib6_rule_lookup() 292 if (rt->rt6i_flags & RTF_REJECT && in fib6_rule_lookup() 293 rt->dst.error == -EAGAIN) { in fib6_rule_lookup() [all …]
|
D | fib6_rules.c | 35 struct rt6_info *rt; in fib6_rule_lookup() local 44 rt = arg.result; in fib6_rule_lookup() 46 if (!rt) { in fib6_rule_lookup() 51 if (rt->rt6i_flags & RTF_REJECT && in fib6_rule_lookup() 52 rt->dst.error == -EAGAIN) { in fib6_rule_lookup() 53 ip6_rt_put(rt); in fib6_rule_lookup() 54 rt = net->ipv6.ip6_null_entry; in fib6_rule_lookup() 55 dst_hold(&rt->dst); in fib6_rule_lookup() 58 return &rt->dst; in fib6_rule_lookup() 65 struct rt6_info *rt = NULL; in fib6_rule_action() local [all …]
|
D | ip6_output.c | 465 struct rt6_info *rt; in ip6_forward() local 472 rt = (struct rt6_info *) dst; in ip6_forward() 473 if (rt->rt6i_flags & RTF_GATEWAY) in ip6_forward() 474 target = &rt->rt6i_gateway; in ip6_forward() 563 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb); in ip6_fragment() local 610 hroom = LL_RESERVED_SPACE(rt->dst.dev); in ip6_fragment() 672 dst_hold(&rt->dst); in ip6_fragment() 700 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst), in ip6_fragment() 714 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst), in ip6_fragment() 716 ip6_rt_put(rt); in ip6_fragment() [all …]
|
D | anycast.c | 79 struct rt6_info *rt; in ipv6_sock_ac_join() local 81 rt = rt6_lookup(net, addr, NULL, 0, 0); in ipv6_sock_ac_join() 82 if (rt) { in ipv6_sock_ac_join() 83 dev = rt->dst.dev; in ipv6_sock_ac_join() 84 ip6_rt_put(rt); in ipv6_sock_ac_join() 218 static struct ifacaddr6 *aca_alloc(struct rt6_info *rt, in aca_alloc() argument 221 struct inet6_dev *idev = rt->rt6i_idev; in aca_alloc() 231 aca->aca_rt = rt; in aca_alloc() 246 struct rt6_info *rt; in __ipv6_dev_ac_inc() local 265 rt = addrconf_dst_alloc(idev, addr, true); in __ipv6_dev_ac_inc() [all …]
|
D | xfrm6_policy.c | 81 struct rt6_info *rt = (struct rt6_info *)dst; in xfrm6_init_path() local 82 path->path_cookie = rt6_get_cookie(rt); in xfrm6_init_path() 93 struct rt6_info *rt = (struct rt6_info *)xdst->route; in xfrm6_fill_dst() local 106 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST | in xfrm6_fill_dst() 108 xdst->u.rt6.rt6i_metric = rt->rt6i_metric; in xfrm6_fill_dst() 109 xdst->u.rt6.rt6i_node = rt->rt6i_node; in xfrm6_fill_dst() 110 xdst->route_cookie = rt6_get_cookie(rt); in xfrm6_fill_dst() 111 xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway; in xfrm6_fill_dst() 112 xdst->u.rt6.rt6i_dst = rt->rt6i_dst; in xfrm6_fill_dst() 113 xdst->u.rt6.rt6i_src = rt->rt6i_src; in xfrm6_fill_dst()
|
D | ndisc.c | 1086 struct rt6_info *rt = NULL; in ndisc_router_discovery() local 1203 rt = rt6_get_dflt_router(&ipv6_hdr(skb)->saddr, skb->dev); in ndisc_router_discovery() 1205 if (rt) { in ndisc_router_discovery() 1206 neigh = dst_neigh_lookup(&rt->dst, &ipv6_hdr(skb)->saddr); in ndisc_router_discovery() 1211 ip6_rt_put(rt); in ndisc_router_discovery() 1215 if (rt && lifetime == 0) { in ndisc_router_discovery() 1216 ip6_del_rt(rt); in ndisc_router_discovery() 1217 rt = NULL; in ndisc_router_discovery() 1221 rt, lifetime, skb->dev->name); in ndisc_router_discovery() 1222 if (!rt && lifetime) { in ndisc_router_discovery() [all …]
|
D | ip6_tunnel.c | 637 struct rtable *rt; in ip4ip6_err() local 682 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL, in ip4ip6_err() 686 if (IS_ERR(rt)) in ip4ip6_err() 689 skb2->dev = rt->dst.dev; in ip4ip6_err() 692 if (rt->rt_flags & RTCF_LOCAL) { in ip4ip6_err() 693 ip_rt_put(rt); in ip4ip6_err() 694 rt = NULL; in ip4ip6_err() 695 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL, in ip4ip6_err() 700 if (IS_ERR(rt) || in ip4ip6_err() 701 rt->dst.dev->type != ARPHRD_TUNNEL) { in ip4ip6_err() [all …]
|
D | sit.c | 488 struct rt6_info *rt; in ipip6_err_gen_icmpv6_unreach() local 503 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr, NULL, 0, 0); in ipip6_err_gen_icmpv6_unreach() 505 if (rt && rt->dst.dev) in ipip6_err_gen_icmpv6_unreach() 506 skb2->dev = rt->dst.dev; in ipip6_err_gen_icmpv6_unreach() 510 if (rt) in ipip6_err_gen_icmpv6_unreach() 511 ip6_rt_put(rt); in ipip6_err_gen_icmpv6_unreach() 814 struct rtable *rt; /* Route to the other host */ in ipip6_tunnel_xmit() local 893 rt = ip_route_output_ports(tunnel->net, &fl4, NULL, in ipip6_tunnel_xmit() 898 if (IS_ERR(rt)) { in ipip6_tunnel_xmit() 902 if (rt->rt_type != RTN_UNICAST) { in ipip6_tunnel_xmit() [all …]
|
D | ping.c | 92 struct rt6_info *rt; in ping_v6_sendmsg() local 150 rt = (struct rt6_info *) dst; in ping_v6_sendmsg() 175 np->tclass, NULL, &fl6, rt, in ping_v6_sendmsg() 179 ICMP6_INC_STATS(sock_net(sk), rt->rt6i_idev, in ping_v6_sendmsg()
|
D | addrconf.c | 866 ip6_rt_put(ifp->rt); in inet6_ifa_finish_destroy() 904 struct rt6_info *rt; in ipv6_add_addr() local 943 rt = addrconf_dst_alloc(idev, addr, false); in ipv6_add_addr() 944 if (IS_ERR(rt)) { in ipv6_add_addr() 945 err = PTR_ERR(rt); in ipv6_add_addr() 966 ifa->rt = rt; in ipv6_add_addr() 1070 struct rt6_info *rt; in cleanup_prefix_route() local 1072 rt = addrconf_get_prefix_route(&ifp->addr, in cleanup_prefix_route() 1076 if (rt) { in cleanup_prefix_route() 1078 ip6_del_rt(rt); in cleanup_prefix_route() [all …]
|
D | raw.c | 621 struct rt6_info *rt = (struct rt6_info *)*dstp; in rawv6_send_hdrinc() local 622 int hlen = LL_RESERVED_SPACE(rt->dst.dev); in rawv6_send_hdrinc() 623 int tlen = rt->dst.dev->needed_tailroom; in rawv6_send_hdrinc() 625 if (length > rt->dst.dev->mtu) { in rawv6_send_hdrinc() 626 ipv6_local_error(sk, EMSGSIZE, fl6, rt->dst.dev->mtu); in rawv6_send_hdrinc() 642 skb_dst_set(skb, &rt->dst); in rawv6_send_hdrinc() 656 IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len); in rawv6_send_hdrinc() 658 NULL, rt->dst.dev, dst_output); in rawv6_send_hdrinc() 670 IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS); in rawv6_send_hdrinc()
|
D | mip6.c | 418 struct ipv6_rt_hdr *rt; in mip6_rthdr_offset() local 419 rt = (struct ipv6_rt_hdr *)(nh + offset); in mip6_rthdr_offset() 420 if (rt->type != 0) in mip6_rthdr_offset()
|
/linux-4.4.14/drivers/net/appletalk/ |
D | ipddp.c | 55 static int ipddp_delete(struct ipddp_route *rt); 56 static struct ipddp_route* __ipddp_find_route(struct ipddp_route *rt); 122 struct ipddp_route *rt; in ipddp_xmit() local 130 for(rt = ipddp_route_list; rt != NULL; rt = rt->next) in ipddp_xmit() 132 if(rt->ip == paddr) in ipddp_xmit() 135 if(rt == NULL) { in ipddp_xmit() 140 our_addr = atalk_find_dev_addr(rt->dev); in ipddp_xmit() 159 if(rt->dev->type == ARPHRD_LOCALTLK) in ipddp_xmit() 166 ddp->deh_dnet = rt->at.s_net; /* FIXME more hops?? */ in ipddp_xmit() 169 ddp->deh_dnode = rt->at.s_node; in ipddp_xmit() [all …]
|
/linux-4.4.14/net/decnet/ |
D | dn_route.c | 156 struct dn_route *rt = (struct dn_route *) dst; in dn_dst_destroy() local 158 if (rt->n) in dn_dst_destroy() 159 neigh_release(rt->n); in dn_dst_destroy() 166 struct dn_route *rt = (struct dn_route *) dst; in dn_dst_ifdown() local 167 struct neighbour *n = rt->n; in dn_dst_ifdown() 186 static inline void dnrt_free(struct dn_route *rt) in dnrt_free() argument 188 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free); in dnrt_free() 191 static inline void dnrt_drop(struct dn_route *rt) in dnrt_drop() argument 193 dst_release(&rt->dst); in dnrt_drop() 194 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free); in dnrt_drop() [all …]
|
D | dn_neigh.c | 175 struct dn_route *rt = (struct dn_route *)dst; in dn_neigh_output() local 181 dn_dn2eth(mac_addr, rt->rt_local_src); in dn_neigh_output() 200 struct dn_route *rt = (struct dn_route *)dst; in dn_neigh_output_packet() local 201 struct neighbour *neigh = rt->n; in dn_neigh_output_packet() 340 struct dn_route *rt = (struct dn_route *) dst; in dn_to_neigh_output() local 341 struct neighbour *neigh = rt->n; in dn_to_neigh_output()
|
/linux-4.4.14/arch/mips/include/asm/ |
D | uasm.h | 200 # define UASM_i_ADDIU(buf, rs, rt, val) uasm_i_daddiu(buf, rs, rt, val) argument 201 # define UASM_i_ADDU(buf, rs, rt, rd) uasm_i_daddu(buf, rs, rt, rd) argument 202 # define UASM_i_LL(buf, rs, rt, off) uasm_i_lld(buf, rs, rt, off) argument 203 # define UASM_i_LW(buf, rs, rt, off) uasm_i_ld(buf, rs, rt, off) argument 204 # define UASM_i_LWX(buf, rs, rt, rd) uasm_i_ldx(buf, rs, rt, rd) argument 205 # define UASM_i_MFC0(buf, rt, rd...) uasm_i_dmfc0(buf, rt, rd) argument 206 # define UASM_i_MTC0(buf, rt, rd...) uasm_i_dmtc0(buf, rt, rd) argument 207 # define UASM_i_ROTR(buf, rs, rt, sh) uasm_i_drotr(buf, rs, rt, sh) argument 208 # define UASM_i_SC(buf, rs, rt, off) uasm_i_scd(buf, rs, rt, off) argument 209 # define UASM_i_SLL(buf, rs, rt, sh) uasm_i_dsll(buf, rs, rt, sh) argument [all …]
|
D | asm.h | 178 #define MOVN(rd, rs, rt) \ argument 181 beqz rt, 9f; \ 185 #define MOVZ(rd, rs, rt) \ argument 188 bnez rt, 9f; \ 194 #define MOVN(rd, rs, rt) \ argument 197 bnezl rt, 9f; \ 201 #define MOVZ(rd, rs, rt) \ argument 204 beqzl rt, 9f; \ 211 #define MOVN(rd, rs, rt) \ argument 212 movn rd, rs, rt [all …]
|
D | mipsmtregs.h | 284 #define mftc0(rt,sel) \ argument 292 " # mftc0 $1, $" #rt ", " #sel " \n" \ 293 " .word 0x41000800 | (" #rt " << 16) | " #sel " \n" \ 301 #define mftgpr(rt) \ argument 309 " # mftgpr $1," #rt " \n" \ 310 " .word 0x41000820 | (" #rt " << 16) \n" \ 318 #define mftr(rt, u, sel) \ argument 323 " mftr %0, " #rt ", " #u ", " #sel " \n" \
|
D | asmmacro.h | 205 .macro MFTR rt=0, rd=0, u=0, sel=0 206 .word 0x41000000 | (\rt << 16) | (\rd << 11) | (\u << 5) | (\sel) 209 .macro MTTR rt=0, rd=0, u=0, sel=0 210 .word 0x41800000 | (\rt << 16) | (\rd << 11) | (\u << 5) | (\sel)
|
/linux-4.4.14/sound/aoa/ |
D | aoa-gpio.h | 26 void (*init)(struct gpio_runtime *rt); 27 void (*exit)(struct gpio_runtime *rt); 30 void (*all_amps_off)(struct gpio_runtime *rt); 32 void (*all_amps_restore)(struct gpio_runtime *rt); 34 void (*set_headphone)(struct gpio_runtime *rt, int on); 35 void (*set_speakers)(struct gpio_runtime *rt, int on); 36 void (*set_lineout)(struct gpio_runtime *rt, int on); 37 void (*set_master)(struct gpio_runtime *rt, int on); 39 int (*get_headphone)(struct gpio_runtime *rt); 40 int (*get_speakers)(struct gpio_runtime *rt); [all …]
|
/linux-4.4.14/include/net/ |
D | ip6_fib.h | 143 static inline void rt6_clean_expires(struct rt6_info *rt) in rt6_clean_expires() argument 145 rt->rt6i_flags &= ~RTF_EXPIRES; in rt6_clean_expires() 146 rt->dst.expires = 0; in rt6_clean_expires() 149 static inline void rt6_set_expires(struct rt6_info *rt, unsigned long expires) in rt6_set_expires() argument 151 rt->dst.expires = expires; in rt6_set_expires() 152 rt->rt6i_flags |= RTF_EXPIRES; in rt6_set_expires() 157 struct rt6_info *rt; in rt6_update_expires() local 159 for (rt = rt0; rt && !(rt->rt6i_flags & RTF_EXPIRES); in rt6_update_expires() 160 rt = (struct rt6_info *)rt->dst.from); in rt6_update_expires() 161 if (rt && rt != rt0) in rt6_update_expires() [all …]
|
D | route.h | 75 static inline bool rt_is_input_route(const struct rtable *rt) in rt_is_input_route() argument 77 return rt->rt_is_input != 0; in rt_is_input_route() 80 static inline bool rt_is_output_route(const struct rtable *rt) in rt_is_output_route() argument 82 return rt->rt_is_input == 0; in rt_is_output_route() 85 static inline __be32 rt_nexthop(const struct rtable *rt, __be32 daddr) in rt_nexthop() argument 87 if (rt->rt_gateway) in rt_nexthop() 88 return rt->rt_gateway; in rt_nexthop() 211 void ip_rt_get_source(u8 *src, struct sk_buff *skb, struct rtable *rt); 217 static inline void ip_rt_put(struct rtable *rt) in ip_rt_put() argument 223 dst_release(&rt->dst); in ip_rt_put() [all …]
|
D | ip6_route.h | 89 int ip6_route_get_saddr(struct net *net, struct rt6_info *rt, 134 int rt6_dump_route(struct rt6_info *rt, void *p_arg); 160 struct rt6_info *rt = (struct rt6_info *) skb_dst(skb); in ipv6_unicast_destination() local 162 return rt->rt6i_flags & RTF_LOCAL; in ipv6_unicast_destination() 168 struct rt6_info *rt = (struct rt6_info *)dst; in ipv6_anycast_destination() local 170 return rt->rt6i_flags & RTF_ANYCAST || in ipv6_anycast_destination() 171 (rt->rt6i_dst.plen != 128 && in ipv6_anycast_destination() 172 ipv6_addr_equal(&rt->rt6i_dst.addr, daddr)); in ipv6_anycast_destination() 199 static inline struct in6_addr *rt6_nexthop(struct rt6_info *rt, in rt6_nexthop() argument 202 if (rt->rt6i_flags & RTF_GATEWAY) in rt6_nexthop() [all …]
|
D | dn_route.h | 88 static inline bool dn_is_input_route(struct dn_route *rt) in dn_is_input_route() argument 90 return rt->fld.flowidn_iif != 0; in dn_is_input_route() 93 static inline bool dn_is_output_route(struct dn_route *rt) in dn_is_output_route() argument 95 return rt->fld.flowidn_iif == 0; in dn_is_output_route()
|
D | ipx.h | 164 static __inline__ void ipxrtr_hold(struct ipx_route *rt) in ipxrtr_hold() argument 166 atomic_inc(&rt->refcnt); in ipxrtr_hold() 169 static __inline__ void ipxrtr_put(struct ipx_route *rt) in ipxrtr_put() argument 171 if (atomic_dec_and_test(&rt->refcnt)) in ipxrtr_put() 172 kfree(rt); in ipxrtr_put()
|
D | x25.h | 266 static __inline__ void x25_route_hold(struct x25_route *rt) in x25_route_hold() argument 268 atomic_inc(&rt->refcnt); in x25_route_hold() 271 static __inline__ void x25_route_put(struct x25_route *rt) in x25_route_put() argument 273 if (atomic_dec_and_test(&rt->refcnt)) in x25_route_put() 274 kfree(rt); in x25_route_put()
|
D | udp_tunnel.h | 81 int udp_tunnel_xmit_skb(struct rtable *rt, struct sock *sk, struct sk_buff *skb,
|
D | if_inet6.h | 65 struct rt6_info *rt; member
|
/linux-4.4.14/arch/mips/cavium-octeon/crypto/ |
D | octeon-crypto.h | 36 : [rt] "d" (cpu_to_be64(value))); \ 48 : [rt] "=d" (__value) \ 62 : [rt] "d" (cpu_to_be64(value))); \ 73 : [rt] "d" (cpu_to_be64(value))); \ 84 : [rt] "d" (value)); \ 95 : [rt] "d" (value)); \ 110 : [rt] "d" (value)); \ 122 : [rt] "=d" (__value) \ 136 : [rt] "d" (value)); \ 147 : [rt] "d" (value)); \ [all …]
|
/linux-4.4.14/net/ipx/ |
D | ipx_route.c | 51 struct ipx_route *rt; in ipxrtr_add_route() local 55 rt = ipxrtr_lookup(network); in ipxrtr_add_route() 56 if (!rt) { in ipxrtr_add_route() 57 rt = kmalloc(sizeof(*rt), GFP_ATOMIC); in ipxrtr_add_route() 59 if (!rt) in ipxrtr_add_route() 62 atomic_set(&rt->refcnt, 1); in ipxrtr_add_route() 63 ipxrtr_hold(rt); in ipxrtr_add_route() 65 list_add(&rt->node, &ipx_routes); in ipxrtr_add_route() 73 rt->ir_net = network; in ipxrtr_add_route() 74 rt->ir_intrfc = intrfc; in ipxrtr_add_route() [all …]
|
D | ipx_proc.c | 81 struct ipx_route *rt; in ipx_seq_route_show() local 88 rt = list_entry(v, struct ipx_route, node); in ipx_seq_route_show() 90 seq_printf(seq, "%08X ", ntohl(rt->ir_net)); in ipx_seq_route_show() 91 if (rt->ir_routed) in ipx_seq_route_show() 93 ntohl(rt->ir_intrfc->if_netnum), in ipx_seq_route_show() 94 rt->ir_router_node[0], rt->ir_router_node[1], in ipx_seq_route_show() 95 rt->ir_router_node[2], rt->ir_router_node[3], in ipx_seq_route_show() 96 rt->ir_router_node[4], rt->ir_router_node[5]); in ipx_seq_route_show()
|
/linux-4.4.14/net/ipv4/ |
D | route.c | 449 const struct rtable *rt; in ipv4_neigh_lookup() local 452 rt = (const struct rtable *) dst; in ipv4_neigh_lookup() 453 if (rt->rt_gateway) in ipv4_neigh_lookup() 454 pkey = (const __be32 *) &rt->rt_gateway; in ipv4_neigh_lookup() 562 static inline void rt_free(struct rtable *rt) in rt_free() argument 564 call_rcu(&rt->dst.rcu_head, dst_rcu_free); in rt_free() 571 struct rtable *rt; in fnhe_flush_routes() local 573 rt = rcu_dereference(fnhe->fnhe_rth_input); in fnhe_flush_routes() 574 if (rt) { in fnhe_flush_routes() 576 rt_free(rt); in fnhe_flush_routes() [all …]
|
D | icmp.c | 289 static bool icmpv4_xrlim_allow(struct net *net, struct rtable *rt, in icmpv4_xrlim_allow() argument 292 struct dst_entry *dst = &rt->dst; in icmpv4_xrlim_allow() 356 struct ipcm_cookie *ipc, struct rtable **rt) in icmp_push_reply() argument 361 sk = icmp_sk(dev_net((*rt)->dst.dev)); in icmp_push_reply() 365 ipc, rt, MSG_DONTWAIT) < 0) { in icmp_push_reply() 392 struct rtable *rt = skb_rtable(skb); in icmp_reply() local 393 struct net *net = dev_net(rt->dst.dev); in icmp_reply() 432 rt = ip_route_output_key(net, &fl4); in icmp_reply() 433 if (IS_ERR(rt)) in icmp_reply() 435 if (icmpv4_xrlim_allow(net, rt, &fl4, icmp_param->data.icmph.type, in icmp_reply() [all …]
|
D | datagram.c | 28 struct rtable *rt; in __ip4_datagram_connect() local 51 rt = ip_route_connect(fl4, usin->sin_addr.s_addr, saddr, in __ip4_datagram_connect() 55 if (IS_ERR(rt)) { in __ip4_datagram_connect() 56 err = PTR_ERR(rt); in __ip4_datagram_connect() 62 if ((rt->rt_flags & RTCF_BROADCAST) && !sock_flag(sk, SOCK_BROADCAST)) { in __ip4_datagram_connect() 63 ip_rt_put(rt); in __ip4_datagram_connect() 80 sk_dst_set(sk, &rt->dst); in __ip4_datagram_connect() 109 struct rtable *rt; in ip4_datagram_release_cb() local 121 rt = ip_route_output_ports(sock_net(sk), &fl4, sk, daddr, in ip4_datagram_release_cb() 126 dst = !IS_ERR(rt) ? &rt->dst : NULL; in ip4_datagram_release_cb()
|
D | xfrm4_policy.c | 27 struct rtable *rt; in __xfrm4_dst_lookup() local 38 rt = __ip_route_output_key(net, fl4); in __xfrm4_dst_lookup() 39 if (!IS_ERR(rt)) in __xfrm4_dst_lookup() 40 return &rt->dst; in __xfrm4_dst_lookup() 42 return ERR_CAST(rt); in __xfrm4_dst_lookup() 83 struct rtable *rt = (struct rtable *)xdst->route; in xfrm4_fill_dst() local 86 xdst->u.rt.rt_iif = fl4->flowi4_iif; in xfrm4_fill_dst() 93 xdst->u.rt.rt_is_input = rt->rt_is_input; in xfrm4_fill_dst() 94 xdst->u.rt.rt_flags = rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST | in xfrm4_fill_dst() 96 xdst->u.rt.rt_type = rt->rt_type; in xfrm4_fill_dst() [all …]
|
D | ip_output.c | 139 struct rtable *rt = skb_rtable(skb); in ip_build_and_send_pkt() local 150 iph->ttl = ip_select_ttl(inet, &rt->dst); in ip_build_and_send_pkt() 154 if (ip_dont_fragment(sk, &rt->dst)) { in ip_build_and_send_pkt() 164 ip_options_build(skb, &opt->opt, daddr, rt, 0); in ip_build_and_send_pkt() 178 struct rtable *rt = (struct rtable *)dst; in ip_finish_output2() local 184 if (rt->rt_type == RTN_MULTICAST) { in ip_finish_output2() 186 } else if (rt->rt_type == RTN_BROADCAST) in ip_finish_output2() 205 nexthop = (__force u32) rt_nexthop(rt, ip_hdr(skb)->daddr); in ip_finish_output2() 290 struct rtable *rt = skb_rtable(skb); in ip_mc_output() local 291 struct net_device *dev = rt->dst.dev; in ip_mc_output() [all …]
|
D | ip_forward.c | 82 struct rtable *rt; /* Route we use */ in ip_forward() local 116 rt = skb_rtable(skb); in ip_forward() 118 if (opt->is_strictroute && rt->rt_uses_gateway) in ip_forward() 122 mtu = ip_dst_mtu_maybe_forward(&rt->dst, true); in ip_forward() 131 if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+rt->dst.header_len)) in ip_forward() 149 net, NULL, skb, skb->dev, rt->dst.dev, in ip_forward()
|
D | netfilter.c | 23 struct rtable *rt; in ip_route_me_harder() local 45 rt = ip_route_output_key(net, &fl4); in ip_route_me_harder() 46 if (IS_ERR(rt)) in ip_route_me_harder() 47 return PTR_ERR(rt); in ip_route_me_harder() 51 skb_dst_set(skb, &rt->dst); in ip_route_me_harder() 178 struct rtable *rt = ip_route_output_key(net, &fl->u.ip4); in nf_ip_route() local 179 if (IS_ERR(rt)) in nf_ip_route() 180 return PTR_ERR(rt); in nf_ip_route() 181 *dst = &rt->dst; in nf_ip_route()
|
D | fib_frontend.c | 282 struct rtable *rt; in fib_compute_spec_dst() local 286 rt = skb_rtable(skb); in fib_compute_spec_dst() 287 if ((rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST | RTCF_LOCAL)) == in fib_compute_spec_dst() 439 static int rtentry_to_fib_config(struct net *net, int cmd, struct rtentry *rt, in rtentry_to_fib_config() argument 448 if (rt->rt_dst.sa_family != AF_INET) in rtentry_to_fib_config() 460 addr = sk_extract_addr(&rt->rt_dst); in rtentry_to_fib_config() 461 if (!(rt->rt_flags & RTF_HOST)) { in rtentry_to_fib_config() 462 __be32 mask = sk_extract_addr(&rt->rt_genmask); in rtentry_to_fib_config() 464 if (rt->rt_genmask.sa_family != AF_INET) { in rtentry_to_fib_config() 465 if (mask || rt->rt_genmask.sa_family) in rtentry_to_fib_config() [all …]
|
D | arp.c | 430 struct rtable *rt; in arp_filter() local 435 rt = ip_route_output(net, sip, tip, 0, 0); in arp_filter() 436 if (IS_ERR(rt)) in arp_filter() 438 if (rt->dst.dev != dev) { in arp_filter() 442 ip_rt_put(rt); in arp_filter() 450 struct net_device *dev, struct rtable *rt) in arp_fwd_proxy() argument 455 if (rt->dst.dev == dev) in arp_fwd_proxy() 468 out_dev = __in_dev_get_rcu(rt->dst.dev); in arp_fwd_proxy() 495 struct net_device *dev, struct rtable *rt, in arp_fwd_pvlan() argument 499 if (rt->dst.dev != dev) in arp_fwd_pvlan() [all …]
|
D | ip_options.c | 44 __be32 daddr, struct rtable *rt, int is_frag) in ip_options_build() argument 57 ip_rt_get_source(iph+opt->rr+iph[opt->rr+2]-5, skb, rt); in ip_options_build() 59 ip_rt_get_source(iph+opt->ts+iph[opt->ts+2]-9, skb, rt); in ip_options_build() 262 struct rtable *rt = NULL; in ip_options_compile() local 268 rt = skb_rtable(skb); in ip_options_compile() 344 if (rt) { in ip_options_compile() 385 if (rt) { in ip_options_compile() 564 struct rtable *rt = skb_rtable(skb); in ip_forward_options() local 569 ip_rt_get_source(&optptr[optptr[2]-5], skb, rt); in ip_forward_options() 589 ip_rt_get_source(&optptr[srrptr-1], skb, rt); in ip_forward_options() [all …]
|
D | ip_tunnel.c | 376 struct rtable *rt; in ip_tunnel_bind_dev() local 381 rt = ip_route_output_key(tunnel->net, &fl4); in ip_tunnel_bind_dev() 383 if (!IS_ERR(rt)) { in ip_tunnel_bind_dev() 384 tdev = rt->dst.dev; in ip_tunnel_bind_dev() 385 tunnel_dst_set(tunnel, &rt->dst, fl4.saddr); in ip_tunnel_bind_dev() 386 ip_rt_put(rt); in ip_tunnel_bind_dev() 600 struct rtable *rt, __be16 df, in tnl_update_pmtu() argument 608 mtu = dst_mtu(&rt->dst) - dev->hard_header_len in tnl_update_pmtu() 657 struct rtable *rt; /* Route to the other host */ in ip_tunnel_xmit() local 678 rt = skb_rtable(skb); in ip_tunnel_xmit() [all …]
|
D | inet_connection_sock.c | 416 struct rtable *rt; in inet_csk_route_req() local 425 rt = ip_route_output_flow(net, fl4, sk); in inet_csk_route_req() 426 if (IS_ERR(rt)) in inet_csk_route_req() 428 if (opt && opt->opt.is_strictroute && rt->rt_uses_gateway) in inet_csk_route_req() 430 return &rt->dst; in inet_csk_route_req() 433 ip_rt_put(rt); in inet_csk_route_req() 449 struct rtable *rt; in inet_csk_route_child_sock() local 462 rt = ip_route_output_flow(net, fl4, sk); in inet_csk_route_child_sock() 463 if (IS_ERR(rt)) in inet_csk_route_child_sock() 465 if (opt && opt->opt.is_strictroute && rt->rt_uses_gateway) in inet_csk_route_child_sock() [all …]
|
D | syncookies.c | 306 struct rtable *rt; in cookie_v4_check() local 380 rt = ip_route_output_key(sock_net(sk), &fl4); in cookie_v4_check() 381 if (IS_ERR(rt)) { in cookie_v4_check() 387 req->rsk_window_clamp = tp->window_clamp ? :dst_metric(&rt->dst, RTAX_WINDOW); in cookie_v4_check() 392 dst_metric(&rt->dst, RTAX_INITRWND)); in cookie_v4_check() 395 ireq->ecn_ok = cookie_ecn_ok(&tcp_opt, sock_net(sk), &rt->dst); in cookie_v4_check() 397 ret = tcp_get_cookie_sock(sk, skb, req, &rt->dst); in cookie_v4_check()
|
D | raw.c | 349 struct rtable *rt = *rtp; in raw_send_hdrinc() local 352 if (length > rt->dst.dev->mtu) { in raw_send_hdrinc() 354 rt->dst.dev->mtu); in raw_send_hdrinc() 360 hlen = LL_RESERVED_SPACE(rt->dst.dev); in raw_send_hdrinc() 361 tlen = rt->dst.dev->needed_tailroom; in raw_send_hdrinc() 371 skb_dst_set(skb, &rt->dst); in raw_send_hdrinc() 417 net, sk, skb, NULL, rt->dst.dev, in raw_send_hdrinc() 491 struct rtable *rt = NULL; in raw_sendmsg() local 622 rt = ip_route_output_flow(net, &fl4, sk); in raw_sendmsg() 623 if (IS_ERR(rt)) { in raw_sendmsg() [all …]
|
D | ip_gre.c | 528 struct rtable *rt; in gre_fb_xmit() local 540 rt = gre_get_rt(skb, dev, &fl, key); in gre_fb_xmit() 541 if (IS_ERR(rt)) in gre_fb_xmit() 546 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len in gre_fb_xmit() 570 err = iptunnel_xmit(skb->sk, rt, skb, fl.saddr, in gre_fb_xmit() 577 ip_rt_put(rt); in gre_fb_xmit() 586 struct rtable *rt; in gre_fill_metadata_dst() local 592 rt = gre_get_rt(skb, dev, &fl4, &info->key); in gre_fill_metadata_dst() 593 if (IS_ERR(rt)) in gre_fill_metadata_dst() 594 return PTR_ERR(rt); in gre_fill_metadata_dst() [all …]
|
D | ip_input.c | 317 struct rtable *rt; in ip_rcv_finish() local 359 rt = skb_rtable(skb); in ip_rcv_finish() 360 if (rt->rt_type == RTN_MULTICAST) { in ip_rcv_finish() 362 } else if (rt->rt_type == RTN_BROADCAST) in ip_rcv_finish()
|
D | udp_tunnel.c | 77 int udp_tunnel_xmit_skb(struct rtable *rt, struct sock *sk, struct sk_buff *skb, in udp_tunnel_xmit_skb() argument 96 return iptunnel_xmit(sk, rt, skb, src, dst, IPPROTO_UDP, in udp_tunnel_xmit_skb()
|
D | ping.c | 705 struct rtable *rt = NULL; in ping_v4_sendmsg() local 797 rt = ip_route_output_flow(net, &fl4, sk); in ping_v4_sendmsg() 798 if (IS_ERR(rt)) { in ping_v4_sendmsg() 799 err = PTR_ERR(rt); in ping_v4_sendmsg() 800 rt = NULL; in ping_v4_sendmsg() 807 if ((rt->rt_flags & RTCF_BROADCAST) && in ping_v4_sendmsg() 830 0, &ipc, &rt, msg->msg_flags); in ping_v4_sendmsg() 838 ip_rt_put(rt); in ping_v4_sendmsg() 848 dst_confirm(&rt->dst); in ping_v4_sendmsg()
|
D | af_inet.c | 1106 struct rtable *rt; in inet_sk_reselect_saddr() local 1117 rt = ip_route_connect(fl4, daddr, 0, RT_CONN_FLAGS(sk), in inet_sk_reselect_saddr() 1120 if (IS_ERR(rt)) in inet_sk_reselect_saddr() 1121 return PTR_ERR(rt); in inet_sk_reselect_saddr() 1123 sk_setup_caps(sk, &rt->dst); in inet_sk_reselect_saddr() 1152 struct rtable *rt = (struct rtable *)__sk_dst_check(sk, 0); in inet_sk_rebuild_header() local 1159 if (rt) in inet_sk_rebuild_header() 1170 rt = ip_route_output_ports(sock_net(sk), fl4, sk, daddr, inet->inet_saddr, in inet_sk_rebuild_header() 1174 if (!IS_ERR(rt)) { in inet_sk_rebuild_header() 1176 sk_setup_caps(sk, &rt->dst); in inet_sk_rebuild_header() [all …]
|
D | tcp_ipv4.c | 149 struct rtable *rt; in tcp_v4_connect() local 171 rt = ip_route_connect(fl4, nexthop, inet->inet_saddr, in tcp_v4_connect() 175 if (IS_ERR(rt)) { in tcp_v4_connect() 176 err = PTR_ERR(rt); in tcp_v4_connect() 182 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) { in tcp_v4_connect() 183 ip_rt_put(rt); in tcp_v4_connect() 204 tcp_fetch_timewait_stamp(sk, &rt->dst); in tcp_v4_connect() 227 rt = ip_route_newports(fl4, rt, orig_sport, orig_dport, in tcp_v4_connect() 229 if (IS_ERR(rt)) { in tcp_v4_connect() 230 err = PTR_ERR(rt); in tcp_v4_connect() [all …]
|
D | udp.c | 887 struct rtable *rt = NULL; in udp_sendmsg() local 1017 rt = (struct rtable *)sk_dst_check(sk, 0); in udp_sendmsg() 1019 if (!rt) { in udp_sendmsg() 1037 rt = ip_route_output_flow(net, fl4, sk); in udp_sendmsg() 1038 if (IS_ERR(rt)) { in udp_sendmsg() 1039 err = PTR_ERR(rt); in udp_sendmsg() 1040 rt = NULL; in udp_sendmsg() 1047 if ((rt->rt_flags & RTCF_BROADCAST) && in udp_sendmsg() 1051 sk_dst_set(sk, dst_clone(&rt->dst)); in udp_sendmsg() 1065 sizeof(struct udphdr), &ipc, &rt, in udp_sendmsg() [all …]
|
D | ip_tunnel_core.c | 51 int iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb, in iptunnel_xmit() argument 56 struct net *net = dev_net(rt->dst.dev); in iptunnel_xmit() 63 skb_dst_set(skb, &rt->dst); in iptunnel_xmit()
|
D | ipmr.c | 1698 struct rtable *rt; in ipmr_queue_xmit() local 1717 rt = ip_route_output_ports(net, &fl4, NULL, in ipmr_queue_xmit() 1722 if (IS_ERR(rt)) in ipmr_queue_xmit() 1726 rt = ip_route_output_ports(net, &fl4, NULL, iph->daddr, 0, in ipmr_queue_xmit() 1730 if (IS_ERR(rt)) in ipmr_queue_xmit() 1734 dev = rt->dst.dev; in ipmr_queue_xmit() 1736 if (skb->len+encap > dst_mtu(&rt->dst) && (ntohs(iph->frag_off) & IP_DF)) { in ipmr_queue_xmit() 1743 ip_rt_put(rt); in ipmr_queue_xmit() 1747 encap += LL_RESERVED_SPACE(dev) + rt->dst.header_len; in ipmr_queue_xmit() 1750 ip_rt_put(rt); in ipmr_queue_xmit() [all …]
|
D | fib_semantics.c | 145 struct rtable *rt = rcu_dereference_protected(*rtp, 1); in rt_fibinfo_free() local 147 if (!rt) in rt_fibinfo_free() 155 dst_free(&rt->dst); in rt_fibinfo_free() 194 struct rtable *rt; in rt_fibinfo_free_cpus() local 196 rt = rcu_dereference_protected(*per_cpu_ptr(rtp, cpu), 1); in rt_fibinfo_free_cpus() 197 if (rt) in rt_fibinfo_free_cpus() 198 dst_free(&rt->dst); in rt_fibinfo_free_cpus()
|
D | igmp.c | 328 struct rtable *rt; in igmpv3_newpack() local 348 rt = ip_route_output_ports(net, &fl4, NULL, IGMPV3_ALL_MCR, 0, in igmpv3_newpack() 351 if (IS_ERR(rt)) { in igmpv3_newpack() 356 skb_dst_set(skb, &rt->dst); in igmpv3_newpack() 678 struct rtable *rt; in igmp_send_report() local 697 rt = ip_route_output_ports(net, &fl4, NULL, dst, 0, in igmp_send_report() 700 if (IS_ERR(rt)) in igmp_send_report() 707 ip_rt_put(rt); in igmp_send_report() 712 skb_dst_set(skb, &rt->dst); in igmp_send_report() 1711 struct rtable *rt = ip_route_output(net, in ip_mc_find_dev() local [all …]
|
/linux-4.4.14/net/sunrpc/ |
D | timer.c | 34 void rpc_init_rtt(struct rpc_rtt *rt, unsigned long timeo) in rpc_init_rtt() argument 39 rt->timeo = timeo; in rpc_init_rtt() 44 rt->srtt[i] = init; in rpc_init_rtt() 45 rt->sdrtt[i] = RPC_RTO_INIT; in rpc_init_rtt() 46 rt->ntimeouts[i] = 0; in rpc_init_rtt() 60 void rpc_update_rtt(struct rpc_rtt *rt, unsigned int timer, long m) in rpc_update_rtt() argument 74 srtt = (long *)&rt->srtt[timer]; in rpc_update_rtt() 81 sdrtt = (long *)&rt->sdrtt[timer]; in rpc_update_rtt() 109 unsigned long rpc_calc_rto(struct rpc_rtt *rt, unsigned int timer) in rpc_calc_rto() argument 114 return rt->timeo; in rpc_calc_rto() [all …]
|
/linux-4.4.14/arch/powerpc/kvm/ |
D | emulate_loadstore.c | 54 int ra, rs, rt; in kvmppc_emulate_loadstore() local 67 rt = get_rt(inst); in kvmppc_emulate_loadstore() 73 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1); in kvmppc_emulate_loadstore() 77 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1); in kvmppc_emulate_loadstore() 81 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1); in kvmppc_emulate_loadstore() 105 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1); in kvmppc_emulate_loadstore() 109 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1); in kvmppc_emulate_loadstore() 113 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1); in kvmppc_emulate_loadstore() 141 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 0); in kvmppc_emulate_loadstore() 151 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 0); in kvmppc_emulate_loadstore() [all …]
|
D | emulate.c | 146 static int kvmppc_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, int rt) in kvmppc_emulate_mfspr() argument 204 kvmppc_set_gpr(vcpu, rt, spr_val); in kvmppc_emulate_mfspr() 215 int rs, rt, sprn; in kvmppc_emulate_instruction() local 229 rt = get_rt(inst); in kvmppc_emulate_instruction() 261 emulated = kvmppc_emulate_mfspr(vcpu, sprn, rt); in kvmppc_emulate_instruction()
|
D | e500_emulate.c | 119 int rt) in kvmppc_e500_emul_mftmr() argument 123 kvmppc_set_gpr(vcpu, rt, in kvmppc_e500_emul_mftmr() 137 int rt = get_rt(inst); in kvmppc_core_emulate_op_e500() local 172 int type = rt & 0x3; in kvmppc_core_emulate_op_e500() 184 emulated = kvmppc_e500_emul_mftmr(vcpu, inst, rt); in kvmppc_core_emulate_op_e500()
|
D | book3s_emulate.c | 94 int rt = get_rt(inst); in kvmppc_core_emulate_op_pr() local 134 kvmppc_set_gpr(vcpu, rt, kvmppc_get_msr(vcpu)); in kvmppc_core_emulate_op_pr() 159 kvmppc_set_gpr(vcpu, rt, sr); in kvmppc_core_emulate_op_pr() 171 kvmppc_set_gpr(vcpu, rt, sr); in kvmppc_core_emulate_op_pr() 252 kvmppc_set_gpr(vcpu, rt, t); in kvmppc_core_emulate_op_pr() 263 kvmppc_set_gpr(vcpu, rt, t); in kvmppc_core_emulate_op_pr()
|
D | booke_emulate.c | 58 int rt = get_rt(inst); in kvmppc_booke_emulate_op() local 91 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->msr); in kvmppc_booke_emulate_op()
|
/linux-4.4.14/net/mpls/ |
D | af_mpls.c | 35 static void rtmsg_lfib(int event, u32 label, struct mpls_route *rt, 41 struct mpls_route *rt = NULL; in mpls_route_input_rcu() local 46 rt = rcu_dereference(platform_label[index]); in mpls_route_input_rcu() 48 return rt; in mpls_route_input_rcu() 62 static u8 *__mpls_nh_via(struct mpls_route *rt, struct mpls_nh *nh) in __mpls_nh_via() argument 64 u8 *nh0_via = PTR_ALIGN((u8 *)&rt->rt_nh[rt->rt_nhn], VIA_ALEN_ALIGN); in __mpls_nh_via() 65 int nh_index = nh - rt->rt_nh; in __mpls_nh_via() 67 return nh0_via + rt->rt_max_alen * nh_index; in __mpls_nh_via() 70 static const u8 *mpls_nh_via(const struct mpls_route *rt, in mpls_nh_via() argument 73 return __mpls_nh_via((struct mpls_route *)rt, (struct mpls_nh *)nh); in mpls_nh_via() [all …]
|
D | internal.h | 80 #define for_nexthops(rt) { \ argument 82 for (nhsel = 0, nh = (rt)->rt_nh; \ 83 nhsel < (rt)->rt_nhn; \ 86 #define change_nexthops(rt) { \ argument 88 for (nhsel = 0, nh = (struct mpls_nh *)((rt)->rt_nh); \ 89 nhsel < (rt)->rt_nhn; \ 92 #define endfor_nexthops(rt) } argument
|
D | mpls_iptunnel.c | 49 struct rtable *rt = NULL; in mpls_output() local 59 rt = (struct rtable *)dst; in mpls_output() 108 if (rt) in mpls_output() 109 err = neigh_xmit(NEIGH_ARP_TABLE, out_dev, &rt->rt_gateway, in mpls_output()
|
/linux-4.4.14/arch/mips/kernel/ |
D | mips-r2-to-r6-emul.c | 404 s32 rt, rs; in mult_func() local 406 rt = regs->regs[MIPSInst_RT(ir)]; in mult_func() 408 res = (s64)rt * (s64)rs; in mult_func() 412 rt = res >> 32; in mult_func() 413 res = (s64)rt; in mult_func() 431 u32 rt, rs; in multu_func() local 433 rt = regs->regs[MIPSInst_RT(ir)]; in multu_func() 435 res = (u64)rt * (u64)rs; in multu_func() 436 rt = res; in multu_func() 437 regs->lo = (s64)rt; in multu_func() [all …]
|
D | branch.c | 78 if (insn.mm_i_format.rt != 0) /* Not mm_jr */ in __mm_isBranchInstr() 79 regs->regs[insn.mm_i_format.rt] = in __mm_isBranchInstr() 89 switch (insn.mm_i_format.rt) { in __mm_isBranchInstr() 172 switch (insn.mm_i_format.rt) { in __mm_isBranchInstr() 207 regs->regs[insn.mm_i_format.rt]) in __mm_isBranchInstr() 218 regs->regs[insn.mm_i_format.rt]) in __mm_isBranchInstr() 446 switch (insn.i_format.rt) { in __compute_return_epc_for_insn() 453 if (insn.i_format.rt == bltzl_op) in __compute_return_epc_for_insn() 466 if (insn.i_format.rt == bgezl_op) in __compute_return_epc_for_insn() 476 insn.i_format.rt == bltzall_op)) { in __compute_return_epc_for_insn() [all …]
|
D | rtlx.c | 284 struct rtlx_channel *rt; in rtlx_write() local 292 rt = &rtlx->channel[index]; in rtlx_write() 296 rt_read = rt->rt_read; in rtlx_write() 299 count = min_t(size_t, count, write_spacefree(rt_read, rt->rt_write, in rtlx_write() 300 rt->buffer_size)); in rtlx_write() 303 fl = min(count, (size_t) rt->buffer_size - rt->rt_write); in rtlx_write() 305 failed = copy_from_user(rt->rt_buffer + rt->rt_write, buffer, fl); in rtlx_write() 311 failed = copy_from_user(rt->rt_buffer, buffer + fl, count - fl); in rtlx_write() 317 rt->rt_write = (rt->rt_write + count) % rt->buffer_size; in rtlx_write()
|
D | unaligned.c | 963 regs->regs[insn.spec3_format.rt] = value; in emulate_load_store_insn() 976 regs->regs[insn.spec3_format.rt] = value; in emulate_load_store_insn() 989 regs->regs[insn.spec3_format.rt] = value; in emulate_load_store_insn() 997 value = regs->regs[insn.spec3_format.rt]; in emulate_load_store_insn() 1010 value = regs->regs[insn.spec3_format.rt]; in emulate_load_store_insn() 1040 regs->regs[insn.i_format.rt] = value; in emulate_load_store_insn() 1059 regs->regs[insn.i_format.rt] = value; in emulate_load_store_insn() 1078 regs->regs[insn.i_format.rt] = value; in emulate_load_store_insn() 1097 regs->regs[insn.i_format.rt] = value; in emulate_load_store_insn() 1120 regs->regs[insn.i_format.rt] = value; in emulate_load_store_insn() [all …]
|
D | process.c | 211 mmi.mm16_r5_format.rt == 31) || in is_ra_save_ins() 224 mmi.i_format.rt == 31); in is_ra_save_ins() 230 ip->i_format.rt == 31; in is_ra_save_ins() 250 (mmi.mm16_r5_format.rt & mm_jr16_op) == mm_jr16_op) || in is_jump_ins() 286 mmi.mm16_r5_format.rt == 29); in is_sp_move_ins() 289 ip->mm_i_format.rt == 29 && ip->mm_i_format.rs == 29; in is_sp_move_ins() 292 if (ip->i_format.rs != 29 || ip->i_format.rt != 29) in is_sp_move_ins()
|
D | uprobes.c | 33 switch (insn.i_format.rt) { in insn_has_delay_slot() 135 switch (inst.u_format.rt) { in is_trap_insn()
|
D | traps.c | 617 static int simulate_rdhwr(struct pt_regs *regs, int rd, int rt) in simulate_rdhwr() argument 625 regs->regs[rt] = smp_processor_id(); in simulate_rdhwr() 628 regs->regs[rt] = min(current_cpu_data.dcache.linesz, in simulate_rdhwr() 632 regs->regs[rt] = read_c0_count(); in simulate_rdhwr() 638 regs->regs[rt] = 1; in simulate_rdhwr() 641 regs->regs[rt] = 2; in simulate_rdhwr() 645 regs->regs[rt] = ti->tp_value; in simulate_rdhwr() 656 int rt = (opcode & RT) >> 16; in simulate_rdhwr_normal() local 658 simulate_rdhwr(regs, rd, rt); in simulate_rdhwr_normal() 670 int rt = (opcode & MM_RT) >> 21; in simulate_rdhwr_mm() local [all …]
|
/linux-4.4.14/include/linux/sunrpc/ |
D | timer.h | 22 extern void rpc_init_rtt(struct rpc_rtt *rt, unsigned long timeo); 23 extern void rpc_update_rtt(struct rpc_rtt *rt, unsigned timer, long m); 24 extern unsigned long rpc_calc_rto(struct rpc_rtt *rt, unsigned timer); 26 static inline void rpc_set_timeo(struct rpc_rtt *rt, int timer, int ntimeo) in rpc_set_timeo() argument 31 t = &rt->ntimeouts[timer-1]; in rpc_set_timeo() 42 static inline int rpc_ntimeo(struct rpc_rtt *rt, int timer) in rpc_ntimeo() argument 46 return rt->ntimeouts[timer-1]; in rpc_ntimeo()
|
/linux-4.4.14/net/bridge/ |
D | br_nf_core.c | 77 struct rtable *rt = &br->fake_rtable; in br_netfilter_rtable_init() local 79 atomic_set(&rt->dst.__refcnt, 1); in br_netfilter_rtable_init() 80 rt->dst.dev = br->dev; in br_netfilter_rtable_init() 81 rt->dst.path = &rt->dst; in br_netfilter_rtable_init() 82 dst_init_metrics(&rt->dst, br_dst_default_metrics, true); in br_netfilter_rtable_init() 83 rt->dst.flags = DST_NOXFRM | DST_FAKE_RTABLE; in br_netfilter_rtable_init() 84 rt->dst.ops = &fake_dst_ops; in br_netfilter_rtable_init()
|
D | br_netfilter_ipv6.c | 166 struct rtable *rt; in br_nf_pre_routing_finish_ipv6() local 199 rt = bridge_parent_rtable(nf_bridge->physindev); in br_nf_pre_routing_finish_ipv6() 200 if (!rt) { in br_nf_pre_routing_finish_ipv6() 204 skb_dst_set_noref(skb, &rt->dst); in br_nf_pre_routing_finish_ipv6()
|
D | br_netfilter_hooks.c | 347 struct rtable *rt; in br_nf_pre_routing_finish() local 371 rt = ip_route_output(net, iph->daddr, 0, in br_nf_pre_routing_finish() 373 if (!IS_ERR(rt)) { in br_nf_pre_routing_finish() 376 if (rt->dst.dev == dev) { in br_nf_pre_routing_finish() 377 skb_dst_set(skb, &rt->dst); in br_nf_pre_routing_finish() 380 ip_rt_put(rt); in br_nf_pre_routing_finish() 402 rt = bridge_parent_rtable(nf_bridge->physindev); in br_nf_pre_routing_finish() 403 if (!rt) { in br_nf_pre_routing_finish() 407 skb_dst_set_noref(skb, &rt->dst); in br_nf_pre_routing_finish()
|
/linux-4.4.14/drivers/media/radio/ |
D | radio-aimslab.c | 69 struct rtrack *rt = kzalloc(sizeof(struct rtrack), GFP_KERNEL); in rtrack_alloc() local 71 if (rt) in rtrack_alloc() 72 rt->curvol = 0xff; in rtrack_alloc() 73 return rt ? &rt->isa : NULL; in rtrack_alloc() 88 struct rtrack *rt = container_of(isa, struct rtrack, isa); in rtrack_set_pins() local 91 if (!v4l2_ctrl_g_ctrl(rt->isa.mute)) in rtrack_set_pins() 101 outb_p(bits, rt->isa.io); in rtrack_set_pins() 119 struct rtrack *rt = container_of(isa, struct rtrack, isa); in rtrack_s_mute_volume() local 120 int curvol = rt->curvol; in rtrack_s_mute_volume() 139 rt->curvol = vol; in rtrack_s_mute_volume()
|
/linux-4.4.14/net/netfilter/ipvs/ |
D | ip_vs_xmit.c | 128 struct rtable *rt; in do_output_route4() local 137 rt = ip_route_output_key(net, &fl4); in do_output_route4() 138 if (IS_ERR(rt)) { in do_output_route4() 140 if (PTR_ERR(rt) == -EINVAL && *saddr && in do_output_route4() 149 ip_rt_put(rt); in do_output_route4() 156 return rt; in do_output_route4() 160 static inline int __ip_vs_is_local_route6(struct rt6_info *rt) in __ip_vs_is_local_route6() argument 162 return rt->dst.dev && rt->dst.dev->flags & IFF_LOOPBACK; in __ip_vs_is_local_route6() 266 struct rtable *rt; /* Route to the other host */ in __ip_vs_get_out_rt() local 273 rt = (struct rtable *) dest_dst->dst_cache; in __ip_vs_get_out_rt() [all …]
|
/linux-4.4.14/net/ipv6/netfilter/ |
D | ip6t_rpfilter.c | 32 struct rt6_info *rt; in rpfilter_lookup_reverse6() local 56 rt = (void *) ip6_route_lookup(net, &fl6, lookup_flags); in rpfilter_lookup_reverse6() 57 if (rt->dst.error) in rpfilter_lookup_reverse6() 60 if (rt->rt6i_flags & (RTF_REJECT|RTF_ANYCAST)) in rpfilter_lookup_reverse6() 63 if (rt->rt6i_flags & RTF_LOCAL) { in rpfilter_lookup_reverse6() 68 if (rt->rt6i_idev->dev == dev || (flags & XT_RPFILTER_LOOSE)) in rpfilter_lookup_reverse6() 71 ip6_rt_put(rt); in rpfilter_lookup_reverse6() 77 const struct rt6_info *rt = (const void *) skb_dst(skb); in rpfilter_is_local() local 78 return rt && (rt->rt6i_flags & RTF_LOCAL); in rpfilter_is_local()
|
D | nf_nat_l3proto_ipv6.c | 135 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb); in nf_nat_ipv6_csum_recalc() local 138 if (!(rt->rt6i_flags & RTF_LOCAL) && in nf_nat_ipv6_csum_recalc()
|
/linux-4.4.14/kernel/sched/ |
D | rt.c | 120 return container_of(rt_se, struct task_struct, rt); in rt_task_of() 176 rt_se->rt_rq = &rq->rt; in init_tg_rt_entry() 231 return container_of(rt_se, struct task_struct, rt); in rt_task_of() 236 return container_of(rt_rq, struct rq, rt); in rq_of_rt_rq() 250 return &rq->rt; in rt_rq_of_se() 268 return rq->rt.highest_prio.curr > prev->prio; in need_pull_rt_task() 326 rt_rq = &rq_of_rt_rq(rt_rq)->rt; in inc_rt_migration() 343 rt_rq = &rq_of_rt_rq(rt_rq)->rt; in dec_rt_migration() 354 return !plist_head_empty(&rq->rt.pushable_tasks); in has_pushable_tasks() 378 plist_del(&p->pushable_tasks, &rq->rt.pushable_tasks); in enqueue_pushable_task() [all …]
|
D | Makefile | 15 obj-y += idle_task.o fair.o rt.o deadline.o stop_task.o
|
/linux-4.4.14/net/appletalk/ |
D | atalk_proc.c | 125 struct atalk_route *rt; in atalk_seq_route_show() local 133 rt = &atrtr_default; in atalk_seq_route_show() 135 ntohs(rt->gateway.s_net), rt->gateway.s_node, in atalk_seq_route_show() 136 rt->flags, rt->dev->name); in atalk_seq_route_show() 139 rt = v; in atalk_seq_route_show() 141 ntohs(rt->target.s_net), rt->target.s_node, in atalk_seq_route_show() 142 ntohs(rt->gateway.s_net), rt->gateway.s_node, in atalk_seq_route_show() 143 rt->flags, rt->dev->name); in atalk_seq_route_show()
|
D | ddp.c | 505 struct atalk_route *rt; in atrtr_create() local 521 for (rt = atalk_routes; rt; rt = rt->next) { in atrtr_create() 522 if (r->rt_flags != rt->flags) in atrtr_create() 525 if (ta->sat_addr.s_net == rt->target.s_net) { in atrtr_create() 526 if (!(rt->flags & RTF_HOST)) in atrtr_create() 528 if (ta->sat_addr.s_node == rt->target.s_node) in atrtr_create() 558 if (!rt) { in atrtr_create() 559 rt = kzalloc(sizeof(*rt), GFP_ATOMIC); in atrtr_create() 562 if (!rt) in atrtr_create() 565 rt->next = atalk_routes; in atrtr_create() [all …]
|
/linux-4.4.14/virt/kvm/ |
D | irqchip.c | 110 static void free_irq_routing_table(struct kvm_irq_routing_table *rt) in free_irq_routing_table() argument 114 if (!rt) in free_irq_routing_table() 117 for (i = 0; i < rt->nr_rt_entries; ++i) { in free_irq_routing_table() 121 hlist_for_each_entry_safe(e, n, &rt->map[i], link) { in free_irq_routing_table() 127 kfree(rt); in free_irq_routing_table() 134 struct kvm_irq_routing_table *rt = rcu_access_pointer(kvm->irq_routing); in kvm_free_irq_routing() local 135 free_irq_routing_table(rt); in kvm_free_irq_routing() 138 static int setup_routing_entry(struct kvm_irq_routing_table *rt, in setup_routing_entry() argument 149 hlist_for_each_entry(ei, &rt->map[ue->gsi], link) in setup_routing_entry() 161 rt->chip[e->irqchip.irqchip][e->irqchip.pin] = e->gsi; in setup_routing_entry() [all …]
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | kvm.c | 86 static void kvm_patch_ins_ll(u32 *inst, long addr, u32 rt) in kvm_patch_ins_ll() argument 89 kvm_patch_ins(inst, KVM_INST_LD | rt | (addr & 0x0000fffc)); in kvm_patch_ins_ll() 91 kvm_patch_ins(inst, KVM_INST_LWZ | rt | (addr & 0x0000fffc)); in kvm_patch_ins_ll() 95 static void kvm_patch_ins_ld(u32 *inst, long addr, u32 rt) in kvm_patch_ins_ld() argument 98 kvm_patch_ins(inst, KVM_INST_LD | rt | (addr & 0x0000fffc)); in kvm_patch_ins_ld() 100 kvm_patch_ins(inst, KVM_INST_LWZ | rt | ((addr + 4) & 0x0000fffc)); in kvm_patch_ins_ld() 104 static void kvm_patch_ins_lwz(u32 *inst, long addr, u32 rt) in kvm_patch_ins_lwz() argument 106 kvm_patch_ins(inst, KVM_INST_LWZ | rt | (addr & 0x0000ffff)); in kvm_patch_ins_lwz() 109 static void kvm_patch_ins_std(u32 *inst, long addr, u32 rt) in kvm_patch_ins_std() argument 112 kvm_patch_ins(inst, KVM_INST_STD | rt | (addr & 0x0000fffc)); in kvm_patch_ins_std() [all …]
|
/linux-4.4.14/arch/arm/kvm/ |
D | mmio.c | 118 vcpu_set_reg(vcpu, vcpu->arch.mmio_decode.rt, data); in kvm_handle_mmio_return() 126 unsigned long rt; in decode_hsr() local 148 rt = kvm_vcpu_dabt_get_rd(vcpu); in decode_hsr() 152 vcpu->arch.mmio_decode.rt = rt; in decode_hsr() 166 unsigned long rt; in io_mem_abort() local 186 rt = vcpu->arch.mmio_decode.rt; in io_mem_abort() 189 data = vcpu_data_guest_to_host(vcpu, vcpu_get_reg(vcpu, rt), in io_mem_abort()
|
/linux-4.4.14/arch/arm/net/ |
D | bpf_jit_32.h | 158 #define ARM_LDR_I(rt, rn, off) (ARM_INST_LDR_I | (rt) << 12 | (rn) << 16 \ argument 160 #define ARM_LDRB_I(rt, rn, off) (ARM_INST_LDRB_I | (rt) << 12 | (rn) << 16 \ argument 162 #define ARM_LDRB_R(rt, rn, rm) (ARM_INST_LDRB_R | (rt) << 12 | (rn) << 16 \ argument 164 #define ARM_LDRH_I(rt, rn, off) (ARM_INST_LDRH_I | (rt) << 12 | (rn) << 16 \ argument 166 #define ARM_LDRH_R(rt, rn, rm) (ARM_INST_LDRH_R | (rt) << 12 | (rn) << 16 \ argument 204 #define ARM_STR_I(rt, rn, off) (ARM_INST_STR_I | (rt) << 12 | (rn) << 16 \ argument
|
/linux-4.4.14/arch/x86/pci/ |
D | irq.c | 66 struct irq_routing_table *rt; in pirq_check_routing_table() local 70 rt = (struct irq_routing_table *) addr; in pirq_check_routing_table() 71 if (rt->signature != PIRQ_SIGNATURE || in pirq_check_routing_table() 72 rt->version != PIRQ_VERSION || in pirq_check_routing_table() 73 rt->size % 16 || in pirq_check_routing_table() 74 rt->size < sizeof(struct irq_routing_table)) in pirq_check_routing_table() 77 for (i = 0; i < rt->size; i++) in pirq_check_routing_table() 81 rt); in pirq_check_routing_table() 82 return rt; in pirq_check_routing_table() 96 struct irq_routing_table *rt; in pirq_find_routing_table() local [all …]
|
D | pcbios.c | 382 struct irq_routing_table *rt = NULL; in pcibios_get_irq_routing_table() local 417 rt = kmalloc(sizeof(struct irq_routing_table) + opt.size, GFP_KERNEL); in pcibios_get_irq_routing_table() 418 if (rt) { in pcibios_get_irq_routing_table() 419 memset(rt, 0, sizeof(struct irq_routing_table)); in pcibios_get_irq_routing_table() 420 rt->size = opt.size + sizeof(struct irq_routing_table); in pcibios_get_irq_routing_table() 421 rt->exclusive_irqs = map; in pcibios_get_irq_routing_table() 422 memcpy(rt->slots, (void *) page, opt.size); in pcibios_get_irq_routing_table() 427 return rt; in pcibios_get_irq_routing_table()
|
/linux-4.4.14/arch/mips/kvm/ |
D | dyntrans.c | 75 int32_t rt, rd, sel; in kvm_mips_trans_mfc0() local 79 rt = (inst >> 16) & 0x1f; in kvm_mips_trans_mfc0() 85 mfc0_inst |= ((rt & 0x1f) << 16); in kvm_mips_trans_mfc0() 88 mfc0_inst |= ((rt & 0x1f) << 16); in kvm_mips_trans_mfc0() 117 int32_t rt, rd, sel; in kvm_mips_trans_mtc0() local 121 rt = (inst >> 16) & 0x1f; in kvm_mips_trans_mtc0() 125 mtc0_inst |= ((rt & 0x1f) << 16); in kvm_mips_trans_mtc0()
|
D | emulate.c | 79 switch (insn.i_format.rt) { in kvm_compute_return_epc() 147 arch->gprs[insn.i_format.rt]) in kvm_compute_return_epc() 157 arch->gprs[insn.i_format.rt]) in kvm_compute_return_epc() 982 int32_t rt, rd, copz, sel, co_bit, op; in kvm_mips_emulate_CP0() local 996 rt = (inst >> 16) & 0x1f; in kvm_mips_emulate_CP0() 1036 vcpu->arch.gprs[rt] = kvm_mips_read_count(vcpu); in kvm_mips_emulate_CP0() 1038 vcpu->arch.gprs[rt] = 0x0; in kvm_mips_emulate_CP0() 1043 vcpu->arch.gprs[rt] = cop0->reg[rd][sel]; in kvm_mips_emulate_CP0() 1052 pc, rd, sel, rt, vcpu->arch.gprs[rt]); in kvm_mips_emulate_CP0() 1057 vcpu->arch.gprs[rt] = cop0->reg[rd][sel]; in kvm_mips_emulate_CP0() [all …]
|
/linux-4.4.14/drivers/input/touchscreen/ |
D | tsc2007.c | 133 u32 rt = 0; in tsc2007_calculate_pressure() local 141 rt = tc->z2 - tc->z1; in tsc2007_calculate_pressure() 142 rt *= tc->x; in tsc2007_calculate_pressure() 143 rt *= tsc->x_plate_ohms; in tsc2007_calculate_pressure() 144 rt /= tc->z1; in tsc2007_calculate_pressure() 145 rt = (rt + 2047) >> 12; in tsc2007_calculate_pressure() 148 return rt; in tsc2007_calculate_pressure() 178 u32 rt; in tsc2007_soft_irq() local 185 rt = tsc2007_calculate_pressure(ts, &tc); in tsc2007_soft_irq() 187 if (!rt && !ts->get_pendown_state) { in tsc2007_soft_irq() [all …]
|
D | 88pm860x-ts.c | 57 int z1, z2, rt = 0; in pm860x_touch_handler() local 72 rt = z2 / z1 - 1; in pm860x_touch_handler() 73 rt = (rt * touch->res_x * x) >> ACCURATE_BIT; in pm860x_touch_handler() 75 z1, z2, rt); in pm860x_touch_handler() 79 input_report_abs(touch->idev, ABS_PRESSURE, rt); in pm860x_touch_handler()
|
/linux-4.4.14/net/ipv4/netfilter/ |
D | nf_dup_ipv4.c | 30 struct rtable *rt; in nf_dup_ipv4_route() local 41 rt = ip_route_output_key(net, &fl4); in nf_dup_ipv4_route() 42 if (IS_ERR(rt)) in nf_dup_ipv4_route() 46 skb_dst_set(skb, &rt->dst); in nf_dup_ipv4_route() 47 skb->dev = rt->dst.dev; in nf_dup_ipv4_route()
|
D | ipt_rpfilter.c | 68 const struct rtable *rt = skb_rtable(skb); in rpfilter_is_local() local 69 return rt && (rt->rt_flags & RTCF_LOCAL); in rpfilter_is_local()
|
D | nf_nat_masquerade_ipv4.c | 34 const struct rtable *rt; in nf_nat_masquerade_ipv4() local 51 rt = skb_rtable(skb); in nf_nat_masquerade_ipv4() 52 nh = rt_nexthop(rt, ip_hdr(skb)->daddr); in nf_nat_masquerade_ipv4()
|
D | nf_nat_l3proto_ipv4.c | 131 struct rtable *rt = skb_rtable(skb); in nf_nat_ipv4_csum_recalc() local 134 if (!(rt->rt_flags & RTCF_LOCAL) && in nf_nat_ipv4_csum_recalc()
|
/linux-4.4.14/arch/arm/probes/kprobes/ |
D | actions-arm.c | 81 int rt = (insn >> 12) & 0xf; in emulate_ldrdstrd() local 85 register unsigned long rtv asm("r0") = regs->uregs[rt]; in emulate_ldrdstrd() 86 register unsigned long rt2v asm("r1") = regs->uregs[rt+1]; in emulate_ldrdstrd() 99 regs->uregs[rt] = rtv; in emulate_ldrdstrd() 100 regs->uregs[rt+1] = rt2v; in emulate_ldrdstrd() 110 int rt = (insn >> 12) & 0xf; in emulate_ldr() local 126 if (rt == 15) in emulate_ldr() 129 regs->uregs[rt] = rtv; in emulate_ldr() 141 int rt = (insn >> 12) & 0xf; in emulate_str() local 145 register unsigned long rtv asm("r0") = (rt == 15) ? rtpc in emulate_str() [all …]
|
D | actions-thumb.c | 113 int rt = (insn >> 12) & 0xf; in t32_simulate_ldr_literal() local 125 if (rt == 15) { in t32_simulate_ldr_literal() 143 regs->uregs[rt] = rtv; in t32_simulate_ldr_literal() 191 int rt = (insn >> 12) & 0xf; in t32_emulate_ldrstr() local 195 register unsigned long rtv asm("r0") = regs->uregs[rt]; in t32_emulate_ldrstr() 207 if (rt == 15) /* Can't be true for a STR as they aren't allowed */ in t32_emulate_ldrstr() 210 regs->uregs[rt] = rtv; in t32_emulate_ldrstr() 328 int rt = (insn >> 8) & 0x7; in t16_simulate_ldr_literal() local 329 regs->uregs[rt] = base[index]; in t16_simulate_ldr_literal() 338 int rt = (insn >> 8) & 0x7; in t16_simulate_ldrstr_sp_relative() local [all …]
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | mmu-hash64.h | 458 #define ASM_VSID_SCRAMBLE(rt, rx, size) \ argument 461 mulld rt,rt,rx; /* rt = rt * MULTIPLIER */ \ 463 srdi rx,rt,VSID_BITS_##size; \ 464 clrldi rt,rt,(64-VSID_BITS_##size); \ 465 add rt,rt,rx; /* add high and low bits */ \ 473 addi rx,rt,1; \ 475 add rt,rt,rx
|
/linux-4.4.14/drivers/bus/ |
D | omap_l3_smx.c | 184 status = omap3_l3_readll(l3->rt, L3_SI_FLAG_STATUS_0); in omap3_l3_app_irq() 193 status = omap3_l3_readll(l3->rt, L3_SI_FLAG_STATUS_1); in omap3_l3_app_irq() 200 base = l3->rt + omap3_l3_bases[int_type][err_source]; in omap3_l3_app_irq() 246 l3->rt = ioremap(res->start, resource_size(res)); in omap3_l3_probe() 247 if (!l3->rt) { in omap3_l3_probe() 274 iounmap(l3->rt); in omap3_l3_probe() 286 iounmap(l3->rt); in omap3_l3_remove()
|
D | omap_l3_smx.h | 199 void __iomem *rt; member
|
/linux-4.4.14/drivers/net/wireless/rt2x00/ |
D | rt2x00.h | 153 u16 rt; member 1081 const u16 rt, const u16 rf, const u16 rev) in rt2x00_set_chip() argument 1083 rt2x00dev->chip.rt = rt; in rt2x00_set_chip() 1088 rt2x00dev->chip.rt, rt2x00dev->chip.rf, in rt2x00_set_chip() 1093 const u16 rt, const u16 rev) in rt2x00_set_rt() argument 1095 rt2x00dev->chip.rt = rt; in rt2x00_set_rt() 1099 rt2x00dev->chip.rt, rt2x00dev->chip.rev); in rt2x00_set_rt() 1110 static inline bool rt2x00_rt(struct rt2x00_dev *rt2x00dev, const u16 rt) in rt2x00_rt() argument 1112 return (rt2x00dev->chip.rt == rt); in rt2x00_rt() 1126 const u16 rt, const u16 rev) in rt2x00_rt_rev() argument [all …]
|
D | rt2x00pci.c | 137 rt2x00dev->chip.rt = chip; in rt2x00pci_probe()
|
/linux-4.4.14/net/netfilter/ |
D | nf_conntrack_broadcast.c | 30 struct rtable *rt = skb_rtable(skb); in nf_conntrack_broadcast_help() local 38 if (rt == NULL || !(rt->rt_flags & RTCF_BROADCAST)) in nf_conntrack_broadcast_help() 44 in_dev = __in_dev_get_rcu(rt->dst.dev); in nf_conntrack_broadcast_help()
|
D | xt_addrtype.c | 41 struct rt6_info *rt; in match_lookup_rt6() local 61 route_err = afinfo->route(net, (struct dst_entry **)&rt, in match_lookup_rt6() 71 if (rt->rt6i_flags & RTF_REJECT) in match_lookup_rt6() 74 if (dev == NULL && rt->rt6i_flags & RTF_LOCAL) in match_lookup_rt6() 76 if (ipv6_anycast_destination((struct dst_entry *)rt, addr)) in match_lookup_rt6() 79 dst_release(&rt->dst); in match_lookup_rt6()
|
D | xt_TCPMSS.c | 52 struct rtable *rt = NULL; in tcpmss_reverse_mtu() local 68 ai->route(net, (struct dst_entry **)&rt, &fl, false); in tcpmss_reverse_mtu() 71 if (rt != NULL) { in tcpmss_reverse_mtu() 72 mtu = dst_mtu(&rt->dst); in tcpmss_reverse_mtu() 73 dst_release(&rt->dst); in tcpmss_reverse_mtu()
|
/linux-4.4.14/sound/parisc/ |
D | harmony.c | 411 struct snd_pcm_runtime *rt = ss->runtime; in snd_harmony_playback_prepare() local 422 h->st.rate = snd_harmony_rate_bits(rt->rate); in snd_harmony_playback_prepare() 423 h->st.format = snd_harmony_set_data_format(h, rt->format, 0); in snd_harmony_playback_prepare() 425 if (rt->channels == 2) in snd_harmony_playback_prepare() 432 h->pbuf.addr = rt->dma_addr; in snd_harmony_playback_prepare() 441 struct snd_pcm_runtime *rt = ss->runtime; in snd_harmony_capture_prepare() local 452 h->st.rate = snd_harmony_rate_bits(rt->rate); in snd_harmony_capture_prepare() 453 h->st.format = snd_harmony_set_data_format(h, rt->format, 0); in snd_harmony_capture_prepare() 455 if (rt->channels == 2) in snd_harmony_capture_prepare() 462 h->cbuf.addr = rt->dma_addr; in snd_harmony_capture_prepare() [all …]
|
/linux-4.4.14/sound/usb/caiaq/ |
D | audio.c | 392 struct snd_pcm_runtime *rt = sub->runtime; in read_in_urb_mode0() local 393 char *audio_buf = rt->dma_area; in read_in_urb_mode0() 394 int sz = frames_to_bytes(rt, rt->buffer_size); in read_in_urb_mode0() 439 struct snd_pcm_runtime *rt = sub->runtime; in read_in_urb_mode2() local 440 char *audio_buf = rt->dma_area; in read_in_urb_mode2() 441 int sz = frames_to_bytes(rt, rt->buffer_size); in read_in_urb_mode2() 471 struct snd_pcm_runtime *rt = sub->runtime; in read_in_urb_mode3() local 472 audio_buf = rt->dma_area; in read_in_urb_mode3() 473 sz = frames_to_bytes(rt, rt->buffer_size); in read_in_urb_mode3() 552 struct snd_pcm_runtime *rt = sub->runtime; in fill_out_urb_mode_0() local [all …]
|
/linux-4.4.14/sound/soc/sh/ |
D | siu_pcm.c | 218 struct snd_pcm_runtime *rt = substream->runtime; in siu_io_tasklet() local 233 buff = (dma_addr_t)PERIOD_OFFSET(rt->dma_addr, in siu_io_tasklet() 236 virt = PERIOD_OFFSET(rt->dma_area, in siu_io_tasklet() 245 (dma_addr_t)PERIOD_OFFSET(rt->dma_addr, in siu_io_tasklet() 408 struct snd_pcm_runtime *rt = ss->runtime; in siu_pcm_prepare() local 417 rt = siu_stream->substream->runtime; in siu_pcm_prepare() 423 info->port_id, rt->channels, siu_stream->period_bytes); in siu_pcm_prepare() 433 xfer_cnt = bytes_to_frames(rt, siu_stream->period_bytes); in siu_pcm_prepare() 437 siu_stream->format = rt->format; in siu_pcm_prepare() 442 (unsigned long)rt->dma_addr, siu_stream->buf_bytes, in siu_pcm_prepare() [all …]
|
D | siu_dai.c | 511 struct snd_pcm_runtime *rt = substream->runtime; in siu_dai_startup() local 520 ret = snd_pcm_hw_constraint_integer(rt, SNDRV_PCM_HW_PARAM_PERIODS); in siu_dai_startup() 558 struct snd_pcm_runtime *rt = substream->runtime; in siu_dai_prepare() local 565 __func__, info->port_id, port_info->play_cap, rt->channels); in siu_dai_prepare()
|
/linux-4.4.14/arch/mips/include/uapi/asm/ |
D | inst.h | 545 __BITFIELD_FIELD(unsigned int rt : 5, 553 __BITFIELD_FIELD(unsigned int rt : 5, 570 __BITFIELD_FIELD(unsigned int rt : 5, 580 __BITFIELD_FIELD(unsigned int rt : 5, 591 __BITFIELD_FIELD(unsigned int rt : 5, 650 __BITFIELD_FIELD(unsigned int rt:5, 696 __BITFIELD_FIELD(unsigned int rt : 5, 705 __BITFIELD_FIELD(unsigned int rt : 5, 727 __BITFIELD_FIELD(unsigned int rt : 5, 737 __BITFIELD_FIELD(unsigned int rt : 5, [all …]
|
/linux-4.4.14/arch/mips/math-emu/ |
D | cp1emu.c | 104 mips32_insn.mm_i_format.rt = insn.mm_i_format.rs; in microMIPS32_to_MIPS32() 105 mips32_insn.mm_i_format.rs = insn.mm_i_format.rt; in microMIPS32_to_MIPS32() 109 mips32_insn.mm_i_format.rt = insn.mm_i_format.rs; in microMIPS32_to_MIPS32() 110 mips32_insn.mm_i_format.rs = insn.mm_i_format.rt; in microMIPS32_to_MIPS32() 114 mips32_insn.mm_i_format.rt = insn.mm_i_format.rs; in microMIPS32_to_MIPS32() 115 mips32_insn.mm_i_format.rs = insn.mm_i_format.rt; in microMIPS32_to_MIPS32() 119 mips32_insn.mm_i_format.rt = insn.mm_i_format.rs; in microMIPS32_to_MIPS32() 120 mips32_insn.mm_i_format.rs = insn.mm_i_format.rt; in microMIPS32_to_MIPS32() 124 if ((insn.mm_i_format.rt == mm_bc1f_op) || in microMIPS32_to_MIPS32() 125 (insn.mm_i_format.rt == mm_bc1t_op)) { in microMIPS32_to_MIPS32() [all …]
|
/linux-4.4.14/arch/arm/lib/ |
D | ecard.S | 16 #define CPSR2SPSR(rt) \ argument 17 mrs rt, cpsr; \ 18 msr spsr_cxsf, rt
|
/linux-4.4.14/net/dccp/ |
D | ipv4.c | 50 struct rtable *rt; in dccp_v4_connect() local 75 rt = ip_route_connect(fl4, nexthop, inet->inet_saddr, in dccp_v4_connect() 79 if (IS_ERR(rt)) in dccp_v4_connect() 80 return PTR_ERR(rt); in dccp_v4_connect() 82 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) { in dccp_v4_connect() 83 ip_rt_put(rt); in dccp_v4_connect() 110 rt = ip_route_newports(fl4, rt, orig_sport, orig_dport, in dccp_v4_connect() 112 if (IS_ERR(rt)) { in dccp_v4_connect() 113 err = PTR_ERR(rt); in dccp_v4_connect() 114 rt = NULL; in dccp_v4_connect() [all …]
|
/linux-4.4.14/drivers/net/ppp/ |
D | pptp.c | 186 struct rtable *rt; in pptp_xmit() local 194 rt = ip_route_output_ports(net, &fl4, NULL, in pptp_xmit() 199 if (IS_ERR(rt)) in pptp_xmit() 202 tdev = rt->dst.dev; in pptp_xmit() 209 ip_rt_put(rt); in pptp_xmit() 269 if (ip_dont_fragment(sk, &rt->dst)) in pptp_xmit() 277 iph->ttl = ip4_dst_hoplimit(&rt->dst); in pptp_xmit() 281 skb_dst_set(skb, &rt->dst); in pptp_xmit() 456 struct rtable *rt; in pptp_connect() local 490 rt = ip_route_output_ports(sock_net(sk), &fl4, sk, in pptp_connect() [all …]
|
/linux-4.4.14/net/rxrpc/ |
D | ar-peer.c | 38 struct rtable *rt; in rxrpc_assess_MTU_size() local 43 rt = ip_route_output_ports(&init_net, &fl4, NULL, in rxrpc_assess_MTU_size() 47 if (IS_ERR(rt)) { in rxrpc_assess_MTU_size() 48 _leave(" [route err %ld]", PTR_ERR(rt)); in rxrpc_assess_MTU_size() 52 peer->if_mtu = dst_mtu(&rt->dst); in rxrpc_assess_MTU_size() 53 dst_release(&rt->dst); in rxrpc_assess_MTU_size()
|
/linux-4.4.14/arch/arm64/include/asm/ |
D | sysreg.h | 201 .macro mrs_s, rt, sreg 202 .inst 0xd5200000|(\sreg)|(__reg_num_\rt) 205 .macro msr_s, sreg, rt 206 .inst 0xd5000000|(\sreg)|(__reg_num_\rt)
|
D | kvm_mmio.h | 30 unsigned long rt; member
|
/linux-4.4.14/Documentation/locking/ |
D | rt-mutex.txt | 9 This technology was developed in the -rt tree and streamlined for 18 A low priority owner of a rt-mutex inherits the priority of a higher 19 priority waiter until the rt-mutex is released. If the temporarily 20 boosted owner blocks on a rt-mutex itself it propagates the priority 43 support. [If that is not available then the rt-mutex internal spinlock 46 The state of the rt-mutex is tracked via the owner field of the rt-mutex
|
D | 00-INDEX | 9 rt-mutex-design.txt 11 rt-mutex.txt
|
D | lglock.txt | 133 * in PREEMPT_RT the spinlock becomes an rt-mutex and can sleep but 164 Link: 6 https://www.kernel.org/pub/linux/kernel/projects/rt/ 165 patch series - lglocks-rt.patch.patch
|
/linux-4.4.14/arch/ia64/kernel/ |
D | smpboot.c | 216 get_delta (long *rt, long *master) in get_delta() argument 234 *rt = best_t1 - best_t0; in get_delta() 280 unsigned long flags, rt, master_time_stamp, bound; in ia64_sync_itc() local 283 long rt; /* roundtrip time */ in ia64_sync_itc() member 311 delta = get_delta(&rt, &master_time_stamp); in ia64_sync_itc() 314 bound = rt; in ia64_sync_itc() 327 t[i].rt = rt; in ia64_sync_itc() 339 t[i].rt, t[i].master, t[i].diff, t[i].lat); in ia64_sync_itc() 343 "maxerr %lu cycles)\n", smp_processor_id(), master, delta, rt); in ia64_sync_itc()
|
/linux-4.4.14/sound/pci/ |
D | ad1889.c | 324 struct snd_pcm_runtime *rt = ss->runtime; in snd_ad1889_playback_open() local 327 rt->hw = snd_ad1889_playback_hw; in snd_ad1889_playback_open() 336 struct snd_pcm_runtime *rt = ss->runtime; in snd_ad1889_capture_open() local 339 rt->hw = snd_ad1889_capture_hw; in snd_ad1889_capture_open() 364 struct snd_pcm_runtime *rt = ss->runtime; in snd_ad1889_playback_prepare() local 376 if (snd_pcm_format_width(rt->format) == 16) in snd_ad1889_playback_prepare() 379 if (rt->channels > 1) in snd_ad1889_playback_prepare() 387 chip->wave.addr = rt->dma_addr; in snd_ad1889_playback_prepare() 392 ad1889_writew(chip, AD_DS_WAS, rt->rate); in snd_ad1889_playback_prepare() 406 chip->wave.addr, count, size, reg, rt->rate); in snd_ad1889_playback_prepare() [all …]
|
/linux-4.4.14/drivers/net/ |
D | geneve.c | 639 static int geneve_build_skb(struct rtable *rt, struct sk_buff *skb, in geneve_build_skb() argument 649 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len in geneve_build_skb() 670 ip_rt_put(rt); in geneve_build_skb() 717 struct rtable *rt = NULL; in geneve_get_v4_rt() local 740 rt = ip_route_output_key(geneve->net, fl4); in geneve_get_v4_rt() 741 if (IS_ERR(rt)) { in geneve_get_v4_rt() 745 if (rt->dst.dev == dev) { /* is this necessary? */ in geneve_get_v4_rt() 747 ip_rt_put(rt); in geneve_get_v4_rt() 750 return rt; in geneve_get_v4_rt() 817 struct rtable *rt = NULL; in geneve_xmit_skb() local [all …]
|
D | vrf.c | 272 struct rtable *rt; in vrf_send_v4_prep() local 275 rt = ip_route_output_flow(dev_net(vrf_dev), fl4, NULL); in vrf_send_v4_prep() 276 if (IS_ERR(rt)) in vrf_send_v4_prep() 280 if (rt->rt_type != RTN_UNICAST && rt->rt_type != RTN_LOCAL) { in vrf_send_v4_prep() 281 ip_rt_put(rt); in vrf_send_v4_prep() 286 skb_dst_set(skb, &rt->dst); in vrf_send_v4_prep() 517 struct rtable *rt = (struct rtable *)dst; in vrf_finish_output() local 542 nexthop = (__force u32)rt_nexthop(rt, ip_hdr(skb)->daddr); in vrf_finish_output() 844 struct rt6_info *rt = NULL; in vrf_get_rt6_dst() local 849 rt = vrf->rt6; in vrf_get_rt6_dst() [all …]
|
D | vxlan.c | 1771 static int vxlan_xmit_skb(struct rtable *rt, struct sock *sk, struct sk_buff *skb, in vxlan_xmit_skb() argument 1796 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len in vxlan_xmit_skb() 1840 return udp_tunnel_xmit_skb(rt, sk, skb, src, dst, tos, in vxlan_xmit_skb() 1924 struct rtable *rt = NULL; in vxlan_xmit_one() local 2015 rt = ip_route_output_key(vxlan->net, &fl4); in vxlan_xmit_one() 2016 if (IS_ERR(rt)) { in vxlan_xmit_one() 2023 if (rt->dst.dev == dev) { in vxlan_xmit_one() 2031 if (rt->rt_flags & RTCF_LOCAL && in vxlan_xmit_one() 2032 !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) { in vxlan_xmit_one() 2035 ip_rt_put(rt); in vxlan_xmit_one() [all …]
|
/linux-4.4.14/drivers/infiniband/core/ |
D | addr.c | 230 struct rtable *rt; in addr4_resolve() local 238 rt = ip_route_output_key(addr->net, &fl4); in addr4_resolve() 239 if (IS_ERR(rt)) { in addr4_resolve() 240 ret = PTR_ERR(rt); in addr4_resolve() 246 if (rt->dst.dev->flags & IFF_LOOPBACK) { in addr4_resolve() 254 if (rt->dst.dev->flags & IFF_NOARP) { in addr4_resolve() 255 ret = rdma_copy_addr(addr, rt->dst.dev, NULL); in addr4_resolve() 259 ret = dst_fetch_ha(&rt->dst, addr, &fl4.daddr); in addr4_resolve() 261 ip_rt_put(rt); in addr4_resolve()
|
D | cma.c | 1142 struct rt6_info *rt = rt6_lookup(dev_net(net_dev), &dst_addr->sin6_addr, in validate_ipv6_net_dev() local 1147 if (!rt) in validate_ipv6_net_dev() 1150 ret = rt->rt6i_idev->dev == net_dev; in validate_ipv6_net_dev() 1151 ip6_rt_put(rt); in validate_ipv6_net_dev() 1606 struct rdma_route *rt; in cma_new_conn_id() local 1624 rt = &id->route; in cma_new_conn_id() 1625 rt->num_paths = ib_event->param.req_rcvd.alternate_path ? 2 : 1; in cma_new_conn_id() 1626 rt->path_rec = kmalloc(sizeof *rt->path_rec * rt->num_paths, in cma_new_conn_id() 1628 if (!rt->path_rec) in cma_new_conn_id() 1631 rt->path_rec[0] = *ib_event->param.req_rcvd.primary_path; in cma_new_conn_id() [all …]
|
/linux-4.4.14/net/xfrm/ |
D | xfrm_user.c | 38 struct nlattr *rt = attrs[type]; in verify_one_alg() local 41 if (!rt) in verify_one_alg() 44 algp = nla_data(rt); in verify_one_alg() 45 if (nla_len(rt) < xfrm_alg_len(algp)) in verify_one_alg() 64 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC]; in verify_auth_trunc() local 67 if (!rt) in verify_auth_trunc() 70 algp = nla_data(rt); in verify_auth_trunc() 71 if (nla_len(rt) < xfrm_alg_auth_len(algp)) in verify_auth_trunc() 80 struct nlattr *rt = attrs[XFRMA_ALG_AEAD]; in verify_aead() local 83 if (!rt) in verify_aead() [all …]
|
/linux-4.4.14/net/tipc/ |
D | udp_media.c | 159 struct rtable *rt; in tipc_udp_send_msg() local 180 rt = ip_route_output_key(net, &fl); in tipc_udp_send_msg() 181 if (IS_ERR(rt)) { in tipc_udp_send_msg() 182 err = PTR_ERR(rt); in tipc_udp_send_msg() 185 ttl = ip4_dst_hoplimit(&rt->dst); in tipc_udp_send_msg() 186 err = udp_tunnel_xmit_skb(rt, ub->ubsock->sk, skb, in tipc_udp_send_msg() 192 ip_rt_put(rt); in tipc_udp_send_msg()
|
/linux-4.4.14/net/openvswitch/ |
D | vport.h | 207 struct rtable *rt; in ovs_tunnel_route_lookup() local 216 rt = ip_route_output_key(net, fl); in ovs_tunnel_route_lookup() 217 return rt; in ovs_tunnel_route_lookup()
|
/linux-4.4.14/drivers/power/ |
D | bq25890_charger.c | 283 struct bq25890_range rt; member 287 [TBL_ICHG] = { .rt = {0, 5056000, 64000} }, /* uA */ 288 [TBL_ITERM] = { .rt = {64000, 1024000, 64000} }, /* uA */ 289 [TBL_VREG] = { .rt = {3840000, 4608000, 16000} }, /* uV */ 290 [TBL_BATCMP] = { .rt = {0, 140, 20} }, /* mOhm */ 291 [TBL_VCLAMP] = { .rt = {0, 224000, 32000} }, /* uV */ 292 [TBL_BOOSTV] = { .rt = {4550000, 5510000, 64000} }, /* uV */ 293 [TBL_SYSVMIN] = { .rt = {3000000, 3700000, 100000} }, /* uV */ 330 const struct bq25890_range *rtbl = &bq25890_tables[id].rt; in bq25890_find_idx() 353 rtbl = &bq25890_tables[id].rt; in bq25890_find_val() [all …]
|
/linux-4.4.14/drivers/isdn/gigaset/ |
D | ev-layer.c | 448 const struct resp_type_t *rt; in gigaset_handle_modem_response() local 470 for (rt = resp_type; rt->response; ++rt) { in gigaset_handle_modem_response() 471 eoc = skip_prefix(cs->respdata, rt->response); in gigaset_handle_modem_response() 475 if (!rt->response) { in gigaset_handle_modem_response() 498 switch (rt->type) { in gigaset_handle_modem_response() 504 add_cid_event(cs, cid, rt->resp_code, NULL, 0); in gigaset_handle_modem_response() 514 add_cid_event(cs, 0, rt->resp_code, NULL, cid); in gigaset_handle_modem_response() 520 for (rt = resp_type; rt->response; ++rt) { in gigaset_handle_modem_response() 521 psep = skip_prefix(eoc, rt->response); in gigaset_handle_modem_response() 527 if (!psep || rt->type != RT_STRING) { in gigaset_handle_modem_response() [all …]
|
/linux-4.4.14/drivers/pinctrl/ |
D | pinctrl-st.c | 219 struct regmap_field *rt[ST_GPIO_PINS_PER_BANK]; member 239 } rt; member 249 const int alt, oe, pu, od, rt; member 354 .alt = 0, .oe = 5, .pu = 7, .od = 9, .rt = 16, 359 .alt = 0, .oe = 8, .pu = 10, .od = 12, .rt = 16, 364 .alt = 0, .oe = 6, .pu = 8, .od = 10, .rt = 38, 369 .alt = 0, .oe = 3, .pu = 4, .od = 5, .rt = 6, 374 .alt = 0, .oe = 5, .pu = 7, .od = 9, .rt = 11, 387 .alt = 0, .oe = 40, .pu = 50, .od = 60, .rt = 100, 400 .rt = 100, [all …]
|
/linux-4.4.14/drivers/net/wimax/i2400m/ |
D | usb.c | 275 int i2400mu_bus_reset(struct i2400m *i2400m, enum i2400m_reset_type rt) in i2400mu_bus_reset() argument 294 d_fnstart(3, dev, "(i2400m %p rt %u)\n", i2400m, rt); in i2400mu_bus_reset() 295 if (rt == I2400M_RT_WARM) in i2400mu_bus_reset() 300 else if (rt == I2400M_RT_COLD) in i2400mu_bus_reset() 305 else if (rt == I2400M_RT_BUS) { in i2400mu_bus_reset() 325 && rt != I2400M_RT_BUS) { in i2400mu_bus_reset() 334 rt == I2400M_RT_WARM ? "warm" : "cold", result); in i2400mu_bus_reset() 338 d_fnend(3, dev, "(i2400m %p rt %u) = %d\n", i2400m, rt, result); in i2400mu_bus_reset()
|
D | debugfs.c | 204 enum i2400m_reset_type rt = val; in debugfs_i2400m_reset_set() local 205 switch(rt) { in debugfs_i2400m_reset_set() 209 result = i2400m_reset(i2400m, rt); in debugfs_i2400m_reset_set()
|
/linux-4.4.14/net/l2tp/ |
D | l2tp_ip.c | 395 struct rtable *rt = NULL; in l2tp_ip_sendmsg() local 454 rt = (struct rtable *) __sk_dst_check(sk, 0); in l2tp_ip_sendmsg() 457 if (rt == NULL) { in l2tp_ip_sendmsg() 470 rt = ip_route_output_ports(sock_net(sk), fl4, sk, in l2tp_ip_sendmsg() 475 if (IS_ERR(rt)) in l2tp_ip_sendmsg() 478 sk_setup_caps(sk, &rt->dst); in l2tp_ip_sendmsg() 480 skb_dst_set(skb, &rt->dst); in l2tp_ip_sendmsg() 488 skb_dst_set_noref(skb, &rt->dst); in l2tp_ip_sendmsg()
|
/linux-4.4.14/drivers/block/drbd/ |
D | drbd_proc.c | 116 unsigned long db, dt, dbdt, rt, rs_total, rs_left; in drbd_syncer_progress() local 172 rt = (dt * (rs_left / (db/100+1)))/100; /* seconds */ in drbd_syncer_progress() 175 rt / 3600, (rt % 3600) / 60, rt % 60); in drbd_syncer_progress()
|
/linux-4.4.14/arch/mips/oprofile/ |
D | backtrace.c | 35 && ip->i_format.rs == 29 && ip->i_format.rt == 31; in is_ra_save_ins() 41 if (ip->i_format.rs != 29 || ip->i_format.rt != 29) in is_sp_move_ins() 58 if (ip->i_format.opcode == lui_op && ip->i_format.rt == 28) in is_end_of_function_marker()
|
/linux-4.4.14/drivers/net/wireless/ath/ |
D | dfs_pattern_detector.c | 318 const struct radar_types *rt; in dpd_set_domain() local 326 rt = get_dfs_domain_radar_types(region); in dpd_set_domain() 327 if (rt == NULL) in dpd_set_domain() 334 dpd->radar_spec = rt->radar_types; in dpd_set_domain() 335 dpd->num_radar_types = rt->num_radar_types; in dpd_set_domain()
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
D | cvmx-asm.h | 136 asm volatile ("rdhwr %[rt],$" CVMX_TMP_STR(regstr) : [rt] "=d" (result)) 138 asm ("rdhwr %[rt],$" CVMX_TMP_STR(regstr) : [rt] "=d" (result))
|
/linux-4.4.14/net/atm/ |
D | clip.c | 335 struct rtable *rt; in clip_start_xmit() local 347 rt = (struct rtable *) dst; in clip_start_xmit() 348 if (rt->rt_gateway) in clip_start_xmit() 349 daddr = &rt->rt_gateway; in clip_start_xmit() 450 struct rtable *rt; in clip_setentry() local 466 rt = ip_route_output(&init_net, ip, 0, 1, 0); in clip_setentry() 467 if (IS_ERR(rt)) in clip_setentry() 468 return PTR_ERR(rt); in clip_setentry() 469 neigh = __neigh_lookup(&arp_tbl, &ip, rt->dst.dev, 1); in clip_setentry() 470 ip_rt_put(rt); in clip_setentry()
|
/linux-4.4.14/include/math-emu/ |
D | double.h | 122 #define FP_FROM_INT_D(X,r,rs,rt) _FP_FROM_INT(D,2,X,r,rs,rt) argument 197 #define FP_FROM_INT_D(X,r,rs,rt) _FP_FROM_INT(D,1,X,r,rs,rt) argument
|
D | quad.h | 128 #define FP_FROM_INT_Q(X,r,rs,rt) _FP_FROM_INT(Q,4,X,r,rs,rt) argument 201 #define FP_FROM_INT_Q(X,r,rs,rt) _FP_FROM_INT(Q,2,X,r,rs,rt) argument
|
D | single.h | 111 #define FP_FROM_INT_S(X,r,rs,rt) _FP_FROM_INT(S,1,X,r,rs,rt) argument
|
/linux-4.4.14/net/sctp/ |
D | protocol.c | 427 struct rtable *rt; in sctp_v4_get_dst() local 452 rt = ip_route_output_key(sock_net(sk), fl4); in sctp_v4_get_dst() 453 if (!IS_ERR(rt)) in sctp_v4_get_dst() 454 dst = &rt->dst; in sctp_v4_get_dst() 507 rt = ip_route_output_key(sock_net(sk), fl4); in sctp_v4_get_dst() 508 if (IS_ERR(rt)) in sctp_v4_get_dst() 512 dst = &rt->dst; in sctp_v4_get_dst() 520 if (&rt->dst != dst) in sctp_v4_get_dst() 521 dst_release(&rt->dst); in sctp_v4_get_dst() 525 if (dst != &rt->dst) in sctp_v4_get_dst() [all …]
|
D | ipv6.c | 336 struct rt6_info *rt; in sctp_v6_get_dst() local 338 rt = (struct rt6_info *)dst; in sctp_v6_get_dst() 340 t->dst_cookie = rt6_get_cookie(rt); in sctp_v6_get_dst() 342 &rt->rt6i_dst.addr, rt->rt6i_dst.plen, in sctp_v6_get_dst()
|
/linux-4.4.14/drivers/net/ipvlan/ |
D | ipvlan_core.c | 350 struct rtable *rt; in ipvlan_process_v4_outbound() local 360 rt = ip_route_output_flow(net, &fl4, NULL); in ipvlan_process_v4_outbound() 361 if (IS_ERR(rt)) in ipvlan_process_v4_outbound() 364 if (rt->rt_type != RTN_UNICAST && rt->rt_type != RTN_LOCAL) { in ipvlan_process_v4_outbound() 365 ip_rt_put(rt); in ipvlan_process_v4_outbound() 369 skb_dst_set(skb, &rt->dst); in ipvlan_process_v4_outbound()
|
/linux-4.4.14/drivers/net/ethernet/amd/ |
D | declance.c | 231 #define lib_off(rt, type) \ argument 232 shift_off(offsetof(struct lance_init_block, rt), type) 234 #define lib_ptr(ib, rt, type) \ argument 235 ((volatile u16 *)((u8 *)(ib) + lib_off(rt, type))) 237 #define rds_off(rt, type) \ argument 238 shift_off(offsetof(struct lance_rx_desc, rt), type) 240 #define rds_ptr(rd, rt, type) \ argument 241 ((volatile u16 *)((u8 *)(rd) + rds_off(rt, type))) 243 #define tds_off(rt, type) \ argument 244 shift_off(offsetof(struct lance_tx_desc, rt), type) [all …]
|
/linux-4.4.14/arch/xtensa/include/asm/ |
D | pgtable.h | 408 #define _PGD_INDEX(rt,rs) extui rt, rs, PGDIR_SHIFT, 32-PGDIR_SHIFT argument 409 #define _PTE_INDEX(rt,rs) extui rt, rs, PAGE_SHIFT, PTRS_PER_PTE_SHIFT argument
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-deadline.txt | 30 system behavior. As for -rt (group) scheduling, it is assumed that root users 352 to -deadline tasks is similar to the one already used for -rt 354 Documentation/scheduler/sched-rt-group.txt), and is based on readable/ 362 is that -deadline tasks have bandwidth on their own (while -rt ones don't!), 377 For now the -rt knobs are used for -deadline admission control and the 378 -deadline runtime is accounted against the -rt runtime. We realize that this 381 run -rt tasks from a -deadline server; in which case the -rt bandwidth is a 440 follows (rt-app is used to create a -deadline task). 453 rt-app -t 100000:10000:d:0 -D5 (it is now actually superfluous to specify 482 The first testing application is called rt-app and can be used to [all …]
|
D | 00-INDEX | 13 sched-rt-group.txt
|
/linux-4.4.14/arch/sparc/kernel/ |
D | smp_64.c | 164 static inline long get_delta (long *rt, long *master) in get_delta() argument 184 *rt = best_t1 - best_t0; in get_delta() 197 unsigned long flags, rt, master_time_stamp; in smp_synchronize_tick_client() local 200 long rt; /* roundtrip time */ in smp_synchronize_tick_client() member 215 delta = get_delta(&rt, &master_time_stamp); in smp_synchronize_tick_client() 229 t[i].rt = rt; in smp_synchronize_tick_client() 241 t[i].rt, t[i].master, t[i].diff, t[i].lat); in smp_synchronize_tick_client() 246 smp_processor_id(), delta, rt); in smp_synchronize_tick_client()
|
/linux-4.4.14/arch/arm/include/asm/ |
D | kvm_mmio.h | 27 unsigned long rt; member
|
/linux-4.4.14/tools/perf/tests/ |
D | perf-targz-src-pkg | 13 TARBALL=$(ls -rt perf-*.tar.gz)
|
/linux-4.4.14/drivers/usb/host/ |
D | fhci-tds.c | 249 u8 rt; in fhci_init_ep_registers() local 257 rt = (BUS_MODE_BO_BE | BUS_MODE_GBL); in fhci_init_ep_registers() 260 rt |= BUS_MODE_DTB; in fhci_init_ep_registers() 262 out_8(&ep->ep_pram_ptr->rx_func_code, rt); in fhci_init_ep_registers() 263 out_8(&ep->ep_pram_ptr->tx_func_code, rt); in fhci_init_ep_registers()
|
/linux-4.4.14/drivers/media/radio/si4713/ |
D | si4713.c | 862 static int si4713_set_rds_radio_text(struct si4713_device *sdev, const char *rt) in si4713_set_rds_radio_text() argument 877 if (!strlen(rt)) in si4713_set_rds_radio_text() 886 if (!rt[t_index + i] || in si4713_set_rds_radio_text() 887 rt[t_index + i] == RDS_CARRIAGE_RETURN) { in si4713_set_rds_radio_text() 888 rt = cr; in si4713_set_rds_radio_text() 897 compose_u16(rt[t_index], rt[t_index + 1]), in si4713_set_rds_radio_text() 898 compose_u16(rt[t_index + 2], rt[t_index + 3]), in si4713_set_rds_radio_text()
|
/linux-4.4.14/drivers/s390/char/ |
D | tape_char.c | 76 device->rt = register_tape_dev( in tapechar_setup_device() 90 unregister_tape_dev(&device->cdev->dev, device->rt); in tapechar_cleanup_device() 91 device->rt = NULL; in tapechar_cleanup_device()
|
/linux-4.4.14/security/selinux/ss/ |
D | policydb.c | 767 struct mls_range *rt = datum; in range_tr_destroy() local 769 ebitmap_destroy(&rt->level[0].cat); in range_tr_destroy() 770 ebitmap_destroy(&rt->level[1].cat); in range_tr_destroy() 1843 struct range_trans *rt = NULL; in range_read() local 1859 rt = kzalloc(sizeof(*rt), GFP_KERNEL); in range_read() 1860 if (!rt) in range_read() 1867 rt->source_type = le32_to_cpu(buf[0]); in range_read() 1868 rt->target_type = le32_to_cpu(buf[1]); in range_read() 1873 rt->target_class = le32_to_cpu(buf[0]); in range_read() 1875 rt->target_class = p->process_class; in range_read() [all …]
|
/linux-4.4.14/Documentation/ |
D | pi-futex.txt | 94 the futex-queue. The pi_state includes an rt-mutex, which is a PI-aware, 96 of the rt-mutex, and the FUTEX_WAITERS bit is atomically set in the 97 futex value. Then this task tries to lock the rt-mutex, on which it 121 Documentation/rt-mutex.txt.
|
/linux-4.4.14/include/linux/ |
D | init_task.h | 210 .rt = { \ 211 .run_list = LIST_HEAD_INIT(tsk.rt.run_list), \
|
/linux-4.4.14/drivers/scsi/cxgbi/ |
D | libcxgbi.c | 587 struct rtable *rt; in find_route_ipv4() local 589 rt = ip_route_output_ports(&init_net, fl4, NULL, daddr, saddr, in find_route_ipv4() 591 if (IS_ERR(rt)) in find_route_ipv4() 594 return rt; in find_route_ipv4() 603 struct rtable *rt = NULL; in cxgbi_check_route() local 611 rt = find_route_ipv4(&fl4, 0, daddr->sin_addr.s_addr, 0, daddr->sin_port, 0); in cxgbi_check_route() 612 if (!rt) { in cxgbi_check_route() 619 dst = &rt->dst; in cxgbi_check_route() 627 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) { in cxgbi_check_route() 678 ip_rt_put(rt); in cxgbi_check_route() [all …]
|
/linux-4.4.14/fs/hpfs/ |
D | alloc.c | 135 goto rt; in alloc_in_bmp() 150 goto rt; in alloc_in_bmp() 173 goto rt; in alloc_in_bmp() 178 rt: in alloc_in_bmp()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | bcm4709-asus-rt-ac87u.dts | 16 compatible = "asus,rt-ac87u", "brcm,bcm4709", "brcm,bcm4708";
|
D | bcm4708-asus-rt-ac68u.dts | 16 compatible = "asus,rt-ac68u", "brcm,bcm4708";
|
D | bcm47081-asus-rt-n18u.dts | 16 compatible = "asus,rt-n18u", "brcm,bcm47081", "brcm,bcm4708";
|
D | bcm4708-asus-rt-ac56u.dts | 16 compatible = "asus,rt-ac56u", "brcm,bcm4708";
|
/linux-4.4.14/arch/x86/platform/efi/ |
D | efi_64.c | 327 u32 *rt, *___f; \ 329 rt = (u32 *)(table + offsetof(efi_system_table_32_t, runtime)); \ 330 ___f = (u32 *)(*rt + offsetof(efi_runtime_services_32_t, func)); \
|
/linux-4.4.14/fs/xfs/ |
D | xfs_bmap_util.h | 50 int rt, int eof, int delay, int convert,
|
D | xfs_iomap.c | 128 int rt; in xfs_iomap_write_direct() local 137 rt = XFS_IS_REALTIME_INODE(ip); in xfs_iomap_write_direct() 175 if (unlikely(rt)) { in xfs_iomap_write_direct()
|
D | xfs_bmap_util.c | 967 int rt; in xfs_alloc_file_space() local 987 rt = XFS_IS_REALTIME_INODE(ip); in xfs_alloc_file_space() 1027 if (unlikely(rt)) { in xfs_alloc_file_space() 1223 int rt; in xfs_free_file_space() local 1238 rt = XFS_IS_REALTIME_INODE(ip); in xfs_free_file_space() 1260 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) { in xfs_free_file_space()
|
/linux-4.4.14/include/linux/amba/ |
D | pl022.h | 257 bool rt; member
|
/linux-4.4.14/drivers/video/fbdev/ |
D | sticore.h | 76 #define REGION_OFFSET_TO_PHYS( rt, hpa ) \ argument 77 (((rt).region_desc.offset << 12) + (hpa))
|
/linux-4.4.14/drivers/infiniband/hw/cxgb3/ |
D | iwch_cm.c | 339 struct rtable *rt; in find_route() local 342 rt = ip_route_output_ports(&init_net, &fl4, NULL, peer_ip, local_ip, in find_route() 345 if (IS_ERR(rt)) in find_route() 347 return rt; in find_route() 1347 struct rtable *rt; in pass_accept_req() local 1370 rt = find_route(tdev, in pass_accept_req() 1375 if (!rt) { in pass_accept_req() 1380 dst = &rt->dst; in pass_accept_req() 1893 struct rtable *rt; in iwch_connect() local 1945 rt = find_route(h->rdev.t3cdev_p, laddr->sin_addr.s_addr, in iwch_connect() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/input/touchscreen/ |
D | tsc2007.txt | 16 - ti,max-rt: maximum pressure.
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | ramnv50.c | 605 u32 r0, r4, rt, rblock_size; in nv50_fb_vram_rblock() local 609 rt = nvkm_rd32(device, 0x100250); in nv50_fb_vram_rblock() 611 r0, r4, rt, nvkm_rd32(device, 0x001540)); in nv50_fb_vram_rblock() 629 if (rt & 1) in nv50_fb_vram_rblock()
|
/linux-4.4.14/tools/firewire/ |
D | nosy-dump.h | 82 uint32_t rt:2; member
|
/linux-4.4.14/net/sched/ |
D | cls_route.c | 356 struct route4_filter *rt; in route4_delete() local 358 rt = rtnl_dereference(b->ht[i]); in route4_delete() 359 if (rt) in route4_delete()
|
/linux-4.4.14/net/netlink/ |
D | genetlink.c | 818 struct genl_family *rt; in ctrl_dumpfamily() local 825 list_for_each_entry(rt, genl_family_chain(i), family_list) { in ctrl_dumpfamily() 826 if (!rt->netnsok && !net_eq(net, &init_net)) in ctrl_dumpfamily() 830 if (ctrl_fill_info(rt, NETLINK_CB(cb->skb).portid, in ctrl_dumpfamily()
|
/linux-4.4.14/drivers/ata/ |
D | pata_legacy.c | 271 u8 rt; in pdc20230_set_piomode() local 294 rt = inb(0x1F3); in pdc20230_set_piomode() 295 rt &= 0x07 << (3 * adev->devno); in pdc20230_set_piomode() 297 rt |= (1 + 3 * pio) << (3 * adev->devno); in pdc20230_set_piomode()
|
/linux-4.4.14/scripts/ |
D | unifdef.c | 918 Linetype lt, rt; in eval_table() local 934 rt = ops->inner(ops+1, &val, &cp); in eval_table() 935 if (rt == LT_ERROR) in eval_table() 937 lt = op->fn(valp, lt, *valp, rt, val); in eval_table()
|
/linux-4.4.14/Documentation/devicetree/bindings/spi/ |
D | spi_pl022.txt | 17 - pl022,rt : indicates the controller should run the message pump with realtime
|
/linux-4.4.14/include/uapi/linux/ |
D | cdrom.h | 865 __u8 rt : 1; member 882 __u8 rt : 1; member
|