Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 1944) sorted by relevance

12345678910>>...78

/Linux-v5.4/net/unix/
Daf_unix.c374 static int unix_dgram_peer_wake_connect(struct sock *sk, struct sock *other) in unix_dgram_peer_wake_connect() argument
380 u_other = unix_sk(other); in unix_dgram_peer_wake_connect()
385 u->peer_wake.private = other; in unix_dgram_peer_wake_connect()
396 struct sock *other) in unix_dgram_peer_wake_disconnect() argument
401 u_other = unix_sk(other); in unix_dgram_peer_wake_disconnect()
404 if (u->peer_wake.private == other) { in unix_dgram_peer_wake_disconnect()
413 struct sock *other) in unix_dgram_peer_wake_disconnect_wakeup() argument
415 unix_dgram_peer_wake_disconnect(sk, other); in unix_dgram_peer_wake_disconnect_wakeup()
426 static int unix_dgram_peer_wake_me(struct sock *sk, struct sock *other) in unix_dgram_peer_wake_me() argument
430 connected = unix_dgram_peer_wake_connect(sk, other); in unix_dgram_peer_wake_me()
[all …]
/Linux-v5.4/tools/perf/tests/
Dexpr.c22 const char **other; in test__expr() local
55 expr__find_other("FOO + BAR + BAZ + BOZO", "FOO", &other, &num_other) == 0); in test__expr()
57 TEST_ASSERT_VAL("find other", !strcmp(other[0], "BAR")); in test__expr()
58 TEST_ASSERT_VAL("find other", !strcmp(other[1], "BAZ")); in test__expr()
59 TEST_ASSERT_VAL("find other", !strcmp(other[2], "BOZO")); in test__expr()
60 TEST_ASSERT_VAL("find other", other[3] == NULL); in test__expr()
63 zfree(&other[i]); in test__expr()
64 free((void *)other); in test__expr()
Dthread-mg-share.c18 struct thread *other, *other_leader; in test__thread_mg_share() local
40 other = machine__findnew_thread(machine, 4, 5); in test__thread_mg_share()
43 leader && t1 && t2 && t3 && other); in test__thread_mg_share()
70 machine__remove_thread(machine, other); in test__thread_mg_share()
73 other_mg = other->mg; in test__thread_mg_share()
94 thread__put(other); in test__thread_mg_share()
Dattr.py105 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.4/drivers/pinctrl/aspeed/
Dpinmux-aspeed.h675 #define PIN_DECL_1(pin, other, sig) \ argument
676 SIG_EXPR_LIST_DECL_SESG(pin, other, other); \
678 SIG_EXPR_LIST_PTR(pin, other))
692 #define SSSF_PIN_DECL(pin, other, sig, ...) \ argument
694 SIG_EXPR_LIST_DECL_SESG(pin, other, other); \
696 SIG_EXPR_LIST_PTR(pin, other)); \
717 #define PIN_DECL_2(pin, other, high, low) \ argument
718 SIG_EXPR_LIST_DECL_SESG(pin, other, other); \
722 SIG_EXPR_LIST_PTR(pin, other))
724 #define PIN_DECL_3(pin, other, high, medium, low) \ argument
[all …]
/Linux-v5.4/tools/perf/util/
Dexpr.y186 static bool already_seen(const char *val, const char *one, const char **other,
194 if (!strcasecmp(other[i], val))
199 int expr__find_other(const char *p, const char *one, const char ***other,
206 *other = malloc((EXPR_MAX_OTHER + 1) * sizeof(char *));
207 if (!*other)
218 if (tok == ID && !already_seen(val.id, one, *other, num_other)) {
223 (*other)[num_other] = strdup(val.id);
224 if (!(*other)[num_other])
229 (*other)[num_other] = NULL;
233 free(*other);
[all …]
/Linux-v5.4/drivers/gpu/drm/radeon/
Dradeon_sync.c65 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.4/net/vmw_vsock/
Dvsock_addr.c51 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.4/tools/memory-model/litmus-tests/
DMP+polocks.litmus8 * 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.
DMP+porevlocks.litmus8 * 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.4/drivers/char/ipmi/
Dipmi_si_hardcode.c54 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.4/Documentation/admin-guide/namespaces/
Dcompatibility-list.rst10 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.4/sound/soc/samsung/
Di2s.c163 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.4/scripts/
Dconfig27 Enable option directly after other option
29 Disable option directly after other option
31 Turn option into module directly after other option
/Linux-v5.4/Documentation/networking/device_drivers/freescale/dpaa2/
Ddpio-driver.rst16 and other accelerators. A DPIO also provides hardware buffer
31 A. allow other drivers, such as the Ethernet driver, to enqueue and dequeue
40 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-v5.4/Documentation/driver-api/md/
Dmd-cluster.rst53 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.4/Documentation/admin-guide/
Dkernel-per-CPU-kthreads.rst50 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.4/drivers/edac/
Dthunderx_edac.c585 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.4/tools/memory-model/scripts/
DREADME36 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.
/Linux-v5.4/Documentation/kbuild/
DKconfig.recursion-issue-0210 # 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-v5.4/Documentation/driver-api/gpio/
Ddrivers-on-gpio.rst7 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-v5.4/drivers/gpu/drm/amd/amdgpu/
Damdgpu_ctx.c472 struct dma_fence *other = NULL; in amdgpu_ctx_add_fence() local
476 other = centity->fences[idx]; in amdgpu_ctx_add_fence()
477 if (other) in amdgpu_ctx_add_fence()
478 BUG_ON(!dma_fence_is_signaled(other)); in amdgpu_ctx_add_fence()
487 dma_fence_put(other); in amdgpu_ctx_add_fence()
544 struct dma_fence *other; in amdgpu_ctx_wait_prev_fence() local
550 other = dma_fence_get(centity->fences[idx]); in amdgpu_ctx_wait_prev_fence()
553 if (!other) in amdgpu_ctx_wait_prev_fence()
556 r = dma_fence_wait(other, true); in amdgpu_ctx_wait_prev_fence()
560 dma_fence_put(other); in amdgpu_ctx_wait_prev_fence()
/Linux-v5.4/include/uapi/linux/
Dicmpv6.h48 other:1, member
53 other:1, member
77 #define icmp6_addrconf_other icmp6_dataun.u_nd_ra.other
/Linux-v5.4/Documentation/devicetree/bindings/i2c/
Di2c-arb-gpio-challenge.txt24 - 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-v5.4/Documentation/core-api/
Drefcount-vs-atomic.rst45 and all propagated stores from other CPUs must propagate to all
46 other CPUs before any po-later instruction is executed on the original
52 stores on the same CPU and all propagated stores from other CPUs
53 must propagate to all other CPUs before the release operation
60 po-later stores on the same CPU must propagate to all other CPUs
70 a single CPU relation and provides no guarantees for other CPUs.
142 case 6) other decrement-based RMW ops that return a value

12345678910>>...78