/Linux-v4.19/net/unix/ |
D | af_unix.c | 375 static int unix_dgram_peer_wake_connect(struct sock *sk, struct sock *other) in unix_dgram_peer_wake_connect() argument 381 u_other = unix_sk(other); in unix_dgram_peer_wake_connect() 386 u->peer_wake.private = other; in unix_dgram_peer_wake_connect() 397 struct sock *other) in unix_dgram_peer_wake_disconnect() argument 402 u_other = unix_sk(other); in unix_dgram_peer_wake_disconnect() 405 if (u->peer_wake.private == other) { in unix_dgram_peer_wake_disconnect() 414 struct sock *other) in unix_dgram_peer_wake_disconnect_wakeup() argument 416 unix_dgram_peer_wake_disconnect(sk, other); in unix_dgram_peer_wake_disconnect_wakeup() 427 static int unix_dgram_peer_wake_me(struct sock *sk, struct sock *other) in unix_dgram_peer_wake_me() argument 431 connected = unix_dgram_peer_wake_connect(sk, other); in unix_dgram_peer_wake_me() [all …]
|
/Linux-v4.19/tools/perf/tests/ |
D | expr.c | 20 const char **other; in test__expr() local 53 expr__find_other("FOO + BAR + BAZ + BOZO", "FOO", &other, &num_other) == 0); in test__expr() 55 TEST_ASSERT_VAL("find other", !strcmp(other[0], "BAR")); in test__expr() 56 TEST_ASSERT_VAL("find other", !strcmp(other[1], "BAZ")); in test__expr() 57 TEST_ASSERT_VAL("find other", !strcmp(other[2], "BOZO")); in test__expr() 58 TEST_ASSERT_VAL("find other", other[3] == NULL); in test__expr() 59 free((void *)other); in test__expr()
|
D | thread-mg-share.c | 19 struct thread *other, *other_leader; in test__thread_mg_share() local 41 other = machine__findnew_thread(machine, 4, 5); in test__thread_mg_share() 44 leader && t1 && t2 && t3 && other); in test__thread_mg_share() 71 machine__remove_thread(machine, other); in test__thread_mg_share() 74 other_mg = other->mg; in test__thread_mg_share() 95 thread__put(other); in test__thread_mg_share()
|
D | attr.py | 100 def equal(self, other): argument 102 log.debug(" [%s] %s %s" % (t, self[t], other[t])); 103 if not self.has_key(t) or not other.has_key(t): 105 if not data_equal(self[t], other[t]): 114 def diff(self, other): argument 116 if not self.has_key(t) or not other.has_key(t): 118 if not data_equal(self[t], other[t]): 119 log.warning("expected %s=%s, got %s" % (t, self[t], other[t]))
|
/Linux-v4.19/tools/perf/util/ |
D | expr.y | 184 static bool already_seen(const char *val, const char *one, const char **other, 192 if (!strcasecmp(other[i], val)) 197 int expr__find_other(const char *p, const char *one, const char ***other, 204 *other = malloc((EXPR_MAX_OTHER + 1) * sizeof(char *)); 205 if (!*other) 216 if (tok == ID && !already_seen(val.id, one, *other, num_other)) { 221 (*other)[num_other] = strdup(val.id); 222 if (!(*other)[num_other]) 227 (*other)[num_other] = NULL; 231 free(*other); [all …]
|
/Linux-v4.19/drivers/pinctrl/aspeed/ |
D | pinctrl-aspeed.h | 466 #define MS_PIN_DECL(pin, other, high, low) \ argument 467 SIG_EXPR_LIST_DECL_SINGLE(other, other); \ 471 SIG_EXPR_LIST_PTR(other)) 492 #define SS_PIN_DECL(pin, other, sig) \ argument 493 SIG_EXPR_LIST_DECL_SINGLE(other, other); \ 494 MS_PIN_DECL_(pin, SIG_EXPR_LIST_PTR(sig), SIG_EXPR_LIST_PTR(other)) 508 #define SSSF_PIN_DECL(pin, other, sig, ...) \ argument 510 SIG_EXPR_LIST_DECL_SINGLE(other, other); \ 511 MS_PIN_DECL_(pin, SIG_EXPR_LIST_PTR(sig), SIG_EXPR_LIST_PTR(other)); \
|
/Linux-v4.19/sound/soc/samsung/ |
D | i2s.c | 147 struct i2s_dai *other = get_other_dai(i2s); in other_tx_active() local 149 return tx_active(other); in other_tx_active() 174 struct i2s_dai *other = get_other_dai(i2s); in other_rx_active() local 176 return rx_active(other); in other_rx_active() 475 struct i2s_dai *other = get_other_dai(i2s); in i2s_set_sysclk() local 500 if ((rfs && other && other->rfs && (other->rfs != rfs)) || in i2s_set_sysclk() 563 if (other) { in i2s_set_sysclk() 564 other->op_clk = i2s->op_clk; in i2s_set_sysclk() 565 other->rclk_srcrate = i2s->rclk_srcrate; in i2s_set_sysclk() 575 i2s->op_clk = other->op_clk; in i2s_set_sysclk() [all …]
|
/Linux-v4.19/drivers/gpu/drm/radeon/ |
D | radeon_sync.c | 66 struct radeon_fence *other; in radeon_sync_fence() local 71 other = sync->sync_to[fence->ring]; in radeon_sync_fence() 72 sync->sync_to[fence->ring] = radeon_fence_later(fence, other); in radeon_sync_fence() 75 other = sync->last_vm_update; in radeon_sync_fence() 76 sync->last_vm_update = radeon_fence_later(fence, other); in radeon_sync_fence()
|
/Linux-v4.19/net/vmw_vsock/ |
D | vsock_addr.c | 59 const struct sockaddr_vm *other) in vsock_addr_equals_addr() argument 61 return addr->svm_cid == other->svm_cid && in vsock_addr_equals_addr() 62 addr->svm_port == other->svm_port; in vsock_addr_equals_addr()
|
/Linux-v4.19/drivers/char/ipmi/ |
D | ipmi_si_hardcode.c | 52 module_param_hw_array(regspacings, int, other, &num_regspacings, 0); 58 module_param_hw_array(regsizes, int, other, &num_regsizes, 0); 64 module_param_hw_array(regshifts, int, other, &num_regshifts, 0); 69 module_param_hw_array(slave_addrs, int, other, &num_slave_addrs, 0);
|
/Linux-v4.19/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.
|
D | README | 23 between each pairs of reads. In other words, is smp_mb() 31 between each pairs of reads. In other words, is anything at all 53 of two variables then writes to the other? 58 writes to the other? 70 spin_is_locked() calls in the other process. 75 in the other process. 94 process writes data and then a flag, and the other process reads 116 atomic. (Neither is it other multicopy atomic.) This litmus test
|
/Linux-v4.19/Documentation/namespaces/ |
D | compatibility-list.txt | 8 in different other namespaces (the rows): 23 other task living in a different namespace via a shared filesystem 26 other object in another namespace. 29 should not be equal from the VFS point of view. In other
|
/Linux-v4.19/scripts/ |
D | config | 27 Enable option directly after other option 29 Disable option directly after other option 31 Turn option into module directly after other option
|
/Linux-v4.19/Documentation/networking/dpaa2/ |
D | dpio-driver.rst | 16 and other accelerators. A DPIO also provides hardware buffer 30 A) allow other drivers, such as the Ethernet driver, to enqueue and dequeue 39 DPIO service-- provides APIs to other Linux drivers for services 44 fsl-mc other 60 The diagram below shows how the DPIO driver components fit with the other 149 The qbman-portal APIs are not public to other drivers, and are
|
/Linux-v4.19/Documentation/md/ |
D | md-cluster.txt | 46 of sectors that are being re-synced by that node. No other 52 Each node has to communicate with other nodes when starting or ending 66 other nodes to acknowledge the message before proceeding. Only one 73 3.1.1 METADATA_UPDATED: informs other nodes that the metadata has 78 3.1.2 RESYNCING: informs other nodes that a resync is initiated or 85 3.1.3 NEWDISK: informs other nodes that a device is being added to 131 received or other events that happened while waiting for the 184 other nodes from writing anywhere on the array. 187 environment when a resync is performed, it needs to tell other nodes 194 other nodes and other nodes remove the corresponding entry from the [all …]
|
/Linux-v4.19/Documentation/ |
D | kernel-per-CPU-kthreads.txt | 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-v4.19/include/uapi/linux/ |
D | icmpv6.h | 48 other:1, member 53 other:1, member 77 #define icmp6_addrconf_other icmp6_dataun.u_nd_ra.other
|
/Linux-v4.19/Documentation/filesystems/cifs/ |
D | cifs.txt | 10 server support for Linux and many other operating systems), Apple 20 signing, large files, Unicode support and other internationalization 23 the combination can provide a reasonable alternative to other network and 31 It must be installed in the directory with the other mount helpers.
|
/Linux-v4.19/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-v4.19/Documentation/kbuild/ |
D | Kconfig.recursion-issue-02 | 10 # of the recursive limitation is that drivers cannot negate features from other 14 # core requirement, and one uses "select" while the other uses "depends on" to 21 # negated by other drivers. 30 # other bells in the system cannot negate. The reason for this issue is 32 # with CORE, one uses "depends on" while the other uses "select". Another
|
/Linux-v4.19/Documentation/driver-api/gpio/ |
D | drivers-on-gpio.rst | 7 drivers can quite easily interconnect with other kernel subsystems using 50 appear as any other I2C bus to the system and makes it possible to connect 51 drivers for the I2C devices on the bus like any other I2C bus driver. 55 GPIO hammering (bitbang). It will appear as any other SPI bus on the system 57 any other SPI bus driver. For example any MMC/SD card can then be connected 62 the bus like any other W1 device. 81 any other NAND driving hardware. 85 any other serio bus to the system and makes it possible to connect drivers 86 for e.g. keyboards and other PS/2 protocol based devices.
|
/Linux-v4.19/Documentation/devicetree/bindings/i2c/ |
D | i2c-arb-gpio-challenge.txt | 24 - OUR_CLAIM: output from us signaling to other hosts that we want the bus 28 sure that the other side doesn't want it also. A detailed explanation is best 33 2. Waits a little bit for the other sides to notice (slew time, say 10 45 - their-claim-gpios: The GPIOs that the other sides use to claim the bus. 46 Note that some implementations may only support a single other master.
|
/Linux-v4.19/arch/arm/mach-sti/ |
D | Kconfig | 34 and other digital audio/video applications using Flattned Device 43 and other digital audio/video applications using Flattened Device 53 and other digital audio/video applications using Flattened Device
|