Searched refs:fault (Results 26 - 50 of 68) sorted by relevance

123

/freebsd-current/tools/test/stress2/misc/
H A Dmmap25.sh103 c = p[pos]; /* Program received signal SIGSEGV, Segmentation fault. */
H A Dsuj10.sh31 # Page fault in softdep_revert_mkdir+0x4d seen and
100 Fatal trap 12: page fault while in kernel mode
H A Ddatamove4.sh180 Program received signal SIGSEGV, Segmentation fault.
/freebsd-current/usr.bin/lastcomm/tests/
H A Dvalues.sh61 echo Generating segmentation fault.
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_status/
H A Dzpool_status_008_pos.ksh65 log_must zinject -d $TESTDIR/vdev5 -A fault $TESTPOOL2
/freebsd-current/usr.sbin/bhyve/amd64/
H A Dinout.c107 int error, fault, retval; local
164 bytes, prot, iov, nitems(iov), &fault);
168 } else if (fault) {
169 retval = 0; /* Resume guest to handle fault */
/freebsd-current/sys/arm64/arm64/
H A Dundefined.c234 goto fault;
250 goto fault;
267 fault:
/freebsd-current/sys/arm64/vmm/
H A Dvmm_arm64.c987 goto fault;
991 goto fault;
1001 goto fault;
1005 goto fault;
1012 goto fault;
1019 goto fault;
1025 goto fault;
1032 goto fault;
1034 goto fault;
1038 goto fault;
[all...]
/freebsd-current/sys/contrib/openzfs/cmd/zed/agents/
H A Dfmd_api.c30 * fault logic modules in ZED. This support includes module registration,
369 fmd_fault_mkcode(nvlist_t *fault) argument
377 if (nvlist_lookup_string(fault, FM_CLASS, &class) == 0) {
378 if (strcmp(class, "fault.fs.zfs.vdev.io") == 0)
380 else if (strcmp(class, "fault.fs.zfs.vdev.checksum") == 0)
382 else if (strcmp(class, "fault.fs.zfs.io_failure_wait") == 0)
384 else if (strcmp(class, "fault.fs.zfs.io_failure_continue") == 0)
386 else if (strcmp(class, "fault.fs.zfs.log_replay") == 0)
388 else if (strcmp(class, "fault.fs.zfs.pool") == 0)
390 else if (strcmp(class, "fault
398 fmd_case_add_suspect(fmd_hdl_t *hdl, fmd_case_t *cp, nvlist_t *fault) argument
[all...]
/freebsd-current/contrib/expat/tests/
H A Dhandlers.c468 ExtFaults *fault = (ExtFaults *)XML_GetUserData(parser); local
476 if (fault->encoding != NULL) {
477 if (! XML_SetEncoding(ext_parser, fault->encoding))
480 if (_XML_Parse_SINGLE_BYTES(ext_parser, fault->parse_text,
481 (int)strlen(fault->parse_text), XML_TRUE)
483 fail(fault->fail_text);
484 if (XML_GetErrorCode(ext_parser) != fault->error)
641 ExtFaults *fault = (ExtFaults *)XML_GetUserData(parser); local
643 int parse_len = (int)strlen(fault->parse_text);
658 memcpy(buffer, fault
972 ExtFaults *fault = (ExtFaults *)XML_GetUserData(parser); local
[all...]
H A Dbasic_tests.c1037 ExtFaults fault local
1042 XML_SetUserData(g_parser, &fault);
1053 ExtFaults fault local
1059 XML_SetUserData(g_parser, &fault);
1219 const ExtFaults *fault = faults; local
1221 for (; fault->parse_text != NULL; fault++) {
1222 set_subtest("\"%s\"", fault->parse_text);
1225 XML_SetUserData(g_parser, (void *)fault);
2466 /* Test external entity fault handlin
2480 ExtFaults *fault; local
3142 ExtFaults *fault; local
4912 ExtFaults fault = {"<![IGNORE[<!ELEMENT \\xffG (#PCDATA)*>]]>", local
[all...]
/freebsd-current/sys/amd64/vmm/
H A Dvmm_instruction_emul.c712 enum vm_reg_name seg, enum vm_reg_name gpr, uint64_t *gla, int *fault)
754 *fault = 0;
758 *fault = 1;
774 int error, fault, opsize, seg, repeat; local
821 PROT_READ, seg, VM_REG_GUEST_RSI, &srcaddr, &fault);
822 if (error || fault)
826 copyinfo, nitems(copyinfo), &fault);
828 if (fault)
829 goto done; /* Resume guest to handle fault */
847 &fault);
710 get_gla(struct vcpu *vcpu, struct vie *vie __unused, struct vm_guest_paging *paging, int opsize, int addrsize, int prot, enum vm_reg_name seg, enum vm_reg_name gpr, uint64_t *gla, int *fault) argument
1524 int error, fault, size, stackaddrsize, pushop; local
[all...]
H A Dvmm.c1633 int cs_d, error, fault; local
1648 VMM_CTR1(vcpu, "inst_emul fault accessing gpa %#lx", gpa);
1653 VIE_INST_SIZE, vie, &fault);
1658 error = fault = 0;
1660 if (error || fault)
1771 int error, fault; local
1783 VM_PROT_RW, &copyinfo, 1, &fault);
1784 if (error != 0 || fault != 0) {
2123 * If an exception occurs while attempting to call the double-fault
2124 * handler the processor enters shutdown mode (aka triple fault)
2775 vm_copy_setup(struct vcpu *vcpu, struct vm_guest_paging *paging, uint64_t gla, size_t len, int prot, struct vm_copyinfo *copyinfo, int num_copyinfo, int *fault) argument
[all...]
/freebsd-current/lib/libvmmapi/
H A Dvmmapi.h134 uint64_t gla, int prot, uint64_t *gpa, int *fault);
138 uint64_t *gpa, int *fault);
230 * retval fault Interpretation
237 int *fault);
H A Dvmmapi.c824 uint64_t gla, int prot, uint64_t *gpa, int *fault)
836 *fault = gg.fault;
845 uint64_t gla, int prot, uint64_t *gpa, int *fault)
857 *fault = gg.fault;
871 int *fault)
884 error = vm_gla2gpa(vcpu, paging, gla, prot, &gpa, fault);
885 if (error || *fault)
823 vm_gla2gpa(struct vcpu *vcpu, struct vm_guest_paging *paging, uint64_t gla, int prot, uint64_t *gpa, int *fault) argument
844 vm_gla2gpa_nofault(struct vcpu *vcpu, struct vm_guest_paging *paging, uint64_t gla, int prot, uint64_t *gpa, int *fault) argument
869 vm_copy_setup(struct vcpu *vcpu, struct vm_guest_paging *paging, uint64_t gla, size_t len, int prot, struct iovec *iov, int iovcnt, int *fault) argument
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/
H A Dauto_spare_multiple.ksh24 . $STF_SUITE/tests/functional/fault/fault.cfg
39 # 8. Clear the fault on both devices
62 FAULT_DEV1="$TEST_BASE_DIR/fault-dev1"
63 FAULT_DEV2="$TEST_BASE_DIR/fault-dev2"
137 # 8. Clear the fault on both devices
204 # 5. Clear the fault on both devices
/freebsd-current/sys/cddl/dev/dtrace/powerpc/
H A Ddtrace_subr.c276 * want to fault. On returning from the probe, the no-fault
279 * Check if DTrace has enabled 'no-fault' mode:
291 /* Page fault. */
300 * following the one causing the fault.
312 * following the one causing the fault.
328 int fault, int fltoffs, uintptr_t illval)
333 (uintptr_t)which, (uintptr_t)fault, (uintptr_t)fltoffs);
327 dtrace_probe_error(dtrace_state_t *state, dtrace_epid_t epid, int which, int fault, int fltoffs, uintptr_t illval) argument
/freebsd-current/sys/cddl/dev/dtrace/riscv/
H A Ddtrace_subr.c193 * want to fault. On returning from the probe, the no-fault
196 * Check if DTrace has enabled 'no-fault' mode:
216 * following the one causing the fault.
234 int fault, int fltoffs, uintptr_t illval)
239 (uintptr_t)which, (uintptr_t)fault, (uintptr_t)fltoffs);
233 dtrace_probe_error(dtrace_state_t *state, dtrace_epid_t epid, int which, int fault, int fltoffs, uintptr_t illval) argument
/freebsd-current/sys/cddl/dev/dtrace/arm/
H A Ddtrace_subr.c133 * fault in the system which is not handled by the normal arm
202 * want to fault. On returning from the probe, the no-fault
205 * Check if DTrace has enabled 'no-fault' mode:
214 /* Page fault. */
222 * following the one causing the fault.
238 int fault, int fltoffs, uintptr_t illval)
243 (uintptr_t)which, (uintptr_t)fault, (uintptr_t)fltoffs);
237 dtrace_probe_error(dtrace_state_t *state, dtrace_epid_t epid, int which, int fault, int fltoffs, uintptr_t illval) argument
/freebsd-current/sys/cddl/dev/dtrace/aarch64/
H A Ddtrace_subr.c193 * want to fault. On returning from the probe, the no-fault
196 * Check if DTrace has enabled 'no-fault' mode:
213 * following the one causing the fault.
229 int fault, int fltoffs, uintptr_t illval)
234 (uintptr_t)which, (uintptr_t)fault, (uintptr_t)fltoffs);
228 dtrace_probe_error(dtrace_state_t *state, dtrace_epid_t epid, int which, int fault, int fltoffs, uintptr_t illval) argument
/freebsd-current/sys/arm64/include/
H A Dvmm_dev.h120 int fault; /* outputs */ member in struct:vm_gla2gpa
/freebsd-current/sys/netpfil/ipfilter/netinet/
H A Dradix_ipf.c1399 int fault = 0; local
1404 fault |= 1;
1406 fault |= 2;
1408 fault |= 4;
1409 if (fault != 0) {
1410 printf("FAULT %#x %s\n", fault, rn->name);
/freebsd-current/usr.sbin/sesutil/
H A Dsesutil.c68 static int fault(int argc, char **argv);
71 static int sesled(int argc, char **argv, bool fault);
81 { "fault",
83 "Change the state of the fault LED associated with a disk",
84 fault },
192 usage(stderr, (setfault ? "fault" : "locate"));
203 usage(stderr, (setfault ? "fault" : "locate"));
213 usage(stderr, (setfault ? "fault" : "locate"));
334 fault(int argc, char **argv) function
385 sesutil_print(&style, "LED={q:led/fault}");
[all...]
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dmm.h144 int (*fault) (struct vm_fault *); member in struct:vm_operations_struct
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/
H A DMakefile.am270 functional/fault/fault.cfg \
1470 functional/fault/auto_offline_001_pos.ksh \
1471 functional/fault/auto_online_001_pos.ksh \
1472 functional/fault/auto_online_002_pos.ksh \
1473 functional/fault/auto_replace_001_pos.ksh \
1474 functional/fault/auto_replace_002_pos.ksh \
1475 functional/fault/auto_spare_001_pos.ksh \
1476 functional/fault/auto_spare_002_pos.ksh \
1477 functional/fault/auto_spare_ashif
[all...]

Completed in 274 milliseconds

123