/linux-4.4.14/drivers/staging/lustre/lnet/klnds/socklnd/ |
D | socklnd.c | 70 ksock_route_t *route; in ksocknal_create_route() local 72 LIBCFS_ALLOC(route, sizeof(*route)); in ksocknal_create_route() 73 if (route == NULL) in ksocknal_create_route() 76 atomic_set(&route->ksnr_refcount, 1); in ksocknal_create_route() 77 route->ksnr_peer = NULL; in ksocknal_create_route() 78 route->ksnr_retry_interval = 0; /* OK to connect at any time */ in ksocknal_create_route() 79 route->ksnr_ipaddr = ipaddr; in ksocknal_create_route() 80 route->ksnr_port = port; in ksocknal_create_route() 81 route->ksnr_scheduled = 0; in ksocknal_create_route() 82 route->ksnr_connecting = 0; in ksocknal_create_route() [all …]
|
D | socklnd_cb.c | 579 ksocknal_launch_connection_locked (ksock_route_t *route) in ksocknal_launch_connection_locked() argument 584 LASSERT(!route->ksnr_scheduled); in ksocknal_launch_connection_locked() 585 LASSERT(!route->ksnr_connecting); in ksocknal_launch_connection_locked() 586 LASSERT((ksocknal_route_mask() & ~route->ksnr_connected) != 0); in ksocknal_launch_connection_locked() 588 route->ksnr_scheduled = 1; /* scheduling conn for connd */ in ksocknal_launch_connection_locked() 589 ksocknal_route_addref(route); /* extra ref for connd */ in ksocknal_launch_connection_locked() 593 list_add_tail(&route->ksnr_connd_list, in ksocknal_launch_connection_locked() 603 ksock_route_t *route; in ksocknal_launch_all_connections_locked() local 608 route = ksocknal_find_connectable_route_locked(peer); in ksocknal_launch_all_connections_locked() 609 if (route == NULL) in ksocknal_launch_all_connections_locked() [all …]
|
D | socklnd.h | 581 ksocknal_route_addref(ksock_route_t *route) in ksocknal_route_addref() argument 583 LASSERT(atomic_read(&route->ksnr_refcount) > 0); in ksocknal_route_addref() 584 atomic_inc(&route->ksnr_refcount); in ksocknal_route_addref() 587 void ksocknal_destroy_route(ksock_route_t *route); 590 ksocknal_route_decref(ksock_route_t *route) in ksocknal_route_decref() argument 592 LASSERT(atomic_read(&route->ksnr_refcount) > 0); in ksocknal_route_decref() 593 if (atomic_dec_and_test(&route->ksnr_refcount)) in ksocknal_route_decref() 594 ksocknal_destroy_route(route); in ksocknal_route_decref() 628 int ksocknal_create_conn(lnet_ni_t *ni, ksock_route_t *route,
|
/linux-4.4.14/drivers/misc/vmw_vmci/ |
D | vmci_route.c | 31 enum vmci_route *route) in vmci_route() argument 36 *route = VMCI_ROUTE_NONE; in vmci_route() 88 *route = VMCI_ROUTE_AS_GUEST; in vmci_route() 112 *route = VMCI_ROUTE_AS_HOST; in vmci_route() 125 *route = VMCI_ROUTE_AS_GUEST; in vmci_route() 151 *route = VMCI_ROUTE_AS_HOST; in vmci_route() 188 *route = VMCI_ROUTE_AS_HOST; in vmci_route() 224 *route = VMCI_ROUTE_AS_GUEST; in vmci_route()
|
D | vmci_datagram.c | 326 enum vmci_route route; in vmci_datagram_dispatch() local 337 retval = vmci_route(&dg->src, &dg->dst, from_guest, &route); in vmci_datagram_dispatch() 344 if (VMCI_ROUTE_AS_HOST == route) { in vmci_datagram_dispatch() 350 if (VMCI_ROUTE_AS_GUEST == route) in vmci_datagram_dispatch() 353 pr_warn("Unknown route (%d) for datagram\n", route); in vmci_datagram_dispatch()
|
D | vmci_doorbell.c | 579 enum vmci_route route; in vmci_doorbell_notify() local 587 retval = vmci_route(&src, &dst, false, &route); in vmci_doorbell_notify() 591 if (VMCI_ROUTE_AS_HOST == route) in vmci_doorbell_notify() 595 if (VMCI_ROUTE_AS_GUEST == route) in vmci_doorbell_notify() 598 pr_warn("Unknown route (%d) for doorbell\n", route); in vmci_doorbell_notify()
|
D | vmci_route.h | 28 bool from_guest, enum vmci_route *route);
|
D | vmci_queue_pair.c | 2770 enum vmci_route route; in vmci_qpair_alloc() local 2795 retval = vmci_route(&src, &dst, false, &route); in vmci_qpair_alloc() 2797 route = vmci_guest_code_active() ? in vmci_qpair_alloc() 2818 if (VMCI_ROUTE_AS_HOST == route) { in vmci_qpair_alloc()
|
/linux-4.4.14/drivers/thunderbolt/ |
D | ctl.h | 15 typedef void (*hotplug_cb)(void *data, u64 route, u8 port, bool unplug); 56 int tb_cfg_error(struct tb_ctl *ctl, u64 route, u32 port, 58 struct tb_cfg_result tb_cfg_reset(struct tb_ctl *ctl, u64 route, 61 u64 route, u32 port, 65 u64 route, u32 port, 68 int tb_cfg_read(struct tb_ctl *ctl, void *buffer, u64 route, u32 port, 70 int tb_cfg_write(struct tb_ctl *ctl, void *buffer, u64 route, u32 port, 72 int tb_cfg_get_upstream_port(struct tb_ctl *ctl, u64 route);
|
D | ctl.c | 138 static struct tb_cfg_header make_header(u64 route) in make_header() argument 141 .route_hi = route >> 32, in make_header() 142 .route_lo = route, in make_header() 145 WARN_ON(get_route(header) != route); in make_header() 150 u64 route) in check_header() argument 170 if (WARN(route != get_route(*header), in check_header() 172 route, get_route(*header))) in check_header() 223 enum tb_cfg_pkg_type type, u64 route) in parse_header() argument 233 res.err = check_header(pkg, len, type, route); in parse_header() 373 u64 route = get_route(pkg->header); in tb_ctl_handle_plug_event() local [all …]
|
D | switch.c | 235 int tb_switch_reset(struct tb *tb, u64 route) in tb_switch_reset() argument 239 header.route_hi = route >> 32, in tb_switch_reset() 240 header.route_lo = route, in tb_switch_reset() 243 tb_info(tb, "resetting switch at %llx\n", route); in tb_switch_reset() 244 res.err = tb_cfg_write(tb->ctl, ((u32 *) &header) + 2, route, in tb_switch_reset() 248 res = tb_cfg_reset(tb->ctl, route, TB_CFG_DEFAULT_TIMEOUT); in tb_switch_reset() 254 struct tb_switch *get_switch_at_route(struct tb_switch *sw, u64 route) in get_switch_at_route() argument 256 u8 next_port = route; /* in get_switch_at_route() 260 if (route == 0) in get_switch_at_route() 269 route >> TB_ROUTE_SHIFT); in get_switch_at_route() [all …]
|
D | tb.c | 206 u64 route; member 226 sw = get_switch_at_route(tb->root_switch, ev->route); in tb_handle_hotplug() 230 ev->route, ev->port, ev->unplug); in tb_handle_hotplug() 236 ev->route, ev->port, ev->unplug); in tb_handle_hotplug() 243 ev->route, ev->port, ev->unplug); in tb_handle_hotplug() 284 static void tb_schedule_hotplug_handler(void *data, u64 route, u8 port, in tb_schedule_hotplug_handler() argument 293 ev->route = route; in tb_schedule_hotplug_handler()
|
D | tb.h | 224 struct tb_switch *tb_switch_alloc(struct tb *tb, u64 route); 228 int tb_switch_reset(struct tb *tb, u64 route); 230 struct tb_switch *get_switch_at_route(struct tb_switch *sw, u64 route); 248 static inline int tb_route_length(u64 route) in tb_route_length() argument 250 return (fls64(route) + TB_ROUTE_SHIFT - 1) / TB_ROUTE_SHIFT; in tb_route_length()
|
/linux-4.4.14/net/ax25/ |
D | ax25_route.c | 75 static int __must_check ax25_rt_add(struct ax25_routes_struct *route) in ax25_rt_add() argument 81 if ((ax25_dev = ax25_addr_ax25dev(&route->port_addr)) == NULL) in ax25_rt_add() 83 if (route->digi_count > AX25_MAX_DIGIS) in ax25_rt_add() 90 if (ax25cmp(&ax25_rt->callsign, &route->dest_addr) == 0 && in ax25_rt_add() 94 if (route->digi_count != 0) { in ax25_rt_add() 100 ax25_rt->digipeat->ndigi = route->digi_count; in ax25_rt_add() 101 for (i = 0; i < route->digi_count; i++) { in ax25_rt_add() 103 ax25_rt->digipeat->calls[i] = route->digi_addr[i]; in ax25_rt_add() 118 ax25_rt->callsign = route->dest_addr; in ax25_rt_add() 122 if (route->digi_count != 0) { in ax25_rt_add() [all …]
|
D | ax25_ip.c | 106 ax25_route *route; in ax25_ip_xmit() local 117 route = ax25_get_route(dst, NULL); in ax25_ip_xmit() 118 if (route) { in ax25_ip_xmit() 119 digipeat = route->digipeat; in ax25_ip_xmit() 120 dev = route->dev; in ax25_ip_xmit() 121 ip_mode = route->ip_mode; in ax25_ip_xmit() 198 if ((ourskb = ax25_rt_build_path(skb, src, dst, route->digipeat)) == NULL) { in ax25_ip_xmit() 209 if (route) in ax25_ip_xmit() 210 ax25_put_route(route); in ax25_ip_xmit()
|
D | Kconfig | 101 The Packet Layer Protocol (PLP) is a way to route packets over X.25
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_usif.c | 48 u8 route; member 86 BUG_ON(rep->v0.route != NVDRM_NOTIFY_USIF); in usif_notify() 101 rep->route = ntfy->route; in usif_notify() 148 ntfy->route = req->v0.route; in usif_notify_new() 150 req->v0.route = NVDRM_NOTIFY_USIF; in usif_notify_new() 154 req->v0.route = ntfy->route; in usif_notify_new() 253 u8 route; member 280 object->route = args->v0.route; in usif_object_new() 282 args->v0.route = NVDRM_OBJECT_USIF; in usif_object_new() 286 args->v0.route = object->route; in usif_object_new() [all …]
|
D | nouveau_nvif.c | 85 u8 route; in nvkm_client_ntfy() local 88 route = args->v0.route; in nvkm_client_ntfy() 94 switch (route) { in nvkm_client_ntfy()
|
D | nouveau_abi16.c | 487 client->route = NVDRM_OBJECT_ABI16; in nouveau_abi16_ioctl_grobj_alloc() 490 client->route = NVDRM_OBJECT_NVIF; in nouveau_abi16_ioctl_grobj_alloc() 553 client->route = NVDRM_OBJECT_ABI16; in nouveau_abi16_ioctl_notifierobj_alloc() 559 client->route = NVDRM_OBJECT_NVIF; in nouveau_abi16_ioctl_notifierobj_alloc()
|
/linux-4.4.14/drivers/infiniband/core/ |
D | smi.c | 146 smp->route.dr.initial_path, in opa_smi_handle_dr_smp_send() 147 smp->route.dr.return_path, in opa_smi_handle_dr_smp_send() 149 smp->route.dr.dr_dlid == in opa_smi_handle_dr_smp_send() 151 smp->route.dr.dr_slid == in opa_smi_handle_dr_smp_send() 261 smp->route.dr.initial_path, in opa_smi_handle_dr_smp_recv() 262 smp->route.dr.return_path, in opa_smi_handle_dr_smp_recv() 264 smp->route.dr.dr_dlid == in opa_smi_handle_dr_smp_recv() 266 smp->route.dr.dr_slid == in opa_smi_handle_dr_smp_recv() 314 smp->route.dr.dr_dlid == in opa_smi_check_forward_dr_smp() 316 smp->route.dr.dr_slid == in opa_smi_check_forward_dr_smp() [all …]
|
D | cma.c | 344 id_priv->id.route.addr.dev_addr.transport = in cma_attach_to_dev() 374 return (struct sockaddr *) &id_priv->id.route.addr.src_addr; in cma_src_addr() 379 return (struct sockaddr *) &id_priv->id.route.addr.dst_addr; in cma_dst_addr() 384 return id_priv->id.route.addr.src_addr.ss_family; in cma_family() 409 ib_addr_get_mgid(&id_priv->id.route.addr.dev_addr, &rec.mgid); in cma_set_qkey() 470 struct rdma_dev_addr *dev_addr = &id_priv->id.route.addr.dev_addr; in cma_acquire_dev() 481 rdma_ip2gid((struct sockaddr *)&id_priv->id.route.addr.src_addr, in cma_acquire_dev() 582 cma_translate_ib(addr, &id_priv->id.route.addr.dev_addr); in cma_resolve_ib_dev() 628 id_priv->id.route.addr.dev_addr.net = get_net(net); in rdma_create_id() 806 struct rdma_dev_addr *dev_addr = &id_priv->id.route.addr.dev_addr; in cma_ib_init_qp_attr() [all …]
|
D | ucma.c | 729 struct rdma_route *route) in ucma_copy_ib_route() argument 733 resp->num_paths = route->num_paths; in ucma_copy_ib_route() 734 switch (route->num_paths) { in ucma_copy_ib_route() 736 dev_addr = &route->addr.dev_addr; in ucma_copy_ib_route() 745 &route->path_rec[1]); in ucma_copy_ib_route() 749 &route->path_rec[0]); in ucma_copy_ib_route() 757 struct rdma_route *route) in ucma_copy_iboe_route() argument 760 resp->num_paths = route->num_paths; in ucma_copy_iboe_route() 761 switch (route->num_paths) { in ucma_copy_iboe_route() 763 rdma_ip2gid((struct sockaddr *)&route->addr.dst_addr, in ucma_copy_iboe_route() [all …]
|
D | mad.c | 778 ? opa_smp->route.dr.dr_dlid : opa_smp->route.dr.dr_slid) == in handle_outgoing_dr_smp() 787 opa_drslid = be32_to_cpu(opa_smp->route.dr.dr_slid); in handle_outgoing_dr_smp()
|
/linux-4.4.14/include/rdma/ |
D | opa_smi.h | 76 } route; member 132 return smp->route.dr.data; in opa_get_smp_data() 134 return smp->route.lid.data; in opa_get_smp_data() 140 return sizeof(smp->route.dr.data); in opa_get_smp_data_size() 142 return sizeof(smp->route.lid.data); in opa_get_smp_data_size() 148 return sizeof(*smp) - sizeof(smp->route.dr.data); in opa_get_smp_header_size() 150 return sizeof(*smp) - sizeof(smp->route.lid.data); in opa_get_smp_header_size()
|
D | rdma_cm.h | 154 struct rdma_route route; member
|
/linux-4.4.14/drivers/staging/lustre/lnet/lnet/ |
D | router.c | 265 lnet_add_route_to_rnet(lnet_remotenet_t *rnet, lnet_route_t *route) in lnet_add_route_to_rnet() argument 284 list_add(&route->lr_list, e); in lnet_add_route_to_rnet() 285 list_add(&route->lr_gwlist, &route->lr_gateway->lp_routes); in lnet_add_route_to_rnet() 288 lnet_rtr_addref_locked(route->lr_gateway); in lnet_add_route_to_rnet() 298 lnet_route_t *route; in lnet_add_route() local 318 LIBCFS_ALLOC(route, sizeof(*route)); in lnet_add_route() 320 if (route == NULL || rnet == NULL) { in lnet_add_route() 323 if (route != NULL) in lnet_add_route() 324 LIBCFS_FREE(route, sizeof(*route)); in lnet_add_route() 332 route->lr_hops = hops; in lnet_add_route() [all …]
|
D | router_proc.c | 195 lnet_route_t *route = NULL; in proc_lnet_routes() local 209 for (i = 0; i < LNET_REMOTE_NETS_HASH_SIZE && route == NULL; in proc_lnet_routes() 215 while (n != rn_list && route == NULL) { in proc_lnet_routes() 226 route = re; in proc_lnet_routes() 238 if (route != NULL) { in proc_lnet_routes() 240 unsigned int hops = route->lr_hops; in proc_lnet_routes() 241 unsigned int priority = route->lr_priority; in proc_lnet_routes() 242 lnet_nid_t nid = route->lr_gateway->lp_nid; in proc_lnet_routes() 243 int alive = route->lr_gateway->lp_alive; in proc_lnet_routes()
|
D | lib-move.c | 2406 lnet_route_t *route; in LNetDist() local 2411 list_for_each_entry(route, &rnet->lrn_routes, in LNetDist() 2414 route->lr_hops < shortest->lr_hops) in LNetDist() 2415 shortest = route; in LNetDist()
|
/linux-4.4.14/Documentation/DocBook/ |
D | rapidio.xml.db | 53 API-rio-route-add-entry 54 API-rio-route-get-entry 55 API-rio-route-clr-table 95 API-rio-update-route-tables 99 API-rio-build-route-tables 103 API-rio-chk-dev-route 107 API-rio-std-route-add-entry 108 API-rio-std-route-get-entry 109 API-rio-std-route-clr-table
|
/linux-4.4.14/Documentation/networking/ |
D | policy-routing.txt | 15 REJECT - abort route lookup and return an error value. 16 THROW - abort route lookup in this class. 51 RTRF_LOG - log route creations. 52 RTRF_VALVE - One way route (used with masquerading) 68 If a route is found, return it. 81 or use route utility from current net-tools. 86 route maintenance, but it is ideal for manual configuration. 89 [ dev INPUTDEV] [ pref PREFERENCE ] route [ gw GATEWAY ] 142 route.c has a compilation time switch CONFIG_IP_LOCAL_RT_POLICY.
|
D | alias.txt | 20 The corresponding route is also set up by this command. 21 Please note: The route always points to the base interface. 34 refer to them as usual (ifconfig, route, etc).
|
D | vrf.txt | 24 A VRF device is created with an associated route table. Network interfaces 28 | vrf-blue | ===> route table 10 67 Set the default route for the table (and hence default route for the VRF). 68 e.g, ip route add table 10 prohibit default 78 e.g., ip route add table 10 ... 114 Without the rules route lookups are not directed to the table. 244 $ ip [-6] route show table ID 247 $ ip route show table vrf-red 258 $ ip -6 route show table vrf-red 278 A test route lookup can be done for a VRF by adding the oif option to ip: [all …]
|
D | dccp.txt | 191 Per-route rto_min support 192 CCID-2 supports the RTAX_RTO_MIN per-route setting for the minimum value 195 > ip route change 10.0.0.0/24 rto_min 250j dev wlan0 196 > ip route add 10.0.0.254/32 rto_min 800j dev wlan0 197 > ip route show dev wlan0
|
D | arcnet.txt | 364 route add MY.IP.ADD.RESS arc0 365 route add -net SUB.NET.ADD.RESS arc0 371 route add MY.IP.ADD.RESS arc0e 372 route add -net SUB.NET.ADD.RESS arc0e 402 route add insight arc0 403 route add freedom arc0 /* I would use the subnet here (like I said 409 route add default gw freedom 413 route add freedom arc0 414 route add insight arc0 434 determine how to route packets. This means that to get to freedom or [all …]
|
D | ipvs-sysctl.txt | 202 If enabled, recalculate the route of SNATed packets from 207 If policy routing is in effect then it is possible that the route 211 If policy routing is not in effect then the recalculated route will 212 always be the same as the original route so it is an optimisation
|
D | ipvlan.txt | 100 (6) ip -4 route add default via $ROUTER dev ipvl0 107 (6) ip -4 route add default via $ROUTER dev ipvl1
|
D | switchdev.txt | 315 does a longest prefix match (LPM) on FIB entries matching route prefix and 338 structure holds details on the route and route's nexthops. *dev is one of the 340 referenced in the route's nexthop list don't all have the same switch ID, the 343 Routes offloaded to the device are labeled with "offload" in the ip route 346 $ ip route show
|
D | dmfe.txt | 43 route add default eth0
|
D | fib_trie.txt | 94 The route manipulation functions. Should conform pretty closely to the 143 To alleviate any doubts about the correctness of the route selection process,
|
D | eql.txt | 122 Once the eql device is up and running, add a static default route to 123 it in the routing table using the cool new route syntax that makes 129 route add default eql
|
D | tproxy.txt | 22 # ip route add local 0.0.0.0/0 dev lo table 100
|
D | multiqueue.txt | 70 skbedit, has been added. Assuming you wanted to route all traffic to a
|
D | ipddp.txt | 54 You will also need to add the proper routes to route your Linux box's IP
|
D | pktgen.txt | 247 pktgen.conf-1-1-rdos # 1 CPU 1 dev w. route DoS 249 pktgen.conf-1-1-ip6-rdos # 1 CPU 1 dev ipv6 w. route DoS
|
D | tcp.txt | 103 backoff timers etc. A change of route table stamp causes a change of header
|
D | decnet.txt | 99 device you want DECnet to route packets out of when no specific route
|
D | batman-adv.txt | 156 2 - Enable messages related to route added / changed / deleted
|
D | netconsole.txt | 185 default gateway (you may use /sbin/route -n to find it out) as the
|
D | ip-sysctl.txt | 66 route/max_size - INTEGER 70 as route cache is no longer used. 110 The advertised MSS depends on the first hop route MTU, but will 275 knob. The value is not used, if tcp_ecn or per route (or congestion 419 By default, TCP saves various connection metrics in the route cache 1088 based on whether or not the kernel would route a packet from
|
D | l2tp.txt | 327 Add L2TP tunnel switching support. This would route tunneled traffic
|
D | scaling.txt | 71 that can route each interrupt to a particular CPU. The active mapping
|
D | bonding.txt | 1975 route additions may cause trouble.
|
/linux-4.4.14/virt/kvm/ |
D | irqchip.c | 63 struct kvm_kernel_irq_routing_entry route; in kvm_send_userspace_msi() local 68 route.msi.address_lo = msi->address_lo; in kvm_send_userspace_msi() 69 route.msi.address_hi = msi->address_hi; in kvm_send_userspace_msi() 70 route.msi.data = msi->data; in kvm_send_userspace_msi() 72 return kvm_set_msi(&route, kvm, KVM_USERSPACE_IRQ_SOURCE_ID, 1, false); in kvm_send_userspace_msi()
|
/linux-4.4.14/include/sound/ |
D | emu10k1.h | 1553 #define snd_emu10k1_compose_send_routing(route) \ argument 1554 ((route[0] | (route[1] << 4) | (route[2] << 8) | (route[3] << 12)) << 16) 1556 #define snd_emu10k1_compose_audigy_fxrt1(route) \ argument 1557 ((unsigned int)route[0] | ((unsigned int)route[1] << 8) | ((unsigned int)route[2] << 16) | ((unsign… 1559 #define snd_emu10k1_compose_audigy_fxrt2(route) \ argument 1560 ((unsigned int)route[4] | ((unsigned int)route[5] << 8) | ((unsigned int)route[6] << 16) | ((unsign…
|
D | soc-dapm.h | 395 const struct snd_soc_dapm_route *route, int num); 397 const struct snd_soc_dapm_route *route, int num); 399 const struct snd_soc_dapm_route *route, int num);
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/core/ |
D | ioctl.c | 96 args->v0.route, args->v0.token, args->v0.object); in nvkm_ioctl_new() 128 object->route = args->v0.route; in nvkm_ioctl_new() 387 void *data, u32 size, u8 owner, u8 *route, u64 *token) in nvkm_ioctl_path() argument 401 if (owner != NVIF_IOCTL_V0_OWNER_ANY && owner != object->route) { in nvkm_ioctl_path() 405 *route = object->route; in nvkm_ioctl_path() 436 &args->v0.route, &args->v0.token); in nvkm_ioctl()
|
D | client.c | 117 req->v0.reply, req->v0.route, req->v0.token); in nvkm_client_notify_new() 121 notify->rep.v0.route = req->v0.route; in nvkm_client_notify_new()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvif/ |
D | event.h | 9 __u8 route; member 17 __u8 route; member
|
D | ioctl.h | 28 __u8 route; member 54 __u8 route; member
|
D | client.h | 10 u8 route; member
|
/linux-4.4.14/sound/soc/ |
D | soc-dapm.c | 2620 const struct snd_soc_dapm_route *route) in snd_soc_dapm_add_route() argument 2634 prefix, route->sink); in snd_soc_dapm_add_route() 2637 prefix, route->source); in snd_soc_dapm_add_route() 2640 sink = route->sink; in snd_soc_dapm_add_route() 2641 source = route->source; in snd_soc_dapm_add_route() 2681 route->source); in snd_soc_dapm_add_route() 2686 route->sink); in snd_soc_dapm_add_route() 2694 ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control, in snd_soc_dapm_add_route() 2695 route->connected); in snd_soc_dapm_add_route() 2702 source, route->control, sink); in snd_soc_dapm_add_route() [all …]
|
D | soc-topology.c | 1073 struct snd_soc_dapm_route route; in soc_tplg_dapm_graph_elems_load() local 1108 route.source = elem->source; in soc_tplg_dapm_graph_elems_load() 1109 route.sink = elem->sink; in soc_tplg_dapm_graph_elems_load() 1110 route.connected = NULL; /* set to NULL atm for tplg users */ in soc_tplg_dapm_graph_elems_load() 1112 route.control = NULL; in soc_tplg_dapm_graph_elems_load() 1114 route.control = elem->control; in soc_tplg_dapm_graph_elems_load() 1117 snd_soc_dapm_add_routes(dapm, &route, 1); in soc_tplg_dapm_graph_elems_load()
|
/linux-4.4.14/Documentation/ia64/ |
D | IRQ-redir.txt | 21 Set the delivery mode of interrupt 41 to fixed and route the 25 Set the default route for IRQ number 41 to CPU 6 in lowest priority 33 (i.e. lowest priority mode routing is used), otherwise its route is 63 On large (multi-node) systems it is recommended to route the IRQs to
|
/linux-4.4.14/arch/powerpc/platforms/cell/ |
D | spu_priv1_mmio.c | 78 u64 route; in cpu_affinity_set() local 89 route = target << 48 | target << 32 | target << 16; in cpu_affinity_set() 90 out_be64(&spu->priv1->int_route_RW, route); in cpu_affinity_set()
|
/linux-4.4.14/drivers/media/platform/blackfin/ |
D | bfin_capture.c | 585 struct bcap_route *route; in bcap_s_input() local 594 route = &config->routes[index]; in bcap_s_input() 596 route->input, route->output, 0); in bcap_s_input() 603 if (route->ppi_control) in bcap_s_input() 604 config->ppi_control = route->ppi_control; in bcap_s_input() 800 struct bcap_route *route; in bcap_probe() local 925 route = &config->routes[0]; in bcap_probe() 927 route->input, route->output, 0); in bcap_probe() 934 if (route->ppi_control) in bcap_probe() 935 config->ppi_control = route->ppi_control; in bcap_probe()
|
/linux-4.4.14/sound/pci/au88x0/ |
D | au88x0_core.c | 1637 ADBRamLink * route, int rnum) in vortex_adb_addroutes() argument 1641 if ((rnum <= 0) || (route == NULL)) in vortex_adb_addroutes() 1646 VORTEX_ADB_RTBASE + ((route[rnum] & ADB_MASK) << 2), in vortex_adb_addroutes() 1651 ((route[rnum - 1] & ADB_MASK) << 2), route[rnum]); in vortex_adb_addroutes() 1661 route[0]); in vortex_adb_addroutes() 1674 *route); in vortex_adb_addroutes() 1679 hwwrite(vortex->mmio, VORTEX_ADB_RTBASE + (prev << 2), route[0]); in vortex_adb_addroutes() 1726 ADBRamLink route; in vortex_route() local 1728 route = ((source & ADB_MASK) << ADB_SHIFT) | (dest & ADB_MASK); in vortex_route() 1730 vortex_adb_addroutes(vortex, channel, &route, 1); in vortex_route() [all …]
|
/linux-4.4.14/drivers/s390/net/ |
D | qeth_l3_sys.c | 17 struct qeth_routing_info *route, char *buf) in qeth_l3_dev_route_show() argument 19 switch (route->type) { in qeth_l3_dev_route_show() 56 struct qeth_routing_info *route, enum qeth_prot_versions prot, in qeth_l3_dev_route_store() argument 59 enum qeth_routing_types old_route_type = route->type; in qeth_l3_dev_route_store() 64 route->type = NO_ROUTER; in qeth_l3_dev_route_store() 66 route->type = PRIMARY_CONNECTOR; in qeth_l3_dev_route_store() 68 route->type = SECONDARY_CONNECTOR; in qeth_l3_dev_route_store() 70 route->type = PRIMARY_ROUTER; in qeth_l3_dev_route_store() 72 route->type = SECONDARY_ROUTER; in qeth_l3_dev_route_store() 74 route->type = MULTICAST_ROUTER; in qeth_l3_dev_route_store() [all …]
|
/linux-4.4.14/drivers/media/usb/stk1160/ |
D | stk1160-core.c | 111 int route; in stk1160_select_input() local 117 route = SAA7115_SVIDEO3; in stk1160_select_input() 119 route = SAA7115_COMPOSITE0; in stk1160_select_input() 123 route, 0, 0); in stk1160_select_input()
|
/linux-4.4.14/arch/powerpc/platforms/512x/ |
D | mpc5121_ads_cpld.c | 41 u8 route; member 188 out_8(&cpld_regs->route, 0xfd); in mpc5121_ads_cpld_pic_init()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/core/ |
D | object.h | 18 u8 route; member 81 u8 route; member
|
/linux-4.4.14/drivers/usb/core/ |
D | usb.c | 469 dev->route = 0; in usb_alloc_dev() 480 dev->route = 0; in usb_alloc_dev() 486 dev->route = parent->route + in usb_alloc_dev() 489 dev->route = parent->route + in usb_alloc_dev()
|
/linux-4.4.14/sound/core/oss/ |
D | Makefile | 10 io.o copy.o linear.o mulaw.o route.o rate.o
|
D | mixer_oss.c | 556 int route) in snd_mixer_oss_get_volume1_sw() argument 583 if (uinfo->count > 1 && !uctl->value.integer.value[route ? 3 : 1]) in snd_mixer_oss_get_volume1_sw() 661 int route) in snd_mixer_oss_put_volume1_sw() argument 684 uctl->value.integer.value[route ? 3 : 1] = right > 0 ? 1 : 0; in snd_mixer_oss_put_volume1_sw() 685 if (route) { in snd_mixer_oss_put_volume1_sw()
|
/linux-4.4.14/drivers/s390/char/ |
D | sclp_diag.h | 71 u16 route; member
|
D | sclp_ftp.c | 56 diag->route != SCLP_DIAG_FTP_ROUTE || in sclp_ftp_rxcb() 104 sccb->evbuf.route = SCLP_DIAG_FTP_ROUTE; in sclp_ftp_et7()
|
/linux-4.4.14/drivers/media/platform/vsp1/ |
D | vsp1_entity.c | 134 if (!source->route) in vsp1_entity_link_setup() 190 entity->route = &vsp1_routes[i]; in vsp1_entity_init()
|
D | vsp1_entity.h | 60 const struct vsp1_route *route; member
|
D | vsp1_video.c | 545 if (entity->route && entity->route->reg) in vsp1_pipeline_stop() 546 vsp1_write(entity->vsp1, entity->route->reg, in vsp1_pipeline_stop() 877 if (source->route->reg == 0) in vsp1_entity_route_setup() 881 vsp1_write(source->vsp1, source->route->reg, in vsp1_entity_route_setup() 882 sink->route->inputs[source->sink_pad]); in vsp1_entity_route_setup()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvif/ |
D | notify.c | 121 if (WARN_ON(args->v0.route)) in nvif_notify() 200 args->req.route = 0; in nvif_notify_init()
|
D | client.c | 86 client->route = NVIF_IOCTL_V0_ROUTE_NVIF; in nvif_client_init()
|
D | object.c | 256 args->new.route = parent->client->route; in nvif_object_init()
|
/linux-4.4.14/net/ipv4/ |
D | xfrm4_policy.c | 83 struct rtable *rt = (struct rtable *)xdst->route; in xfrm4_fill_dst() 230 struct dst_entry *path = xdst->route; in xfrm4_update_pmtu() 239 struct dst_entry *path = xdst->route; in xfrm4_redirect()
|
D | Makefile | 5 obj-y := route.o inetpeer.o protocol.o \
|
D | netfilter.c | 189 .route = nf_ip_route,
|
D | Kconfig | 94 bool "IP: verbose route monitoring"
|
/linux-4.4.14/sound/soc/sh/rcar/ |
D | src.c | 748 u32 cr, route; in rsnd_src_set_convert_rate_gen2() local 770 route = 0x0; in rsnd_src_set_convert_rate_gen2() 772 route = 0x1; in rsnd_src_set_convert_rate_gen2() 776 route |= rsnd_io_is_play(io) ? in rsnd_src_set_convert_rate_gen2() 782 rsnd_mod_write(mod, SRC_ROUTE_MODE0, route); in rsnd_src_set_convert_rate_gen2()
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | ts3a227e.txt | 5 switches automatically to route the microphone correctly. It also
|
/linux-4.4.14/net/ipv6/ |
D | xfrm6_policy.c | 93 struct rt6_info *rt = (struct rt6_info *)xdst->route; in xfrm6_fill_dst() 231 struct dst_entry *path = xdst->route; in xfrm6_update_pmtu() 240 struct dst_entry *path = xdst->route; in xfrm6_redirect()
|
D | Makefile | 9 route.o ip6_fib.o ipv6_sockglue.o ndisc.o udp.o udplite.o \
|
D | Kconfig | 109 "ip -6 route" command. ILA is described in 151 tristate "IPv6: MIPv6 route optimization mode" 154 Support for MIPv6 route optimization mode.
|
D | netfilter.c | 201 .route = nf_ip6_route,
|
/linux-4.4.14/net/sunrpc/xprtrdma/ |
D | svc_rdma_transport.c | 630 sa = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.dst_addr; in handle_connect_req() 632 sa = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.src_addr; in handle_connect_req() 778 sa = (struct sockaddr *)&cma_xprt->sc_cm_id->route.addr.src_addr; in svc_rdma_create() 1106 route.addr.src_addr)->sin_addr.s_addr, in svc_rdma_accept() 1108 route.addr.src_addr)->sin_port), in svc_rdma_accept() 1110 route.addr.dst_addr)->sin_addr.s_addr, in svc_rdma_accept() 1112 route.addr.dst_addr)->sin_port), in svc_rdma_accept()
|
/linux-4.4.14/net/rds/ |
D | iw_rdma.c | 105 src_addr = (struct sockaddr_in *)&i_cm_id->cm_id->route.addr.src_addr; 106 dst_addr = (struct sockaddr_in *)&i_cm_id->cm_id->route.addr.dst_addr; 187 src_addr = (struct sockaddr_in *)&cm_id->route.addr.src_addr; 188 dst_addr = (struct sockaddr_in *)&cm_id->route.addr.dst_addr;
|
D | iw.c | 183 dev_addr = &ic->i_cm_id->route.addr.dev_addr; in rds_iw_conn_info_visitor()
|
D | ib.c | 296 dev_addr = &ic->i_cm_id->route.addr.dev_addr; in rds_ib_conn_info_visitor()
|
D | ib_cm.c | 532 __be64 lguid = cm_id->route.path_rec->sgid.global.interface_id; in rds_ib_cm_handle_connect() 533 __be64 fguid = cm_id->route.path_rec->dgid.global.interface_id; in rds_ib_cm_handle_connect()
|
/linux-4.4.14/Documentation/isdn/ |
D | syncPPP.FAQ | 155 A: At least you must have a route which forwards 158 A default route to the ippp-interface will work. 162 route to the ippp interface, you may take any 164 dynamic IP number and set a 'network route' for
|
D | README.HiSax | 570 /sbin/route add -host ${REMOTE_IP} isdn0 571 /sbin/route add default gw ${REMOTE_IP} 631 /sbin/route add -host ${REMOTE_IP} isdn0 632 /sbin/route add default gw ${REMOTE_IP}
|
D | README.sc | 204 ix) add a route to the IP address through the isdn0 interface 257 xi) add a route to the IP address through the ippp0 interface
|
D | README | 399 j) Setup the interface with ifconfig as usual, and set a route to it.
|
/linux-4.4.14/Documentation/sound/alsa/soc/ |
D | DPCM.txt | 7 Dynamic PCM allows an ALSA PCM device to digitally route its PCM audio to 8 various digital endpoints during the PCM stream runtime. e.g. PCM0 can route 10 drivers that expose several ALSA PCMs and can route to multiple DAIs. 46 supports 6 back end (BE) DAIs. Each FE PCM can digitally route audio data to any 47 of the BE DAIs. The FE PCM devices can also route audio to more than 1 BE DAI.
|
D | overview.txt | 17 machine specific code to re-route audio, enable amps, etc., after such an
|
/linux-4.4.14/Documentation/sysctl/ |
D | net.txt | 247 /proc/net/atalk_route lists each known network route. It lists the target 248 (network) that the route leads to, the router (may be directly connected), the 249 route flags, and the device the route is using. 273 The /proc/net/ipx_route table holds a list of IPX routes. For each route it
|
/linux-4.4.14/Documentation/timers/ |
D | hpet.txt | 17 role. Many x86 BIOS writers don't route HPET interrupts at all, which
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | Jack-Controls.txt | 16 This can be combined with UCM to allow userspace to route audio more
|
D | HD-Audio-Controls.txt | 73 An enum control to determine whether the analog-loopback route is 75 the front-channel. Also, the same route is used for the headphone
|
D | ControlNames.txt | 15 Route (route control, hardware specific)
|
D | compress_offload.txt | 215 above. It is possible to route the output of a decoder to a capture
|
/linux-4.4.14/net/xfrm/ |
D | xfrm_policy.c | 1533 if (xdst->route == NULL) { in xfrm_bundle_flo_get() 1556 if (!xdst->route) in xfrm_bundle_flo_check() 1710 xdst->route = dst; in xfrm_bundle_create() 2046 xdst->route = dst; in xfrm_create_dummy_bundle() 2212 struct dst_entry *dst, *route; in xfrm_lookup() local 2219 route = NULL; in xfrm_lookup() 2251 route = xdst->route; in xfrm_lookup() 2279 route = xdst->route; in xfrm_lookup() 2283 if (route == NULL && num_xfrms > 0) { in xfrm_lookup() 2729 route_mtu_cached = dst_mtu(xdst->route); in xfrm_init_pmtu() [all …]
|
/linux-4.4.14/drivers/tty/serial/ |
D | efm32-uart.c | 558 u32 route, clkdiv, frame; in efm32_uart_console_get_options() local 564 route = efm32_uart_read32(efm_port, UARTn_ROUTE); in efm32_uart_console_get_options() 565 if (!(route & UARTn_ROUTE_TXPEN)) in efm32_uart_console_get_options()
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | mips-gic.txt | 24 to which the GIC may not route interrupts. Valid values are 2 - 7.
|
D | arm,gic-v3.txt | 55 used to route Message Signalled Interrupts (MSI) to the CPUs.
|
/linux-4.4.14/Documentation/devicetree/bindings/pci/ |
D | xilinx-pcie.txt | 36 the four INTx interrupts in ISR and route them to this domain.
|
/linux-4.4.14/sound/soc/codecs/ |
D | ab8500-codec.c | 1953 const struct snd_soc_dapm_route *route; in ab8500_audio_setup_mics() local 1975 route = &ab8500_dapm_routes_mic1a_vamicx[amics->mic1a_micbias]; in ab8500_audio_setup_mics() 1976 status = snd_soc_dapm_add_routes(dapm, route, 1); in ab8500_audio_setup_mics() 1979 route = &ab8500_dapm_routes_mic1b_vamicx[amics->mic1b_micbias]; in ab8500_audio_setup_mics() 1980 status |= snd_soc_dapm_add_routes(dapm, route, 1); in ab8500_audio_setup_mics() 1983 route = &ab8500_dapm_routes_mic2_vamicx[amics->mic2_micbias]; in ab8500_audio_setup_mics() 1984 status |= snd_soc_dapm_add_routes(dapm, route, 1); in ab8500_audio_setup_mics()
|
/linux-4.4.14/Documentation/devicetree/bindings/i2c/ |
D | i2c-mux-gpio.txt | 4 route the I2C signals.
|
D | i2c-mux-pinctrl.txt | 4 route the I2C signals, and represents the pin multiplexing configuration
|
D | i2c-mux-reg.txt | 4 to route the I2C signals.
|
/linux-4.4.14/drivers/staging/media/davinci_vpfe/ |
D | vpfe_video.c | 821 struct vpfe_route *route; in vpfe_s_input() local 856 route = &sdinfo->routes[index]; in vpfe_s_input() 857 if (route && sdinfo->can_route) { in vpfe_s_input() 858 input = route->input; in vpfe_s_input() 859 output = route->output; in vpfe_s_input()
|
/linux-4.4.14/net/can/ |
D | Kconfig | 47 The CAN Gateway/Router is used to route (and modify) CAN frames.
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | brcm,brcmstb-gpio.txt | 39 'interrupt-parent'. Wakeup-capable GPIO controllers often route their
|
/linux-4.4.14/drivers/staging/iio/Documentation/ |
D | overview.txt | 24 route to user space for hardware triggered events. Such events include
|
/linux-4.4.14/net/netfilter/ |
D | xt_addrtype.c | 61 route_err = afinfo->route(net, (struct dst_entry **)&rt, in match_lookup_rt6()
|
D | xt_TCPMSS.c | 68 ai->route(net, (struct dst_entry **)&rt, &fl, false); in tcpmss_reverse_mtu()
|
D | nf_conntrack_h323_main.c | 754 if (!afinfo->route(net, (struct dst_entry **)&rt1, in callforward_do_filter() 756 if (!afinfo->route(net, (struct dst_entry **)&rt2, in callforward_do_filter() 778 if (!afinfo->route(net, (struct dst_entry **)&rt1, in callforward_do_filter() 780 if (!afinfo->route(net, (struct dst_entry **)&rt2, in callforward_do_filter()
|
D | nf_nat_core.c | 99 dst = ((struct xfrm_dst *)dst)->route; in nf_xfrm_me_harder()
|
/linux-4.4.14/drivers/gpu/drm/rcar-du/ |
D | rcar_du_kms.c | 819 const struct rcar_du_output_routing *route = in rcar_du_modeset_init() local 822 encoder->possible_crtcs = route->possible_crtcs; in rcar_du_modeset_init()
|
/linux-4.4.14/drivers/media/platform/davinci/ |
D | vpfe_capture.c | 1116 struct vpfe_route *route; in vpfe_s_input() local 1146 route = &sdinfo->routes[inp_index]; in vpfe_s_input() 1147 if (route && sdinfo->can_route) { in vpfe_s_input() 1148 input = route->input; in vpfe_s_input() 1149 output = route->output; in vpfe_s_input()
|
/linux-4.4.14/Documentation/devicetree/bindings/dma/ |
D | dma.txt | 36 DMA routers are transparent IP blocks used to route DMA request lines from
|
/linux-4.4.14/Documentation/pti/ |
D | pti_intel_mid.txt | 19 pti.c and route any data stream from one /dev/tty node
|
/linux-4.4.14/net/ipv6/netfilter/ |
D | Kconfig | 38 tristate "IPv6 nf_tables route chain support" 40 This option enables the "route" chain for IPv6 in nf_tables. This
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/ |
D | hub.fuc | 83 // setup i0 handler, and route all interrupts to it 90 // route HUB_CHSW_PULSE to fuc interrupt 8 94 // not sure what these are, route them because NVIDIA does, and
|
D | gpc.fuc | 137 // setup i0 handler, and route all interrupts to it
|
/linux-4.4.14/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 1069 To reach the rest of the world, you should set a default route to the 1073 UML# route add default gw host ip 1081 UML# route add default gw 192.168.0.4 1086 This page used to recommend setting a network route to your local net. 1094 route and adding the default route does. 1098 ethernet, it's probably because of a network route that's 1099 automatically set up. If you run 'route -n' and see a route that 1111 with a mask that's not 255.255.255.255, then replace it with a route 1116 route del -net 192.168.0.0 dev eth0 netmask 255.255.255.0 1124 route add -host 192.168.0.4 dev eth0 [all …]
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | README.quirks | 56 the GNT is issued, this arbiter must lock in its decision and now route
|
/linux-4.4.14/drivers/vme/ |
D | vme.c | 703 struct vme_resource *vme_dma_request(struct vme_dev *vdev, u32 route) in vme_dma_request() argument 732 if (((dma_ctrlr->route_attr & route) == route) && in vme_dma_request()
|
/linux-4.4.14/Documentation/rapidio/ |
D | rapidio.txt | 265 it, a fake device ID will be assigned to configure a route to that switch. 267 to configure a route through the entire chain and switches are differentiated by 276 port of that switch. For each active link, a route to a default device ID
|
D | sysfs.txt | 77 destid - device destination ID that defines a route to the switch
|
/linux-4.4.14/Documentation/x86/i386/ |
D | IO-APIC.txt | 2 which is an enhanced interrupt controller. It enables us to route
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | qcom,pmic-mpp.txt | 145 - qcom,amux-route:
|
/linux-4.4.14/sound/pci/emu10k1/ |
D | emumixer.c | 1201 static void update_emu10k1_fxrt(struct snd_emu10k1 *emu, int voice, unsigned char *route) in update_emu10k1_fxrt() argument 1205 snd_emu10k1_compose_audigy_fxrt1(route)); in update_emu10k1_fxrt() 1207 snd_emu10k1_compose_audigy_fxrt2(route)); in update_emu10k1_fxrt() 1210 snd_emu10k1_compose_send_routing(route)); in update_emu10k1_fxrt()
|
/linux-4.4.14/arch/blackfin/mach-bf548/ |
D | Kconfig | 42 async address or GPIO port F and G. Select y to route it
|
/linux-4.4.14/include/linux/ |
D | netfilter.h | 281 int (*route)(struct net *net, struct dst_entry **dst, member
|
D | usb.h | 548 u32 route; member
|
/linux-4.4.14/net/ipv4/netfilter/ |
D | Kconfig | 49 tristate "IPv4 nf_tables route chain support" 51 This option enables the "route" chain for IPv4 in nf_tables. This
|
/linux-4.4.14/drivers/media/platform/am437x/ |
D | am437x-vpfe.c | 1755 struct vpfe_route *route; in vpfe_set_input() local 1777 route = &sdinfo->routes[inp_index]; in vpfe_set_input() 1778 if (route && sdinfo->can_route) { in vpfe_set_input() 1779 input = route->input; in vpfe_set_input() 1780 output = route->output; in vpfe_set_input()
|
/linux-4.4.14/Documentation/device-mapper/ |
D | switch.txt | 62 lower tier device to route the I/O. By using a bitmap we are able to
|
D | thin-provisioning.txt | 91 wrong if it does not route I/O to exactly the same on-disk location as
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | mpic.txt | 70 If present the MPIC will be assumed to only be able to route
|
/linux-4.4.14/Documentation/cris/ |
D | README | 183 -rwxr-xr-x 1 342 100 9488 Jan 01 00:00 route
|
/linux-4.4.14/Documentation/ |
D | vme_api.txt | 94 struct vme_resource *vme_dma_request(struct vme_dev *dev, u32 route); 104 potential direction of any transfers to be provided in the route attributes.
|
D | SubmittingPatches | 121 from upstream, so include anything that could help route your change
|
D | devices.txt | 843 0 = /dev/route Routing, device updates, kernel to user
|
D | kernel-parameters.txt | 3408 Set number of hash buckets for route cache
|
/linux-4.4.14/drivers/staging/lustre/lnet/klnds/o2iblnd/ |
D | o2iblnd.c | 600 if (cmid->route.path_rec == NULL) in kiblnd_setup_mtu_locked() 606 cmid->route.path_rec->mtu = mtu; in kiblnd_setup_mtu_locked() 1037 if (conn->ibc_cmid->route.path_rec == NULL) in kiblnd_ctl() 1041 ib_mtu_enum_to_int(conn->ibc_cmid->route.path_rec->mtu); in kiblnd_ctl()
|
D | o2iblnd_cb.c | 2169 peer_addr = (struct sockaddr_in *)&(cmid->route.addr.dst_addr); in kiblnd_passive_connect()
|
/linux-4.4.14/scripts/ |
D | get_maintainer.pl | 2245 my $route = "(?:\@$domain(?:,\@$rfc822_lwsp*$domain)*:$rfc822_lwsp*)"; 2246 my $route_addr = "\\<$rfc822_lwsp*$route?$addr_spec\\>$rfc822_lwsp*";
|
/linux-4.4.14/drivers/staging/media/bcm2048/ |
D | radio-bcm2048.c | 821 static int bcm2048_set_audio_route(struct bcm2048_device *bdev, u8 route) in bcm2048_set_audio_route() argument 827 route &= (BCM2048_AUDIO_ROUTE_DAC | BCM2048_AUDIO_ROUTE_I2S); in bcm2048_set_audio_route() 830 bdev->cache_fm_audio_ctrl0 |= route; in bcm2048_set_audio_route()
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | mad.c | 3792 smp->route.dr.dr_slid == OPA_LID_PERMISSIVE && in is_local_mad() 3793 smp->route.dr.dr_dlid == OPA_LID_PERMISSIVE); in is_local_mad() 3867 smp->route.dr.dr_slid, smp->route.dr.return_path, in process_subn_opa() 3886 smp->mkey, smp->route.dr.dr_slid, in process_subn_opa() 3887 smp->route.dr.return_path, in process_subn_opa()
|
/linux-4.4.14/Documentation/powerpc/ |
D | transactional_memory.txt | 196 handler route. Furthermore, the transactional 2nd register state will be
|
/linux-4.4.14/Documentation/filesystems/ |
D | exofs.txt | 164 en-route (i.e. create, writepage, readpage) then the page
|
D | proc.txt | 1114 route Kernel routing table
|
/linux-4.4.14/drivers/infiniband/ulp/iser/ |
D | iscsi_iser.c | 781 &iser_conn->ib_conn.cma_id->route.addr.dst_addr, in iscsi_iser_get_ep_param()
|
/linux-4.4.14/include/net/ |
D | xfrm.h | 947 struct dst_entry *route; member 967 dst_release(xdst->route); in xfrm_dst_destroy()
|
/linux-4.4.14/Documentation/RCU/ |
D | listRCU.txt | 18 Therefore, once the route has been computed, there is no need to hold
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/ |
D | kernel.fuc | 525 // route all interrupts except user0/1 and pause to fuc
|
/linux-4.4.14/Documentation/x86/x86_64/ |
D | boot-options.txt | 167 acpi=noirq Don't route interrupts
|
/linux-4.4.14/include/uapi/linux/ |
D | Kbuild | 357 header-y += route.h
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/sec/fuc/ |
D | g98.fuc0s | 109 // set interrupt dispatch - route timer, fifo, ctxswitch to i0, others to host
|
/linux-4.4.14/sound/pci/ |
D | es1968.c | 1108 int mode, int route) in init_capture_apu() argument 1146 apu_set_register(chip, apu, 11, route); in init_capture_apu()
|
/linux-4.4.14/Documentation/gpio/ |
D | gpio-legacy.txt | 281 Any programming of pin multiplexing hardware that is needed to route the 490 to route a given GPIO to any one of several pins. (Yes, those examples all
|
/linux-4.4.14/drivers/tty/ |
D | Kconfig | 342 route trace data coming from a tty port (say UART for example) to
|
/linux-4.4.14/firmware/keyspan_pda/ |
D | keyspan_pda.S | 257 ;; set PORTCCFG.[01] to route TxD0,RxD0 to serial port
|
D | xircom_pgs.S | 281 ;; set PORTCCFG.[01] to route TxD0,RxD0 to serial port
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/ce/fuc/ |
D | com.fuc | 140 // setup i0 handler and route fifo and ctxswitch to it
|
/linux-4.4.14/Documentation/PCI/ |
D | MSI-HOWTO.txt | 541 Some PCI bridges are not able to route MSIs between busses properly.
|
/linux-4.4.14/net/sched/ |
D | Kconfig | 382 according to the route table entry they matched.
|
/linux-4.4.14/arch/powerpc/ |
D | Kconfig | 465 multiple CPUs. Saying N here will route all IRQs to the first
|
/linux-4.4.14/drivers/usb/host/ |
D | xhci-mem.c | 1108 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1) | udev->route); in xhci_setup_addressable_virt_dev()
|
/linux-4.4.14/drivers/infiniband/ulp/isert/ |
D | ib_isert.c | 3150 struct rdma_route *cm_route = &cm_id->route; in isert_set_conn_info()
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | README | 553 by intermediate systems in the route). Note that signing
|