Home
last modified time | relevance | path

Searched refs:slave (Results 1 – 25 of 445) sorted by relevance

12345678910>>...18

/f-stack/dpdk/app/test/
H A Dtest_link_bonding_mode4.c245 slave->port_id), in add_slave()
247 (uint8_t)(slave - test_params.slave_ports), slave->port_id, in add_slave()
250 slave->bonded = 1; in add_slave()
279 slave->port_id); in remove_slave()
283 slave->port_id); in remove_slave()
291 slave->bonded = 0; in remove_slave()
375 slave->port_id); in remove_slaves_and_stop_bonded_device()
507 slave->port_id; in make_lacp_reply()
546 slave->port_id); in bond_handshake_reply()
568 slave->port_id); in bond_handshake_reply()
[all …]
/f-stack/tools/libutil/
H A Dpty.c54 int master, slave; in openpty() local
70 slave = open(slavename, O_RDWR); in openpty()
71 if (slave == -1) in openpty()
75 *aslave = slave; in openpty()
80 tcsetattr(slave, TCSAFLUSH, termp); in openpty()
82 ioctl(slave, TIOCSWINSZ, (char *)winp); in openpty()
93 int master, slave, pid; in forkpty() local
95 if (openpty(&master, &slave, name, termp, winp) == -1) in forkpty()
99 (void)close(slave); in forkpty()
106 login_tty(slave); in forkpty()
[all …]
/f-stack/app/redis-5.0.5/tests/integration/
H A Dreplication-4.tcl16 set slave [srv 0 client]
22 test {First server should have role slave after SLAVEOF} {
23 $slave slaveof $master_host $master_port
26 } {slave}
63 set slave [srv 0 client]
66 $slave slaveof $master_host $master_port
91 $slave deferred 1
92 $slave debug sleep 6
105 set slave [srv 0 client]
108 $slave slaveof $master_host $master_port
[all …]
H A Dreplication-psync.tcl27 set slave [srv 0 client]
39 $slave slaveof $master_host $master_port
41 [lindex [r role] 0] eq {slave} &&
68 $slave multi
69 $slave client kill $master_host:$master_port
70 $slave debug sleep $delay
71 $slave exec
73 $slave client kill $master_host:$master_port
103 [lindex [$slave role] 3] eq {connected}
109 while {$retry && ([$master debug digest] ne [$slave debug digest])}\
[all …]
H A Dreplication.tcl9 set slave [srv 0 client]
26 $slave config set repl-timeout 5
29 $slave slaveof $master_host $master_port
63 test {Set instance A as slave of B} {
66 [lindex [$A role] 0] eq {slave} &&
102 [lindex [$B role] 0] eq {slave} &&
140 } {slave}
177 test {ROLE in slave reports slave in connected state} {
180 assert {$role eq {slave}}
277 set slave [srv 0 client]
[all …]
H A Dblock-repl.tcl19 set slave [srv 0 client]
25 test {First server should have role slave after SLAVEOF} {
26 $slave slaveof $master_host $master_port
29 } {slave}
37 while {$retry && ([$master debug digest] ne [$slave debug digest])}\
43 if {[$master debug digest] ne [$slave debug digest]} {
/f-stack/app/redis-5.0.5/src/
H A Dreplication.c44 void putSlaveOnline(client *slave);
710 client *slave; in syncCommand() local
716 slave = ln->value; in syncCommand()
721 if (ln && ((c->slave_capa & slave->slave_capa) == slave->slave_capa)) { in syncCommand()
864 freeClient(slave); in putSlaveOnline()
873 client *slave = privdata; in sendBulkToSlave() local
883 nwritten = write(fd,slave->replpreamble,sdslen(slave->replpreamble)); in sendBulkToSlave()
902 lseek(slave->repldbfd,slave->repldboff,SEEK_SET); in sendBulkToSlave()
907 freeClient(slave); in sendBulkToSlave()
920 if (slave->repldboff == slave->repldbsize) { in sendBulkToSlave()
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/clock/
H A Dbrcm,kona-ccu.txt32 compatible = "brcm,bcm11351-slave-ccu";
63 "brcm,bcm11351-slave-ccu"
90 slave uartb peri 0 BCM281XX_SLAVE_CCU_UARTB
94 slave ssp0 peri 4 BCM281XX_SLAVE_CCU_SSP0
95 slave ssp2 peri 5 BCM281XX_SLAVE_CCU_SSP2
96 slave bsc1 peri 6 BCM281XX_SLAVE_CCU_BSC1
97 slave bsc2 peri 7 BCM281XX_SLAVE_CCU_BSC2
98 slave bsc3 peri 8 BCM281XX_SLAVE_CCU_BSC3
99 slave pwm peri 9 BCM281XX_SLAVE_CCU_PWM
108 "brcm,bcm21664-slave-ccu"
[all …]
/f-stack/dpdk/doc/guides/prog_guide/
H A Dlink_bonding_poll_mode_drv_lib.rst26 bonded device and its slave devices.
61 slave becomes active if, and only if, the primary active slave fails,
146 After a slave device is added to a bonded device slave is stopped using
151 slave and configured as well.
153 slave.
176 - Validate flow for each slave, failure at least for one slave causes to
185 the slave.
207 the slave.
281 original value of removal of a slave from it.
407 * slave: Defines the PMD device which will be added as slave to the bonded
[all …]
/f-stack/app/redis-5.0.5/tests/cluster/tests/
H A D03-failover-loop.tcl26 set slave {}
31 set slave $id
34 if {$slave eq {}} {
49 set slave_config_epoch [CI $slave cluster_my_epoch]
69 test "Wait failover by #$slave with old epoch $slave_config_epoch" {
71 [CI $slave cluster_my_epoch] > $slave_config_epoch
73 fail "No failover detected, epoch is still [CI $slave cluster_my_epoch]"
95 [RI $tokill role] eq {slave}
H A D11-manual-takeover.tcl55 [RI 0 role] eq {slave} && [RI 1 role] eq {slave} && [RI 2 role] eq {slave}
H A D10-manual-failover.tcl18 assert {[RI 5 role] eq {slave}}
91 [RI 0 role] eq {slave}
114 assert {[RI 5 role] eq {slave}}
161 assert {[RI 5 role] eq {slave}}
/f-stack/app/redis-5.0.5/tests/unit/
H A Dwait.tcl3 set slave [srv 0 client]
10 test {Setup slave} {
11 $slave slaveof $master_host $master_port
25 assert {[$slave get foo] == 3}
33 test {WAIT should not acknowledge 1 additional copy if slave is blocked} {
H A Dpendingquerybuf.tcl17 set slave [srv 0 client]
25 $slave slaveof $master_host $master_port
30 set s_usedmemory [info_memory $slave used_memory]
/f-stack/freebsd/contrib/device-tree/Bindings/fsi/
H A Dfsi.txt16 represent the FSI slaves and their slave engines. As a basic outline:
22 fsi-slave@<link,id> {
23 /* this node defines the FSI slave device, and is handled
26 fsi-slave-engine@<addr> {
32 fsi-slave-engine@<addr> {
54 addresses (link index and slave ID), and no size:
81 addresses and sizes in the slave address space:
86 Optionally, a slave can provide a global unique chip ID which is used to
98 For example, for a slave using a single 0x400-byte page starting at address
111 - connected to an FSI slave
[all …]
/f-stack/freebsd/arm/freescale/imx/
H A Dimx_i2c.c152 u_int slave; member
532 i2c_write_reg(sc, I2C_DATA_REG, slave); in i2c_repeated_start()
533 sc->slave = slave; in i2c_repeated_start()
534 DEVICE_DEBUGF(sc, 2, "rstart 0x%02x\n", sc->slave); in i2c_repeated_start()
540 i2c_start_ll(device_t dev, u_char slave, int timeout) in i2c_start_ll() argument
556 i2c_write_reg(sc, I2C_DATA_REG, slave); in i2c_start_ll()
557 sc->slave = slave; in i2c_start_ll()
558 DEVICE_DEBUGF(sc, 2, "start 0x%02x\n", sc->slave); in i2c_start_ll()
564 i2c_start(device_t dev, u_char slave, int timeout) in i2c_start() argument
583 error = i2c_start_ll(dev, slave, timeout); in i2c_start()
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/ata/
H A Dcortina,gemini-sata-bridge.txt20 ata0 slave interface brought out on IDE pads
23 ata1 slave interface brought out on IDE pads
25 ata1 slave <-> sata0
26 ata0 master and slave interfaces brought out
29 ata0 slave <-> sata1
30 ata1 master and slave interfaces brought out
36 and whether master, slave or both interfaces get brought out.
/f-stack/freebsd/contrib/device-tree/Bindings/arm/tegra/
H A Dnvidia,nvec.txt5 - reg : the iomem of the i2c slave controller
6 - interrupts : the interrupt line of the i2c slave controller
9 - slave-addr: the i2c address of the slave controller
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dkeystone-k2e-netcp.dtsi178 slave-port = <0>;
183 slave-port = <1>;
189 secondary-slave-ports {
191 slave-port = <2>;
195 slave-port = <3>;
199 slave-port = <4>;
203 slave-port = <5>;
207 slave-port = <6>;
211 slave-port = <7>;
/f-stack/freebsd/contrib/device-tree/Bindings/spi/
H A Dspi-fsl-lpspi.txt15 - spi-slave : spi slave mode support. In slave mode, add this attribute without
28 spi-slave;
/f-stack/freebsd/contrib/device-tree/Bindings/fpga/
H A Dlattice-machxo2-spi.txt4 'slave SPI' interface.
9 - compatible: should contain "lattice,machxo2-slave-spi"
25 compatible = "lattice,machxo2-slave-spi";
H A Dxilinx-slave-serial.txt4 bitstream over what is referred to as "slave serial" interface.
5 The slave serial link is not technically SPI, and might require extra
14 - compatible: should contain "xlnx,fpga-slave-serial"
43 compatible = "xlnx,fpga-slave-serial";
/f-stack/freebsd/contrib/device-tree/Bindings/arm/msm/
H A Dssbi.txt13 with the slave device. This should be one of "ssbi", "ssbi2", or
15 slave.
17 The slave device should be the single child node of the ssbi device
/f-stack/freebsd/contrib/device-tree/Bindings/net/
H A Dcpsw.txt20 - active_slave : Specifies the slave to use for time stamping,
37 driven low so that cpsw slave 0 and phy data
52 - phy_id : Specifies slave phy id (deprecated, use phy-handle)
87 cpsw_emac0: slave@0 {
94 cpsw_emac1: slave@1 {
118 cpsw_emac0: slave@0 {
125 cpsw_emac1: slave@1 {
/f-stack/freebsd/arm/nvidia/
H A Das3722.c88 msgs[0].slave = sc->bus_addr; in as3722_read()
89 msgs[1].slave = sc->bus_addr; in as3722_read()
112 msgs[0].slave = sc->bus_addr; in as3722_read_buf()
113 msgs[1].slave = sc->bus_addr; in as3722_read_buf()
136 msgs[0].slave = sc->bus_addr; in as3722_write()
159 msgs[0].slave = sc->bus_addr; in as3722_write_buf()
160 msgs[1].slave = sc->bus_addr; in as3722_write_buf()

12345678910>>...18