Home
last modified time | relevance | path

Searched refs:fault (Results 1 – 25 of 259) sorted by relevance

1234567891011

/freebsd/crypto/openssl/test/helpers/
H A Dquictestlib.c136 QTEST_FAULT **fault, BIO **tracebio) in qtest_create_quic_objects() argument
170 if (fault != NULL) { in qtest_create_quic_objects()
171 *fault = OPENSSL_zalloc(sizeof(**fault)); in qtest_create_quic_objects()
172 if (*fault == NULL) in qtest_create_quic_objects()
174 bdata->fault = *fault; in qtest_create_quic_objects()
277 if (!TEST_ptr(fault)) in qtest_create_quic_objects()
306 (*fault)->noiseargs.cbio = cbio; in qtest_create_quic_objects()
307 (*fault)->noiseargs.sbio = sbio; in qtest_create_quic_objects()
308 (*fault)->noiseargs.tracebio = tmpbio; in qtest_create_quic_objects()
309 (*fault)->noiseargs.flags = flags; in qtest_create_quic_objects()
[all …]
H A Dquictestlib.h18 struct qtest_fault *fault; member
52 QTEST_FAULT **fault, BIO **tracebio);
69 void qtest_fault_free(QTEST_FAULT *fault);
118 typedef int (*qtest_fault_on_packet_plain_cb)(QTEST_FAULT *fault,
124 int qtest_fault_set_packet_plain_listener(QTEST_FAULT *fault,
136 int qtest_fault_resize_plain_packet(QTEST_FAULT *fault, size_t newlen);
142 int qtest_fault_prepend_frame(QTEST_FAULT *fault, const unsigned char *frame,
149 typedef int (*qtest_fault_on_handshake_cb)(QTEST_FAULT *fault,
154 int qtest_fault_set_handshake_listener(QTEST_FAULT *fault,
167 int qtest_fault_resize_handshake(QTEST_FAULT *fault, size_t newlen);
[all …]
/freebsd/crypto/openssl/test/
H A Dquicfaultstest.c70 static int add_unknown_frame_cb(QTEST_FAULT *fault, QUIC_PKT_HDR *hdr, in add_unknown_frame_cb() argument
87 return qtest_fault_prepend_frame(fault, unknown_frame, in add_unknown_frame_cb()
101 QTEST_FAULT *fault = NULL; in test_unknown_frame() local
108 &qtserv, &cssl, &fault, NULL))) in test_unknown_frame()
118 if (!TEST_true(qtest_fault_set_packet_plain_listener(fault, in test_unknown_frame()
153 qtest_fault_free(fault); in test_unknown_frame()
164 static int drop_extensions_cb(QTEST_FAULT *fault, in drop_extensions_cb() argument
170 if (!qtest_fault_delete_extension(fault, *ext, ee->extensions, in drop_extensions_cb()
183 QTEST_FAULT *fault = NULL; in test_drop_extensions() local
190 &qtserv, &cssl, &fault, NULL))) in test_drop_extensions()
[all …]
H A Dquic_newcid_test.c23 static int add_ncid_frame_cb(QTEST_FAULT *fault, QUIC_PKT_HDR *hdr, in add_ncid_frame_cb() argument
45 return qtest_fault_prepend_frame(fault, new_conn_id_frame, in add_ncid_frame_cb()
60 QTEST_FAULT *fault = NULL; in test_ncid_frame() local
71 &qtserv, &cssl, &fault, NULL))) in test_ncid_frame()
97 if (!TEST_true(qtest_fault_set_packet_plain_listener(fault, in test_ncid_frame()
142 qtest_fault_free(fault); in test_ncid_frame()
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-asrock-altrad8.dts48 led-system-fault {
50 label = "platform:red:fault";
63 led-fan1-fault {
67 label = "fan1:red:fault";
72 led-fan2-fault {
76 label = "fan2:red:fault";
81 led-fan3-fault {
85 label = "fan3:red:fault";
90 led-fan4-fault {
94 label = "fan4:red:fault";
[all …]
H A Daspeed-bmc-opp-swift.dts175 front-fault {
193 rear-fault {
353 maxim,fan-no-fault-ramp;
355 maxim,fan-fault-pin-mon;
365 maxim,fan-no-fault-ramp;
367 maxim,fan-fault-pin-mon;
377 maxim,fan-no-fault-ramp;
379 maxim,fan-fault-pin-mon;
389 maxim,fan-no-fault-ramp;
391 maxim,fan-fault-pin-mon;
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/events/
H A Dzed_diagnose_multiple.ksh141 log_note $skips fault skips in ZED log after $i seconds
144 fault=$(grep "zpool_vdev_fault" $ZEDLET_DIR/zed.log | wc -l)
145 log_note $fault vdev fault in ZED log
146 [ $fault -eq "0" ] || \
147 log_fail "expecting no fault events, found $fault"
/freebsd/sys/dev/aq/
H A Daq_irq.c212 uint16_t fault; in aq_thermal_poll() local
222 if (hw->fw_ops->get_phy_fault(hw, &fault) != 0 || fault == 0) in aq_thermal_poll()
225 if (fault == aq_dev->phy_fault_last) in aq_thermal_poll()
227 aq_dev->phy_fault_last = fault; in aq_thermal_poll()
228 if (fault != AQ_PHY_FAULT_THERMAL_SHUTDOWN) { in aq_thermal_poll()
230 "PHY fault 0x%04x\n", fault); in aq_thermal_poll()
316 uint16_t fault; in aq_link_report_down() local
321 hw->fw_ops->get_phy_fault(hw, &fault) == 0 && fault != 0) in aq_link_report_down()
322 sbuf_printf(&sb, ", PHY fault 0x%04x", fault); in aq_link_report_down()
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dquic-fault-injector.md15 fault) into an otherwise normal QUIC connection. Therefore the fault injector
201 * make changes to the contents of structure objects as required and the fault
212 * keyfile, create a server and client instances as well as a fault injector
218 OSSL_QUIC_FAULT **fault, BIO **tracebio);
223 void ossl_quic_fault_free(OSSL_QUIC_FAULT *fault);
252 typedef int (*ossl_quic_fault_on_packet_plain_cb)(OSSL_QUIC_FAULT *fault,
258 int ossl_quic_fault_set_packet_plain_listener(OSSL_QUIC_FAULT *fault,
271 int ossl_quic_fault_resize_plain_packet(OSSL_QUIC_FAULT *fault, size_t newlen);
277 int ossl_quic_fault_prepend_frame(OSSL_QUIC_FAULT *fault, unsigned char *frame,
284 typedef int (*ossl_quic_fault_on_handshake_cb)(OSSL_QUIC_FAULT *fault,
[all …]
/freebsd/usr.sbin/bhyve/amd64/
H A Dtask_switch.c693 #define CHKERR(error,fault) \ argument
698 else if (fault) \
716 int error, ext, fault, minlimit, nt_type, ot_type; in vmexit_task_switch() local
745 &fault); in vmexit_task_switch()
746 CHKERR(error, fault); in vmexit_task_switch()
798 PROT_READ | PROT_WRITE, nt_iov, nitems(nt_iov), &fault); in vmexit_task_switch()
799 CHKERR(error, fault); in vmexit_task_switch()
825 &fault); in vmexit_task_switch()
826 CHKERR(error, fault); in vmexit_task_switch()
830 PROT_READ | PROT_WRITE, ot_iov, nitems(ot_iov), &fault); in vmexit_task_switch()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/microchip/
H A Dsparx5_pcb134_board.dtsi272 tx-fault-gpios = <&sgpio_in2 12 0 GPIO_ACTIVE_HIGH>;
281 tx-fault-gpios = <&sgpio_in2 13 0 GPIO_ACTIVE_HIGH>;
290 tx-fault-gpios = <&sgpio_in2 14 0 GPIO_ACTIVE_HIGH>;
299 tx-fault-gpios = <&sgpio_in2 15 0 GPIO_ACTIVE_HIGH>;
308 tx-fault-gpios = <&sgpio_in2 16 0 GPIO_ACTIVE_HIGH>;
317 tx-fault-gpios = <&sgpio_in2 17 0 GPIO_ACTIVE_HIGH>;
326 tx-fault-gpios = <&sgpio_in2 18 0 GPIO_ACTIVE_HIGH>;
335 tx-fault-gpios = <&sgpio_in2 19 0 GPIO_ACTIVE_HIGH>;
344 tx-fault-gpios = <&sgpio_in2 20 0 GPIO_ACTIVE_HIGH>;
353 tx-fault-gpios = <&sgpio_in2 21 0 GPIO_ACTIVE_HIGH>;
[all …]
/freebsd/tools/test/stress2/misc/
H A Dldt.sh284 cat > fault.c <<EOF
285 /* \$Id: fault.c,v 1.5 2008/10/28 17:39:16 kostik Exp \$ */
332 fault(void)
355 fault();
360 cc -o fault_static_i386 -Wall -static fault.c
361 rm fault.c
H A Dall.exclude46 nfs10.sh Double fault 20151013
71 syzkaller59.sh Page fault 20220625
75 syzkaller90.sh panic: general protection fault 20260318
76 syzkaller91.sh Kernel page fault with the following non-sleepable locks held 20260318
77 syzkaller92.sh Kernel page fault with the following non-sleepable locks held 20260318
80 syzkaller95.sh Kernel page fault with the following non-sleepable locks held 20260318
/freebsd/sys/contrib/device-tree/Bindings/watchdog/
H A Datmel-sama5d4-wdt.txt11 "hardware": enable watchdog fault reset. A watchdog fault triggers
13 "software": enable watchdog fault interrupt. A watchdog fault asserts
/freebsd/sys/contrib/device-tree/Bindings/gpio/
H A Dgpio-max3191x.txt22 - maxim,fault-gpios: GPIO pins to read fault of each chip.
38 by the "maxim,fault-gpios" or by the status byte
54 maxim,fault-gpios = <&gpio2 24 GPIO_ACTIVE_LOW>;
/freebsd/sys/contrib/device-tree/Bindings/spi/
H A Dmicrochip,spi-pic32.txt7 of <fault-irq>, <receive-irq>, <transmit-irq>.
8 - interrupt-names: Should be "fault", "rx", "tx" in order.
28 interrupt-names = "fault", "rx", "tx";
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/
H A Dsetup.ksh18 . $STF_SUITE/tests/functional/fault/fault.cfg
H A Dcleanup.ksh18 . $STF_SUITE/tests/functional/fault/fault.cfg
H A Dscrub_after_resilver.ksh20 . $STF_SUITE/tests/functional/fault/fault.cfg
H A Ddecrypt_fault.ksh20 . $STF_SUITE/tests/functional/fault/fault.cfg
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Dti-lmu.txt9 LM3633 Backlight, LED and fault monitor
51 - fault-monitor: Hardware fault monitoring driver for LM3633 and LM3697.
54 "ti,lm3633-fault-monitor"
201 fault-monitor {
202 compatible = "ti,lm3633-fault-monitor";
/freebsd/tests/sys/cddl/zfs/tests/zinject/
H A Dzinject.kshlib145 for fault in $@ ; do
149 ereport=$($FMDUMP -av -t "$after_time" | $GREP $fault)
154 log_fail "$fault not found"
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dsff,sfp.txt22 - tx-fault-gpios : GPIO phandle and a specifier of the Module Transmitter
23 Fault input gpio signal, active (fault condition) high
51 tx-fault-gpios = <&cpm_gpio2 19 GPIO_ACTIVE_HIGH>;
70 tx-fault-gpios = <&cps_gpio1 26 GPIO_ACTIVE_HIGH>;
/freebsd/sys/amd64/vmm/
H A Dvmm_instruction_emul.c706 enum vm_reg_name seg, enum vm_reg_name gpr, uint64_t *gla, int *fault) in get_gla() argument
748 *fault = 0; in get_gla()
752 *fault = 1; in get_gla()
768 int error, fault, opsize, seg, repeat; in emulate_movs() local
815 PROT_READ, seg, VM_REG_GUEST_RSI, &srcaddr, &fault); in emulate_movs()
816 if (error || fault) in emulate_movs()
820 copyinfo, nitems(copyinfo), &fault); in emulate_movs()
822 if (fault) in emulate_movs()
823 goto done; /* Resume guest to handle fault */ in emulate_movs()
841 &fault); in emulate_movs()
1524 int error, fault, size, stackaddrsize, pushop; emulate_stack_op() local
[all...]
/freebsd/sys/contrib/openzfs/cmd/zed/agents/
H A Dzfs_retire.c562 nvlist_t *resource, *fault; in zfs_retire_recv() local
715 fault = faults[f]; in zfs_retire_recv()
721 if (nvlist_lookup_boolean_value(fault, FM_SUSPECT_RETIRE, in zfs_retire_recv()
731 if (fmd_nvl_class_match(hdl, fault, "fault.fs.zfs.vdev.io")) { in zfs_retire_recv()
733 } else if (fmd_nvl_class_match(hdl, fault, in zfs_retire_recv()
736 } else if (fmd_nvl_class_match(hdl, fault, in zfs_retire_recv()
739 } else if (fmd_nvl_class_match(hdl, fault, in zfs_retire_recv()
742 } else if (fmd_nvl_class_match(hdl, fault, "fault.io.*")) { in zfs_retire_recv()
756 if (nvlist_lookup_nvlist(fault, FM_FAULT_RESOURCE, in zfs_retire_recv()

1234567891011