Searched refs:result (Results 226 - 250 of 2617) sorted by path

1234567891011>>

/linux-master/arch/powerpc/include/asm/
H A Dperf_event.h31 * Overload regs->result to specify whether we should use the MSR (result
32 * is zero) or the SIAR (result is non zero).
36 (regs)->result = 0; \
H A Dps3.h202 /* lv1 result codes */
235 static inline const char* ps3_result(int result) argument
238 switch (result) {
242 return "** unknown result ** (-1)";
264 return "** unknown result ** (-12)";
297 return "** unknown result **";
H A Dptrace.h55 unsigned long result; member in struct:pt_regs::__anon20::__anon21
H A Dsyscalls_32.h28 unsigned int result; /* Result of a system call */ member in struct:pt_regs32
H A Dvas.h271 int h_query_vas_capabilities(const u64 hcall, u8 query_type, u64 result);
/linux-master/arch/powerpc/include/uapi/asm/
H A Dptrace.h57 unsigned long result; /* Result of a system call */ member in struct:user_pt_regs
/linux-master/arch/powerpc/kernel/
H A Dasm-offsets.c293 STACK_PT_REGS_OFFSET(RESULT, result);
H A Deeh.c415 * routine if the result of a read was all 0xff's and you want to
573 * routine if the result of a read was all 0xff's and you want to
1193 * PE. In the result, the EEH errors detected on the PE won't be
1374 int result, ret = 0; local
1395 result = eeh_ops->get_state(pe, NULL);
1396 rst_active = !!(result & EEH_STATE_RESET_ACTIVE);
1397 dma_en = !!(result & EEH_STATE_DMA_ENABLED);
1398 mmio_en = !!(result & EEH_STATE_MMIO_ENABLED);
1802 * 2. Perform an MMIO to the device. This should result in an error
H A Deeh_driver.c26 static int eeh_result_priority(enum pci_ers_result result) argument
28 switch (result) {
42 WARN_ONCE(1, "Unknown pci_ers_result value: %d\n", result);
47 static const char *pci_ers_result_name(enum pci_ers_result result) argument
49 switch (result) {
63 WARN_ONCE(1, "Unknown result type: %d\n", result);
254 enum pci_ers_result *result)
284 if (result)
285 *result
253 eeh_pe_report_edev(struct eeh_dev *edev, eeh_report_fn fn, enum pci_ers_result *result) argument
300 eeh_pe_report(const char *name, struct eeh_pe *root, eeh_report_fn fn, enum pci_ers_result *result) argument
841 enum pci_ers_result result = PCI_ERS_RESULT_NONE; local
[all...]
H A Dinterrupt.c273 regs->result = r3;
H A Dpci_32.c330 long result = -EOPNOTSUPP; local
349 return result;
H A Dprom_init.c602 prom_arg_t result; local
604 ret = call_prom_ret("call-method", 5, 2, &result,
607 if (ret != 0 || result == -1)
609 ret = call_prom_ret("call-method", 5, 2, &result,
684 static char result[9] __prombss;
687 result[8] = 0;
691 result[i] = digits[x & 0xf];
694 return &result[i];
729 unsigned long result = 0, base = 10, value; local
742 result
[all...]
H A Dsignal.c230 regs->result = 0;
233 regs->result = -EINTR;
236 regs->result = -EINTR;
H A Dsignal_64.c372 unsafe_get_user(regs->result, &sc->gp_regs[PT_RESULT], efault_out);
499 err |= __get_user(regs->result, &sc->gp_regs[PT_RESULT]);
958 regs->result = 0;
/linux-master/arch/powerpc/kernel/ptrace/
H A Dptrace.c329 trace_sys_exit(regs, regs->result);
377 BUILD_BUG_ON(offsetof(struct pt_regs, result) !=
378 offsetof(struct user_pt_regs, result));
434 CHECK_REG(PT_RESULT, result);
/linux-master/arch/powerpc/kvm/
H A Dpowerpc.c1403 int result = 0; local
1411 result = -1;
1428 result = -1;
1444 result = -1;
1448 return result;
1545 int result = 0; local
1556 return result;
1563 int result = 0; local
1574 return result;
1581 int result local
1599 int result = 0; local
[all...]
/linux-master/arch/powerpc/lib/
H A Dtest_emulate_step.c78 static void __init show_result(char *mnemonic, char *result) argument
80 pr_info("%-14s : %s\n", mnemonic, result);
84 char *result)
86 pr_info("%-14s : %-50s %s\n", mnemonic, descr, result);
254 * of 'a' which result in failure of subsequent stdcx.
83 show_result_with_descr(char *mnemonic, char *descr, char *result) argument
/linux-master/arch/powerpc/mm/book3s64/
H A Dmmu_context.c37 int result = ida_alloc_range(&mmu_context_ida, id, id, GFP_KERNEL); local
39 WARN(result != id, "mmu: Failed to reserve context id %d (rc %d)\n", id, result);
/linux-master/arch/powerpc/mm/
H A Dfault.c327 * PROTFAULT. Any update to pte to reduce access will result in us
331 * A pte update to relax the access will not result in a hash page table
332 * entry invalidate and hence can result in DSISR_PROTFAULT.
342 * For wrong access that can result in PROTFAULT, the above vma->vm_flags
463 * can result in fault, which will cause a deadlock when called with
670 int err = regs->result;
H A Dnuma.c530 unsigned long result = 0; local
533 result = (result << 32) | of_read_number(*buf, 1);
536 return result;
/linux-master/arch/powerpc/perf/
H A Dcore-book3s.c116 regs->result = 0;
167 * regs->result to tell us whether to use SIAR.
170 * they have not been setup using perf_read_regs() and so regs->result
173 return ((TRAP(regs) == INTERRUPT_PERFMON) && regs->result);
321 * Overload regs->result to specify whether we should use the MSR (result
322 * is zero) or the SIAR (result is non zero).
346 * and return sequences, which can result in regs_sipr being true for
355 * This can result in confusing backtraces. We still want
374 regs->result
1966 unsigned long type, op, result; local
[all...]
H A Dcore-fsl-emb.c444 unsigned long type, op, result; local
453 result = (config >> 16) & 0xff;
457 result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
460 ev = (*ppmu->cache_events)[type][op][result];
H A Dhv-24x7.c32 /* Whether we have to aggregate result data for some domains. */
109 /* Domains for which more than one result element are returned for each event. */
641 int result; local
644 result = ev_uniq_ord(name, nl, domain, it->name, it->nl,
648 if (result < 0)
650 else if (result > 0)
1193 * result buffer(s), sizeof() is not reliable. Use the actual
1274 * get_count_from_result - get event count from all result elements in result
1276 * If the event corresponding to this result need
[all...]
H A Disa207-common.c114 u64 result = value; local
142 result = -1;
144 result = (exp << 8) | value;
146 return result;
/linux-master/arch/powerpc/platforms/cell/spufs/
H A Dinode.c613 struct fs_parse_result result; local
618 opt = fs_parse(fc, spufs_fs_parameters, param, &result);
624 uid = make_kuid(current_user_ns(), result.uint_32);
630 gid = make_kgid(current_user_ns(), result.uint_32);
636 ctx->mode = result.uint_32 & S_IALLUGO;

Completed in 402 milliseconds

1234567891011>>