/Linux-v5.10/net/unix/ |
D | af_unix.c | 378 static int unix_dgram_peer_wake_connect(struct sock *sk, struct sock *other) in unix_dgram_peer_wake_connect() argument 384 u_other = unix_sk(other); in unix_dgram_peer_wake_connect() 389 u->peer_wake.private = other; in unix_dgram_peer_wake_connect() 400 struct sock *other) in unix_dgram_peer_wake_disconnect() argument 405 u_other = unix_sk(other); in unix_dgram_peer_wake_disconnect() 408 if (u->peer_wake.private == other) { in unix_dgram_peer_wake_disconnect() 417 struct sock *other) in unix_dgram_peer_wake_disconnect_wakeup() argument 419 unix_dgram_peer_wake_disconnect(sk, other); in unix_dgram_peer_wake_disconnect_wakeup() 430 static int unix_dgram_peer_wake_me(struct sock *sk, struct sock *other) in unix_dgram_peer_wake_me() argument 434 connected = unix_dgram_peer_wake_connect(sk, other); in unix_dgram_peer_wake_me() [all …]
|
/Linux-v5.10/drivers/pinctrl/aspeed/ |
D | pinmux-aspeed.h | 676 #define PIN_DECL_1(pin, other, sig) \ argument 677 SIG_EXPR_LIST_DECL_SESG(pin, other, other); \ 679 SIG_EXPR_LIST_PTR(pin, other)) 693 #define SSSF_PIN_DECL(pin, other, sig, ...) \ argument 695 SIG_EXPR_LIST_DECL_SESG(pin, other, other); \ 697 SIG_EXPR_LIST_PTR(pin, other)); \ 718 #define PIN_DECL_2(pin, other, high, low) \ argument 719 SIG_EXPR_LIST_DECL_SESG(pin, other, other); \ 723 SIG_EXPR_LIST_PTR(pin, other)) 725 #define PIN_DECL_3(pin, other, high, medium, low) \ argument [all …]
|
/Linux-v5.10/tools/lib/perf/ |
D | cpumap.c | 299 struct perf_cpu_map *other) in perf_cpu_map__merge() argument 306 if (!orig && !other) in perf_cpu_map__merge() 309 perf_cpu_map__get(other); in perf_cpu_map__merge() 310 return other; in perf_cpu_map__merge() 312 if (!other) in perf_cpu_map__merge() 314 if (orig->nr == other->nr && in perf_cpu_map__merge() 315 !memcmp(orig->map, other->map, orig->nr * sizeof(int))) in perf_cpu_map__merge() 318 tmp_len = orig->nr + other->nr; in perf_cpu_map__merge() 325 while (i < orig->nr && j < other->nr) { in perf_cpu_map__merge() 326 if (orig->map[i] <= other->map[j]) { in perf_cpu_map__merge() [all …]
|
/Linux-v5.10/tools/perf/tests/ |
D | thread-maps-share.c | 18 struct thread *other, *other_leader; in test__thread_maps_share() local 40 other = machine__findnew_thread(machine, 4, 5); in test__thread_maps_share() 43 leader && t1 && t2 && t3 && other); in test__thread_maps_share() 70 machine__remove_thread(machine, other); in test__thread_maps_share() 73 other_maps = other->maps; in test__thread_maps_share() 94 thread__put(other); in test__thread_maps_share()
|
D | attr.py | 105 def equal(self, other): argument 107 log.debug(" [%s] %s %s" % (t, self[t], other[t])); 108 if t not in self or t not in other: 110 if not data_equal(self[t], other[t]): 119 def diff(self, other): argument 121 if t not in self or t not in other: 123 if not data_equal(self[t], other[t]): 124 log.warning("expected %s=%s, got %s" % (t, self[t], other[t]))
|
/Linux-v5.10/tools/testing/selftests/openat2/ |
D | helpers.c | 73 char *fdpath, *dfdpath, *other; in fdequal() local 80 E_asprintf(&other, "%s", dfdpath); in fdequal() 82 E_asprintf(&other, "%s", path); in fdequal() 84 E_asprintf(&other, "%s/%s", dfdpath, path); in fdequal() 86 cmp = !strcmp(fdpath, other); in fdequal() 90 free(other); in fdequal()
|
/Linux-v5.10/Documentation/ABI/testing/ |
D | debugfs-hisi-sec | 7 Only available for PF, and take no other effect on SEC. 37 Only available for PF, and take no other effect on SEC. 44 Available for both PF and VF, and take no other effect on SEC. 50 Available for both PF and VF, and take no other effect on SEC. 56 Available for both PF and VF, and take no other effect on SEC. 62 Available for both PF and VF, and take no other effect on SEC. 68 Available for both PF and VF, and take no other effect on SEC. 75 Available for both PF and VF, and take no other effect on SEC. 81 Available for both PF and VF, and take no other effect on SEC. 87 Available for both PF and VF, and take no other effect on SEC. [all …]
|
D | debugfs-hisi-hpre | 64 Available for both PF and VF, and take no other effect on HPRE. 70 Available for both PF and VF, and take no other effect on HPRE. 76 Available for both PF and VF, and take no other effect on HPRE. 82 Available for both PF and VF, and take no other effect on HPRE. 88 Available for both PF and VF, and take no other effect on HPRE. 95 Available for both PF and VF, and take no other effect on HPRE. 101 Available for both PF and VF, and take no other effect on HPRE. 107 Available for both PF and VF, and take no other effect on HPRE. 114 Available for both PF and VF, and take no other effect on HPRE. 120 Available for both PF and VF, and take no other effect on HPRE. [all …]
|
D | debugfs-hisi-zip | 57 Available for both PF and VF, and take no other effect on ZIP. 63 Available for both PF and VF, and take no other effect on ZIP. 69 Available for both PF and VF, and take no other effect on ZIP. 75 Available for both PF and VF, and take no other effect on ZIP. 81 Available for both PF and VF, and take no other effect on ZIP. 88 Available for both PF and VF, and take no other effect on ZIP. 94 Available for both PF and VF, and take no other effect on ZIP. 100 Available for both PF and VF, and take no other effect on ZIP. 107 Available for both PF and VF, and take no other effect on ZIP. 114 Available for both PF and VF, and take no other effect on ZIP.
|
/Linux-v5.10/drivers/leds/ |
D | leds-acer-a500.c | 20 struct a500_led *other; member 55 if (led->other->cdev.brightness) in a500_ec_led_brightness_set() 59 control_seq[1] = led->other->enable_seq[0]; in a500_ec_led_brightness_set() 100 white_led->other = orange_led; in a500_ec_leds_probe() 101 orange_led->other = white_led; in a500_ec_leds_probe()
|
/Linux-v5.10/drivers/gpu/drm/radeon/ |
D | radeon_sync.c | 65 struct radeon_fence *other; in radeon_sync_fence() local 70 other = sync->sync_to[fence->ring]; in radeon_sync_fence() 71 sync->sync_to[fence->ring] = radeon_fence_later(fence, other); in radeon_sync_fence() 74 other = sync->last_vm_update; in radeon_sync_fence() 75 sync->last_vm_update = radeon_fence_later(fence, other); in radeon_sync_fence()
|
/Linux-v5.10/drivers/net/ethernet/sfc/ |
D | efx.c | 205 struct efx_nic *other, *next; in efx_associate() local 213 list_for_each_entry_safe(other, next, &efx_unassociated_list, in efx_associate() 215 if (efx_same_controller(efx, other)) { in efx_associate() 216 list_del(&other->node); in efx_associate() 217 netif_dbg(other, probe, other->net_dev, in efx_associate() 221 list_add_tail(&other->node, in efx_associate() 223 other->primary = efx; in efx_associate() 229 list_for_each_entry(other, &efx_primary_list, node) { in efx_associate() 230 if (efx_same_controller(efx, other)) { in efx_associate() 233 pci_name(other->pci_dev), in efx_associate() [all …]
|
/Linux-v5.10/net/vmw_vsock/ |
D | vsock_addr.c | 51 const struct sockaddr_vm *other) in vsock_addr_equals_addr() argument 53 return addr->svm_cid == other->svm_cid && in vsock_addr_equals_addr() 54 addr->svm_port == other->svm_port; in vsock_addr_equals_addr()
|
/Linux-v5.10/tools/memory-model/litmus-tests/ |
D | MP+polocks.litmus | 8 * In other words, when holding a given lock (or indeed after releasing a 9 * given lock), a CPU is not only guaranteed to see the accesses that other 11 * to see all prior accesses by those other CPUs.
|
D | MP+porevlocks.litmus | 8 * In other words, when holding a given lock (or indeed after releasing a 9 * given lock), a CPU is not only guaranteed to see the accesses that other 11 * see all prior accesses by those other CPUs.
|
/Linux-v5.10/sound/soc/samsung/ |
D | i2s.c | 163 struct i2s_dai *other = get_other_dai(i2s); in other_tx_active() local 165 return tx_active(other); in other_tx_active() 190 struct i2s_dai *other = get_other_dai(i2s); in other_rx_active() local 192 return rx_active(other); in other_rx_active() 502 struct i2s_dai *other = get_other_dai(i2s); in i2s_set_sysclk() local 527 if ((rfs && other && other->rfs && (other->rfs != rfs)) || in i2s_set_sysclk() 821 struct i2s_dai *other = get_other_dai(i2s); in i2s_startup() local 830 if (is_manager(other)) in i2s_startup() 848 struct i2s_dai *other = get_other_dai(i2s); in i2s_shutdown() local 856 if (is_opened(other)) in i2s_shutdown() [all …]
|
/Linux-v5.10/arch/arm/boot/dts/ |
D | ste-href-tvk1281618-r2.dtsi | 22 * These interrupts cannot be used: the other component 25 * shared with other peripherals. The should be defined for 40 * These interrupts cannot be used: the other component 43 * shared with other peripherals. The should be defined for
|
/Linux-v5.10/Documentation/admin-guide/namespaces/ |
D | compatibility-list.rst | 10 in different other namespaces (the rows): 28 other task living in a different namespace via a shared filesystem 31 other object in another namespace. 34 should not be equal from the VFS point of view. In other
|
/Linux-v5.10/drivers/char/ipmi/ |
D | ipmi_si_hardcode.c | 54 module_param_hw_array(regspacings, int, other, &num_regspacings, 0); 60 module_param_hw_array(regsizes, int, other, &num_regsizes, 0); 66 module_param_hw_array(regshifts, int, other, &num_regshifts, 0); 71 module_param_hw_array(slave_addrs, int, other, &num_slave_addrs, 0);
|
/Linux-v5.10/scripts/ |
D | config | 30 Enable option directly after other option 32 Disable option directly after other option 34 Turn option into module directly after other option
|
/Linux-v5.10/Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ |
D | dpio-driver.rst | 16 and other accelerators. A DPIO also provides hardware buffer 33 A. allow other drivers, such as the Ethernet driver, to enqueue and dequeue 42 DPIO service-- provides APIs to other Linux drivers for services 46 fsl-mc other 62 The diagram below shows how the DPIO driver components fit with the other 151 The qbman-portal APIs are not public to other drivers, and are
|
/Linux-v5.10/Documentation/driver-api/md/ |
D | md-cluster.rst | 53 of sectors that are being re-synced by that node. No other 60 Each node has to communicate with other nodes when starting or ending 76 other nodes to acknowledge the message before proceeding. Only one 87 informs other nodes that the metadata has 94 informs other nodes that a resync is initiated or 104 informs other nodes that a device is being added to 165 received or other events that happened while waiting for the 231 other nodes from writing anywhere on the array. 234 environment when a resync is performed, it needs to tell other nodes 241 other nodes and other nodes remove the corresponding entry from the [all …]
|
/Linux-v5.10/Documentation/admin-guide/ |
D | kernel-per-CPU-kthreads.rst | 50 2. Do all eHCA-Infiniband-related work on other CPUs, including 65 some other CPU. 78 occur on some other CPU and furthermore initiate all 79 Bluetooth activity on some other CPU. 103 do not offline any other CPUs, because doing so could force the 111 1. Force networking interrupts onto other CPUs. 112 2. Initiate any network I/O on other CPUs. 123 1. Force block-device interrupts onto some other CPU. 124 2. Initiate any block I/O on other CPUs. 135 1. Force block-device interrupts onto some other CPU. [all …]
|
/Linux-v5.10/drivers/edac/ |
D | thunderx_edac.c | 585 char *other; in thunderx_lmc_threaded_isr() local 588 other = kmalloc(LMC_OTHER_SIZE, GFP_KERNEL); in thunderx_lmc_threaded_isr() 590 if (!msg || !other) in thunderx_lmc_threaded_isr() 618 decode_register(other, LMC_OTHER_SIZE, lmc_errors, in thunderx_lmc_threaded_isr() 627 0, -1, -1, -1, msg, other); in thunderx_lmc_threaded_isr() 632 0, -1, -1, -1, msg, other); in thunderx_lmc_threaded_isr() 641 kfree(other); in thunderx_lmc_threaded_isr() 1116 char *other; in thunderx_ocx_com_threaded_isr() local 1119 other = kmalloc(OCX_OTHER_SIZE, GFP_KERNEL); in thunderx_ocx_com_threaded_isr() 1121 if (!msg || !other) in thunderx_ocx_com_threaded_isr() [all …]
|
/Linux-v5.10/tools/memory-model/scripts/ |
D | README | 36 provided instead for use by other scripts. 49 provided instead for use by other scripts. 60 provided instead for use by other scripts. 66 provided instead for use by other scripts.
|