/openbmc/linux/net/core/ |
H A D | failover.c | 23 struct failover *failover; in failover_get_bymac() local 26 list_for_each_entry(failover, &failover_list, list) { in failover_get_bymac() 27 failover_dev = rtnl_dereference(failover->failover_dev); in failover_get_bymac() 29 *ops = rtnl_dereference(failover->ops); in failover_get_bymac() 242 struct failover *failover_register(struct net_device *dev, in failover_register() 245 struct failover *failover; in failover_register() local 250 failover = kzalloc(sizeof(*failover), GFP_KERNEL); in failover_register() 251 if (!failover) in failover_register() 254 rcu_assign_pointer(failover->ops, ops); in failover_register() 255 netdev_hold(dev, &failover->dev_tracker, GFP_KERNEL); in failover_register() [all …]
|
H A D | Makefile | 38 obj-$(CONFIG_FAILOVER) += failover.o
|
/openbmc/linux/include/net/ |
H A D | failover.h | 25 struct failover { struct 32 struct failover *failover_register(struct net_device *dev, argument 34 void failover_unregister(struct failover *failover);
|
H A D | net_failover.h | 30 struct failover *net_failover_create(struct net_device *standby_dev); 31 void net_failover_destroy(struct failover *failover);
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-filter/conntrack-tools/ |
H A D | conntrack-tools_1.4.8.bb | 12 file://conntrack-failover \ 37 install -m 0755 ${UNPACKDIR}/conntrack-failover ${D}/${sysconfdir}/init.d/conntrack-failover 41 …sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}/${sysconfdir}/init.d/conntrack-failover ${D}/${sysconfdir… 42 …sed -i 's!/etc/!${sysconfdir}/!g' ${D}/${sysconfdir}/init.d/conntrack-failover ${D}/${sysconfdir}/… 43 …sed -i 's!/var/!${localstatedir}/!g' ${D}/${sysconfdir}/init.d/conntrack-failover ${D}/${sysconfdi…
|
/openbmc/qemu/tests/unit/ |
H A D | test-replication.c | 254 bool failover = true; in test_primary_stop() local 260 replication_stop_all(failover, &error_abort); in test_primary_stop() 388 bool failover = true; in test_secondary_start() local 412 replication_stop_all(failover, &error_abort); in test_secondary_start() 421 bool failover = true; in test_secondary_stop() local 438 replication_stop_all(failover, &error_abort); in test_secondary_stop() 499 bool failover = true; in test_secondary_do_checkpoint() local 520 replication_stop_all(failover, &error_abort); in test_secondary_do_checkpoint() 527 bool failover = true; in test_secondary_get_error_all() local 535 replication_stop_all(failover, &error_abort); in test_secondary_get_error_all()
|
/openbmc/linux/Documentation/networking/ |
H A D | net_failover.rst | 10 The net_failover driver provides an automated failover mechanism via APIs 11 to create and destroy a failover master netdev and manages a primary and 12 standby slave netdevs that get registered via the generic failover 15 The failover netdev acts a master device and controls 2 slave devices. The 18 netdev. Both 'standby' and 'failover' netdevs are associated with the same 19 'pci' device. The user accesses the network interface via 'failover' netdev. 20 The 'failover' netdev chooses 'primary' netdev as default for transmits when 63 virtio-net device is set to 'down' to ensure that the 'failover' netdev prefers 87 Here, ens10 is the 'failover' master interface, ens10nsby is the slave 'standby' 92 device; and on the first boot, the VM might end up with both 'failover' device [all …]
|
H A D | failover.rst | 10 The failover module provides a generic interface for paravirtual drivers 11 to register a netdev and a set of ops with a failover instance. The ops 14 with the same mac address as the failover netdev.
|
H A D | index.rst | 25 failover
|
/openbmc/linux/drivers/net/ |
H A D | net_failover.c | 706 struct failover *net_failover_create(struct net_device *standby_dev) in net_failover_create() 710 struct failover *failover; in net_failover_create() local 760 failover = failover_register(failover_dev, &net_failover_ops); in net_failover_create() 761 if (IS_ERR(failover)) { in net_failover_create() 762 err = PTR_ERR(failover); in net_failover_create() 766 return failover; in net_failover_create() 788 void net_failover_destroy(struct failover *failover) in net_failover_destroy() argument 794 if (!failover) in net_failover_destroy() 797 failover_dev = rcu_dereference(failover->failover_dev); in net_failover_destroy() 812 failover_unregister(failover); in net_failover_destroy()
|
/openbmc/openbmc/meta-ibm/recipes-phosphor/network/network/ |
H A D | ncsi-failover@.service | 2 Description=Stop %i link failover 9 SyslogIdentifier=nsci-failover
|
/openbmc/qemu/include/block/ |
H A D | replication.h | 112 void (*stop)(ReplicationState *rs, bool failover, Error **errp); 173 void replication_stop_all(bool failover, Error **errp);
|
/openbmc/qemu/ |
H A D | replication.c | 93 void replication_stop_all(bool failover, Error **errp) in replication_stop_all() argument 100 rs->ops->stop(rs, failover, &local_err); in replication_stop_all()
|
/openbmc/qemu/docs/ |
H A D | block-replication.txt | 109 7) The secondary also has a quorum node, so after secondary failover it 121 7. Doing failover failed 124 decides when to do a new checkpoint, when to do failover). 125 In case 7, if active commit failed, we use replication failover failed state 146 It is called on failover. We will flush the Disk buffer into 149 things except failover. The caller must hold the I/O mutex lock if it is 178 6. After primary failover we need remove children.1 (replication driver).
|
/openbmc/qemu/docs/system/ |
H A D | virtio-net-failover.rst | 44 bus=root2,failover=on 46 With the parameter failover=on the VIRTIO_NET_F_STANDBY feature will be enabled. 64 A new migration state wait-unplug was added for this feature. If failover primary
|
H A D | index.rst | 22 virtio-net-failover
|
/openbmc/openbmc/meta-ibm/recipes-phosphor/network/ |
H A D | phosphor-network_%.bbappend | 11 FAILOVER_TMPL = "ncsi-failover@.service" 22 FAILOVER_TGTFMT = "ncsi-failover@{0}.service"
|
/openbmc/openbmc/meta-ampere/meta-jade/recipes-phosphor/gpio/phosphor-gpio-monitor/ |
H A D | ampere_scp_failover.service | 2 Description=Ampere Computing LLC Ampere failover event service
|
/openbmc/openbmc/meta-fii/meta-kudo/recipes-kudo/kudo-fw-utility/kudo-scp-update/ |
H A D | phosphor-ipmi-flash-scpback-update.service | 2 Description=Phosphor-ipmi-flash update failover EEPROM SCP firmware service
|
/openbmc/qemu/migration/ |
H A D | colo.c | 233 bool has_failover, bool failover, in qmp_xen_set_replication() argument 250 failover = NULL; in qmp_xen_set_replication() 252 replication_stop_all(failover, failover ? NULL : errp); in qmp_xen_set_replication()
|
H A D | meson.build | 37 system_ss.add(files('colo-failover.c', 'colo.c'))
|
/openbmc/u-boot/board/Arcturus/ucp1020/ |
H A D | README | 45 This build enables dual / failover environment environment.
|
/openbmc/qemu/block/ |
H A D | replication.c | 54 static void replication_stop(ReplicationState *rs, bool failover, 668 static void replication_stop(ReplicationState *rs, bool failover, Error **errp) in replication_stop() argument 703 if (!failover) { in replication_stop()
|
/openbmc/qemu/include/hw/virtio/ |
H A D | virtio-net.h | 220 bool failover; member
|
/openbmc/ipmitool/lib/ |
H A D | ipmi_delloem.c | 2061 int failover = 0; in get_nic_selection_mode_12g() local 2106 failover = 1; in get_nic_selection_mode_12g() 2108 if (failover) { in get_nic_selection_mode_12g() 2116 if (failover) { in get_nic_selection_mode_12g() 2135 if (failover) { in get_nic_selection_mode_12g() 2154 if (failover) { in get_nic_selection_mode_12g() 2173 if (failover) { in get_nic_selection_mode_12g() 2187 } else if (failover && argv[current_arg] != NULL in get_nic_selection_mode_12g() 2192 if (failover) { in get_nic_selection_mode_12g() 2199 } else if (failover && argv[current_arg] != NULL in get_nic_selection_mode_12g() [all …]
|