Home
last modified time | relevance | path

Searched refs:run (Results 1 – 200 of 710) sorted by relevance

1234

/linux-4.1.27/arch/powerpc/kvm/
Demulate_loadstore.c52 struct kvm_run *run = vcpu->run; in kvmppc_emulate_loadstore() local
73 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1); in kvmppc_emulate_loadstore()
77 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1); in kvmppc_emulate_loadstore()
81 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1); in kvmppc_emulate_loadstore()
86 emulated = kvmppc_handle_store(run, vcpu, in kvmppc_emulate_loadstore()
92 emulated = kvmppc_handle_store(run, vcpu, in kvmppc_emulate_loadstore()
98 emulated = kvmppc_handle_store(run, vcpu, in kvmppc_emulate_loadstore()
105 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1); in kvmppc_emulate_loadstore()
109 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1); in kvmppc_emulate_loadstore()
113 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1); in kvmppc_emulate_loadstore()
[all …]
Dpowerpc.c86 vcpu->run->exit_reason = KVM_EXIT_INTR; in kvmppc_prepare_to_enter()
270 int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu) in kvmppc_emulate_mmio() argument
286 run->exit_reason = KVM_EXIT_MMIO; in kvmppc_emulate_mmio()
717 struct kvm_run *run) in kvmppc_complete_mmio_load() argument
721 if (run->mmio.len > sizeof(gpr)) { in kvmppc_complete_mmio_load()
722 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len); in kvmppc_complete_mmio_load()
727 switch (run->mmio.len) { in kvmppc_complete_mmio_load()
728 case 8: gpr = *(u64 *)run->mmio.data; break; in kvmppc_complete_mmio_load()
729 case 4: gpr = *(u32 *)run->mmio.data; break; in kvmppc_complete_mmio_load()
730 case 2: gpr = *(u16 *)run->mmio.data; break; in kvmppc_complete_mmio_load()
[all …]
Dbook3s_paired_singles.c183 static int kvmppc_emulate_fpr_load(struct kvm_run *run, struct kvm_vcpu *vcpu, in kvmppc_emulate_fpr_load() argument
202 emulated = kvmppc_handle_load(run, vcpu, KVM_MMIO_REG_FPR | rs, in kvmppc_emulate_fpr_load()
227 static int kvmppc_emulate_fpr_store(struct kvm_run *run, struct kvm_vcpu *vcpu, in kvmppc_emulate_fpr_store() argument
262 emulated = kvmppc_handle_store(run, vcpu, val, len, 1); in kvmppc_emulate_fpr_store()
273 static int kvmppc_emulate_psq_load(struct kvm_run *run, struct kvm_vcpu *vcpu, in kvmppc_emulate_psq_load() argument
293 emulated = kvmppc_handle_load(run, vcpu, KVM_MMIO_REG_FPR | rs, in kvmppc_emulate_psq_load()
298 emulated = kvmppc_handle_load(run, vcpu, KVM_MMIO_REG_FQPR | rs, in kvmppc_emulate_psq_load()
316 static int kvmppc_emulate_psq_store(struct kvm_run *run, struct kvm_vcpu *vcpu, in kvmppc_emulate_psq_store() argument
332 emulated = kvmppc_handle_store(run, vcpu, tmp[0], 4, 1); in kvmppc_emulate_psq_store()
335 emulated = kvmppc_handle_store(run, vcpu, val, 8, 1); in kvmppc_emulate_psq_store()
[all …]
De500_emulate.c87 static int kvmppc_e500_emul_ehpriv(struct kvm_run *run, struct kvm_vcpu *vcpu, in kvmppc_e500_emul_ehpriv() argument
94 run->exit_reason = KVM_EXIT_DEBUG; in kvmppc_e500_emul_ehpriv()
95 run->debug.arch.address = vcpu->arch.pc; in kvmppc_e500_emul_ehpriv()
96 run->debug.arch.status = 0; in kvmppc_e500_emul_ehpriv()
116 int kvmppc_core_emulate_op_e500(struct kvm_run *run, struct kvm_vcpu *vcpu, in kvmppc_core_emulate_op_e500() argument
169 emulated = kvmppc_e500_emul_ehpriv(run, vcpu, inst, in kvmppc_core_emulate_op_e500()
184 emulated = kvmppc_booke_emulate_op(run, vcpu, inst, advance); in kvmppc_core_emulate_op_e500()
Dbooke.h84 int kvmppc_booke_emulate_op(struct kvm_run *run, struct kvm_vcpu *vcpu,
109 extern int kvmppc_core_emulate_op_e500(struct kvm_run *run,
117 extern int kvmppc_core_emulate_op_e500(struct kvm_run *run,
Dbooke.c709 vcpu->run->exit_reason = KVM_EXIT_WATCHDOG; in kvmppc_core_check_requests()
714 vcpu->run->epr.epr = 0; in kvmppc_core_check_requests()
716 vcpu->run->exit_reason = KVM_EXIT_EPR; in kvmppc_core_check_requests()
793 static int emulation_exit(struct kvm_run *run, struct kvm_vcpu *vcpu) in emulation_exit() argument
797 er = kvmppc_emulate_instruction(run, vcpu); in emulation_exit()
814 run->hw.hardware_exit_reason = ~0ULL << 32; in emulation_exit()
815 run->hw.hardware_exit_reason |= vcpu->arch.last_inst; in emulation_exit()
827 static int kvmppc_handle_debug(struct kvm_run *run, struct kvm_vcpu *vcpu) in kvmppc_handle_debug() argument
859 run->debug.arch.status = 0; in kvmppc_handle_debug()
860 run->debug.arch.address = vcpu->arch.pc; in kvmppc_handle_debug()
[all …]
Demulate.c212 int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu) in kvmppc_emulate_instruction() argument
283 run->exit_reason = KVM_EXIT_DEBUG; in kvmppc_emulate_instruction()
284 run->debug.arch.address = kvmppc_get_pc(vcpu); in kvmppc_emulate_instruction()
297 emulated = vcpu->kvm->arch.kvm_ops->emulate_op(run, vcpu, inst, in kvmppc_emulate_instruction()
Dbook3s_pr.c530 int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu, in kvmppc_handle_pagefault() argument
639 r = kvmppc_emulate_mmio(run, vcpu); in kvmppc_handle_pagefault()
819 er = kvmppc_emulate_instruction(vcpu->run, vcpu); in kvmppc_emulate_fac()
881 int kvmppc_handle_exit_pr(struct kvm_run *run, struct kvm_vcpu *vcpu, in kvmppc_handle_exit_pr() argument
889 run->exit_reason = KVM_EXIT_UNKNOWN; in kvmppc_handle_exit_pr()
890 run->ready_for_interrupt_injection = 1; in kvmppc_handle_exit_pr()
927 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr); in kvmppc_handle_exit_pr()
979 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr); in kvmppc_handle_exit_pr()
1052 er = kvmppc_emulate_instruction(run, vcpu); in kvmppc_handle_exit_pr()
1067 run->exit_reason = KVM_EXIT_MMIO; in kvmppc_handle_exit_pr()
[all …]
Dbook3s_emulate.c89 int kvmppc_core_emulate_op_pr(struct kvm_run *run, struct kvm_vcpu *vcpu, in kvmppc_core_emulate_op_pr() argument
208 run->papr_hcall.nr = cmd; in kvmppc_core_emulate_op_pr()
211 run->papr_hcall.args[i] = gpr; in kvmppc_core_emulate_op_pr()
214 run->exit_reason = KVM_EXIT_PAPR_HCALL; in kvmppc_core_emulate_op_pr()
315 emulated = kvmppc_emulate_paired_single(run, vcpu); in kvmppc_core_emulate_op_pr()
Dbook3s.h26 extern int kvmppc_core_emulate_op_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
Dbook3s_hv.c796 static int kvmppc_emulate_debug_inst(struct kvm_run *run, in kvmppc_emulate_debug_inst() argument
811 run->exit_reason = KVM_EXIT_DEBUG; in kvmppc_emulate_debug_inst()
812 run->debug.arch.address = kvmppc_get_pc(vcpu); in kvmppc_emulate_debug_inst()
820 static int kvmppc_handle_exit_hv(struct kvm_run *run, struct kvm_vcpu *vcpu, in kvmppc_handle_exit_hv() argument
827 run->exit_reason = KVM_EXIT_UNKNOWN; in kvmppc_handle_exit_hv()
828 run->ready_for_interrupt_injection = 1; in kvmppc_handle_exit_hv()
879 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3); in kvmppc_handle_exit_hv()
881 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i); in kvmppc_handle_exit_hv()
882 run->exit_reason = KVM_EXIT_PAPR_HCALL; in kvmppc_handle_exit_hv()
915 r = kvmppc_emulate_debug_inst(run, vcpu); in kvmppc_handle_exit_hv()
[all …]
Dtrace_hv.h454 TP_PROTO(struct kvm_vcpu *vcpu, struct kvm_run *run),
456 TP_ARGS(vcpu, run),
466 __entry->exit = run->exit_reason;
/linux-4.1.27/arch/mips/kvm/
Dtrap_emul.c43 struct kvm_run *run = vcpu->run; in kvm_trap_emul_handle_cop_unusable() local
57 er = kvm_mips_emulate_fpu_exc(cause, opc, run, vcpu); in kvm_trap_emul_handle_cop_unusable()
64 er = kvm_mips_emulate_inst(cause, opc, run, vcpu); in kvm_trap_emul_handle_cop_unusable()
73 run->exit_reason = KVM_EXIT_INTERNAL_ERROR; in kvm_trap_emul_handle_cop_unusable()
78 run->exit_reason = KVM_EXIT_INTR; in kvm_trap_emul_handle_cop_unusable()
90 struct kvm_run *run = vcpu->run; in kvm_trap_emul_handle_tlb_mod() local
101 er = kvm_mips_handle_tlbmod(cause, opc, run, vcpu); in kvm_trap_emul_handle_tlb_mod()
106 run->exit_reason = KVM_EXIT_INTERNAL_ERROR; in kvm_trap_emul_handle_tlb_mod()
119 run->exit_reason = KVM_EXIT_INTERNAL_ERROR; in kvm_trap_emul_handle_tlb_mod()
126 run->exit_reason = KVM_EXIT_INTERNAL_ERROR; in kvm_trap_emul_handle_tlb_mod()
[all …]
Demulate.c790 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN; in kvm_mips_emul_wait()
977 uint32_t cause, struct kvm_run *run, in kvm_mips_emulate_CP0() argument
1317 struct kvm_run *run, in kvm_mips_emulate_store() argument
1323 void *data = run->mmio.data; in kvm_mips_emulate_store()
1343 if (bytes > sizeof(run->mmio.data)) { in kvm_mips_emulate_store()
1345 run->mmio.len); in kvm_mips_emulate_store()
1347 run->mmio.phys_addr = in kvm_mips_emulate_store()
1350 if (run->mmio.phys_addr == KVM_INVALID_ADDR) { in kvm_mips_emulate_store()
1354 run->mmio.len = bytes; in kvm_mips_emulate_store()
1355 run->mmio.is_write = 1; in kvm_mips_emulate_store()
[all …]
Dmips.c378 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_arch_vcpu_ioctl_run() argument
388 kvm_mips_complete_mmio_load(vcpu, run); in kvm_arch_vcpu_ioctl_run()
404 r = __kvm_mips_vcpu_run(run, vcpu); in kvm_arch_vcpu_ioctl_run()
1222 int kvm_mips_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu) in kvm_mips_handle_exit() argument
1235 run->exit_reason = KVM_EXIT_UNKNOWN; in kvm_mips_handle_exit()
1236 run->ready_for_interrupt_injection = 1; in kvm_mips_handle_exit()
1247 cause, opc, run, vcpu); in kvm_mips_handle_exit()
1253 er = kvm_mips_check_privilege(cause, opc, run, vcpu); in kvm_mips_handle_exit()
1257 run->exit_reason = KVM_EXIT_INTERNAL_ERROR; in kvm_mips_handle_exit()
1282 if (run->exit_reason == KVM_EXIT_IRQ_WINDOW_OPEN) in kvm_mips_handle_exit()
[all …]
DKconfig9 Say Y here to get to see options for using your Linux host to run
/linux-4.1.27/tools/perf/tests/
Dmake57 # $(run) contains all available tests
58 run := make_pure
59 run += make_clean_all
60 run += make_python_perf_so
61 run += make_debug
62 run += make_no_libperl
63 run += make_no_libpython
64 run += make_no_scripts
65 run += make_no_newt
66 run += make_no_slang
[all …]
Dattr.py237 def run(self): member in Test
265 Test(f, options).run()
/linux-4.1.27/arch/s390/kvm/
Ddiag.c28 start = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4]; in diag_release_pages()
29 end = vcpu->run->s.regs.gprs[vcpu->arch.sie_block->ipa & 0xf] + 4096; in diag_release_pages()
78 if (vcpu->run->s.regs.gprs[rx] & 7) in __diag_page_ref_service()
80 rc = read_guest(vcpu, vcpu->run->s.regs.gprs[rx], rx, &parm, sizeof(parm)); in __diag_page_ref_service()
94 vcpu->run->s.regs.gprs[ry] = 8; in __diag_page_ref_service()
108 vcpu->run->s.regs.gprs[ry] = 0; in __diag_page_ref_service()
121 vcpu->run->s.regs.gprs[ry] = 0; in __diag_page_ref_service()
127 vcpu->run->s.regs.gprs[ry] = 4; in __diag_page_ref_service()
156 tid = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4]; in __diag_time_slice_end_directed()
175 unsigned long subcode = vcpu->run->s.regs.gprs[reg] & 0xffff; in __diag_ipl_functions()
[all …]
Dpriv.c212 addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK; in handle_test_block()
227 vcpu->run->s.regs.gprs[0] = 0; in handle_test_block()
301 if (vcpu->run->s.regs.gprs[1]) in handle_tsch()
303 vcpu->run->s.regs.gprs[1]); in handle_tsch()
313 vcpu->run->exit_reason = KVM_EXIT_S390_TSCH; in handle_tsch()
314 vcpu->run->s390_tsch.dequeued = !!inti; in handle_tsch()
316 vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id; in handle_tsch()
317 vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr; in handle_tsch()
318 vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm; in handle_tsch()
319 vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word; in handle_tsch()
[all …]
Dkvm-s390.h83 return (base2 ? vcpu->run->s.regs.gprs[base2] : 0) + disp2; in kvm_s390_get_base_disp_s()
95 *address1 = (base1 ? vcpu->run->s.regs.gprs[base1] : 0) + disp1; in kvm_s390_get_base_disp_sse()
96 *address2 = (base2 ? vcpu->run->s.regs.gprs[base2] : 0) + disp2; in kvm_s390_get_base_disp_sse()
124 return (base2 ? vcpu->run->s.regs.gprs[base2] : 0) + (long)(int)disp2; in kvm_s390_get_base_disp_rsy()
135 return (base2 ? vcpu->run->s.regs.gprs[base2] : 0) + disp2; in kvm_s390_get_base_disp_rs()
Dkvm-s390.c1186 vcpu->run->kvm_valid_regs = KVM_SYNC_PREFIX | in kvm_arch_vcpu_init()
1193 vcpu->run->kvm_valid_regs |= KVM_SYNC_VRS; in kvm_arch_vcpu_init()
1210 restore_fp_ctl(&vcpu->run->s.regs.fpc); in kvm_arch_vcpu_load()
1211 restore_vx_regs((__vector128 *)&vcpu->run->s.regs.vrs); in kvm_arch_vcpu_load()
1216 restore_access_regs(vcpu->run->s.regs.acrs); in kvm_arch_vcpu_load()
1226 save_fp_ctl(&vcpu->run->s.regs.fpc); in kvm_arch_vcpu_put()
1227 save_vx_regs((__vector128 *)&vcpu->run->s.regs.vrs); in kvm_arch_vcpu_put()
1232 save_access_regs(vcpu->run->s.regs.acrs); in kvm_arch_vcpu_put()
1577 memcpy(&vcpu->run->s.regs.gprs, &regs->gprs, sizeof(regs->gprs)); in kvm_arch_vcpu_ioctl_set_regs()
1583 memcpy(&regs->gprs, &vcpu->run->s.regs.gprs, sizeof(regs->gprs)); in kvm_arch_vcpu_ioctl_get_regs()
[all …]
Dsigp.c425 u16 cpu_addr = vcpu->run->s.regs.gprs[r3]; in kvm_s390_handle_sigp()
438 parameter = vcpu->run->s.regs.gprs[r1]; in kvm_s390_handle_sigp()
440 parameter = vcpu->run->s.regs.gprs[r1 + 1]; in kvm_s390_handle_sigp()
451 &vcpu->run->s.regs.gprs[r1]); in kvm_s390_handle_sigp()
473 u16 cpu_addr = vcpu->run->s.regs.gprs[r3]; in kvm_s390_handle_sigp_pei()
Dintercept.c322 rc = guest_translate_address(vcpu, vcpu->run->s.regs.gprs[reg2], in handle_mvpg_pei()
331 rc = guest_translate_address(vcpu, vcpu->run->s.regs.gprs[reg1], in handle_mvpg_pei()
DKconfig10 Say Y here to get to see options for using your Linux host to run other
/linux-4.1.27/fs/befs/
Dendian.h73 befs_block_run run; in fsrun_to_cpu() local
76 run.allocation_group = le32_to_cpu((__force __le32)n.allocation_group); in fsrun_to_cpu()
77 run.start = le16_to_cpu((__force __le16)n.start); in fsrun_to_cpu()
78 run.len = le16_to_cpu((__force __le16)n.len); in fsrun_to_cpu()
80 run.allocation_group = be32_to_cpu((__force __be32)n.allocation_group); in fsrun_to_cpu()
81 run.start = be16_to_cpu((__force __be16)n.start); in fsrun_to_cpu()
82 run.len = be16_to_cpu((__force __be16)n.len); in fsrun_to_cpu()
84 return run; in fsrun_to_cpu()
90 befs_disk_block_run run; in cpu_to_fsrun() local
93 run.allocation_group = cpu_to_le32(n.allocation_group); in cpu_to_fsrun()
[all …]
Ddatastream.c25 befs_blocknr_t blockno, befs_block_run * run);
30 befs_block_run * run);
35 befs_block_run * run);
52 befs_block_run run; in befs_read_datastream() local
60 if (befs_fblock2brun(sb, ds, block, &run) != BEFS_OK) { in befs_read_datastream()
66 bh = befs_bread_iaddr(sb, run); in befs_read_datastream()
91 befs_blocknr_t fblock, befs_block_run * run) in befs_fblock2brun() argument
97 err = befs_find_brun_direct(sb, data, fblock, run); in befs_fblock2brun()
100 err = befs_find_brun_indirect(sb, data, fblock, run); in befs_fblock2brun()
103 err = befs_find_brun_dblindirect(sb, data, fblock, run); in befs_fblock2brun()
[all …]
Dbefs.h150 befs_brun_size(struct super_block *sb, befs_block_run run) in befs_brun_size() argument
152 return BEFS_SB(sb)->block_size * run.len; in befs_brun_size()
Ddatastream.h11 befs_blocknr_t fblock, befs_block_run * run);
Ddebug.c210 befs_dump_run(const struct super_block *sb, befs_disk_block_run run)
214 befs_block_run n = fsrun_to_cpu(sb, run);
/linux-4.1.27/arch/arm/kvm/
Dmmio.c96 int kvm_handle_mmio_return(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_handle_mmio_return() argument
102 if (!run->mmio.is_write) { in kvm_handle_mmio_return()
103 len = run->mmio.len; in kvm_handle_mmio_return()
107 data = mmio_read_buf(run->mmio.data, len); in kvm_handle_mmio_return()
115 trace_kvm_mmio(KVM_TRACE_MMIO_READ, len, run->mmio.phys_addr, in kvm_handle_mmio_return()
162 int io_mem_abort(struct kvm_vcpu *vcpu, struct kvm_run *run, in io_mem_abort() argument
205 run->mmio.is_write = is_write; in io_mem_abort()
206 run->mmio.phys_addr = fault_ipa; in io_mem_abort()
207 run->mmio.len = len; in io_mem_abort()
208 memcpy(run->mmio.data, data_buf, len); in io_mem_abort()
[all …]
Dhandle_exit.c31 static int handle_svc_hyp(struct kvm_vcpu *vcpu, struct kvm_run *run) in handle_svc_hyp() argument
39 static int handle_hvc(struct kvm_vcpu *vcpu, struct kvm_run *run) in handle_hvc() argument
55 static int handle_smc(struct kvm_vcpu *vcpu, struct kvm_run *run) in handle_smc() argument
61 static int handle_pabt_hyp(struct kvm_vcpu *vcpu, struct kvm_run *run) in handle_pabt_hyp() argument
69 static int handle_dabt_hyp(struct kvm_vcpu *vcpu, struct kvm_run *run) in handle_dabt_hyp() argument
88 static int kvm_handle_wfx(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_handle_wfx() argument
139 int handle_exit(struct kvm_vcpu *vcpu, struct kvm_run *run, in handle_exit() argument
166 return exit_handler(vcpu, run); in handle_exit()
170 run->exit_reason = KVM_EXIT_INTERNAL_ERROR; in handle_exit()
Dpsci.c180 memset(&vcpu->run->system_event, 0, sizeof(vcpu->run->system_event)); in kvm_prepare_system_event()
181 vcpu->run->system_event.type = type; in kvm_prepare_system_event()
182 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT; in kvm_prepare_system_event()
Darm.c498 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_arch_vcpu_ioctl_run() argument
510 if (run->exit_reason == KVM_EXIT_MMIO) { in kvm_arch_vcpu_ioctl_run()
511 ret = kvm_handle_mmio_return(vcpu, vcpu->run); in kvm_arch_vcpu_ioctl_run()
520 run->exit_reason = KVM_EXIT_UNKNOWN; in kvm_arch_vcpu_ioctl_run()
542 run->exit_reason = KVM_EXIT_INTR; in kvm_arch_vcpu_ioctl_run()
583 ret = handle_exit(vcpu, run, ret); in kvm_arch_vcpu_ioctl_run()
Dcoproc.c72 int kvm_handle_cp10_id(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_handle_cp10_id() argument
78 int kvm_handle_cp_0_13_access(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_handle_cp_0_13_access() argument
88 int kvm_handle_cp14_load_store(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_handle_cp14_load_store() argument
94 int kvm_handle_cp14_access(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_handle_cp14_access() argument
473 int kvm_handle_cp15_64(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_handle_cp15_64() argument
505 int kvm_handle_cp15_32(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_handle_cp15_32() argument
DKconfig10 Say Y here to get to see options for using your Linux host to run
/linux-4.1.27/Documentation/
Dkselftest.txt9 to run full range of hot-plug tests. In default mode, hot-plug tests run
11 run on a single cpu as opposed to all hotplug capable cpus, and memory
12 hotplug test is run on 2% of hotplug capable memory instead of 10%.
14 Running the selftests (hotplug tests are run in limited mode)
21 To run the tests:
24 To build and run the tests with a single command, use:
33 single test to run, or a list of tests to run.
35 To run only tests targeted for a single subsystem:
38 You can specify multiple tests to build and run:
51 To run the hotplug tests:
Dgcov.txt37 associated code is never run?)
62 larger and run slower. Also CONFIG_GCOV_PROFILE_ALL may not be supported
119 Kernel modules may contain cleanup code which is only run during
131 At run-time, a user can also choose to discard data for an unloaded
139 box for setups where kernels are built and run on the same machine. In
143 a) gcov is run on the TEST machine
162 b) gcov is run on the BUILD machine
Dsparse.txt56 run to use the "context" tracking feature of sparse, applied to
97 Do a kernel make with "make C=1" to run sparse on all the C files that get
98 recompiled, or use "make C=2" to run sparse on the files whether they need to
Dcoccinelle.txt32 Once you have it, run the following command:
73 To make a report for every semantic patch, run the following command:
77 To produce patches, run:
97 By default, coccicheck tries to run as parallel as possible. To change
98 the parallelism, set the J= variable. For example, to run across 4 CPUs:
Dlockup-watchdogs.txt10 details), without giving other tasks a chance to run. The current
20 details), without letting other interrupts have a chance to run.
Dkernel-per-CPU-kthreads.txt29 # run workload
83 from being initiated from tasks that might run on the CPU to
90 from being initiated from tasks that might run on the CPU to
97 from being initiated from tasks that might run on the CPU to
109 on that CPU. If a thread that expects to run on the de-jittered
180 use of each CPU's workqueues to run its cache_reap()
201 slowly. Of course, you can also run your workload at
Dhw_random.txt29 a security-conscious person would run fitness tests on the
33 run them by hand with a "rngtest" utility.
/linux-4.1.27/fs/jbd2/
Dcommit.c443 stats.run.rs_wait = commit_transaction->t_max_wait; in jbd2_journal_commit_transaction()
444 stats.run.rs_request_delay = 0; in jbd2_journal_commit_transaction()
445 stats.run.rs_locked = jiffies; in jbd2_journal_commit_transaction()
447 stats.run.rs_request_delay = in jbd2_journal_commit_transaction()
449 stats.run.rs_locked); in jbd2_journal_commit_transaction()
450 stats.run.rs_running = jbd2_time_diff(commit_transaction->t_start, in jbd2_journal_commit_transaction()
451 stats.run.rs_locked); in jbd2_journal_commit_transaction()
536 stats.run.rs_flushing = jiffies; in jbd2_journal_commit_transaction()
537 stats.run.rs_locked = jbd2_time_diff(stats.run.rs_locked, in jbd2_journal_commit_transaction()
538 stats.run.rs_flushing); in jbd2_journal_commit_transaction()
[all …]
Djournal.c968 jiffies_to_msecs(s->stats->run.rs_wait / s->stats->ts_tid)); in jbd2_seq_info_show()
971 jiffies_to_msecs(s->stats->run.rs_request_delay / in jbd2_seq_info_show()
974 jiffies_to_msecs(s->stats->run.rs_running / s->stats->ts_tid)); in jbd2_seq_info_show()
976 jiffies_to_msecs(s->stats->run.rs_locked / s->stats->ts_tid)); in jbd2_seq_info_show()
978 jiffies_to_msecs(s->stats->run.rs_flushing / s->stats->ts_tid)); in jbd2_seq_info_show()
980 jiffies_to_msecs(s->stats->run.rs_logging / s->stats->ts_tid)); in jbd2_seq_info_show()
984 s->stats->run.rs_handle_count / s->stats->ts_tid); in jbd2_seq_info_show()
986 s->stats->run.rs_blocks / s->stats->ts_tid); in jbd2_seq_info_show()
988 s->stats->run.rs_blocks_logged / s->stats->ts_tid); in jbd2_seq_info_show()
/linux-4.1.27/arch/arm64/include/asm/
Dkvm_coproc.h41 int kvm_handle_cp14_load_store(struct kvm_vcpu *vcpu, struct kvm_run *run);
42 int kvm_handle_cp14_32(struct kvm_vcpu *vcpu, struct kvm_run *run);
43 int kvm_handle_cp14_64(struct kvm_vcpu *vcpu, struct kvm_run *run);
44 int kvm_handle_cp15_32(struct kvm_vcpu *vcpu, struct kvm_run *run);
45 int kvm_handle_cp15_64(struct kvm_vcpu *vcpu, struct kvm_run *run);
46 int kvm_handle_sys_reg(struct kvm_vcpu *vcpu, struct kvm_run *run);
Dkvm_mmio.h34 int kvm_handle_mmio_return(struct kvm_vcpu *vcpu, struct kvm_run *run);
35 int io_mem_abort(struct kvm_vcpu *vcpu, struct kvm_run *run,
/linux-4.1.27/arch/arm/include/asm/
Dkvm_coproc.h31 int kvm_handle_cp10_id(struct kvm_vcpu *vcpu, struct kvm_run *run);
32 int kvm_handle_cp_0_13_access(struct kvm_vcpu *vcpu, struct kvm_run *run);
33 int kvm_handle_cp14_load_store(struct kvm_vcpu *vcpu, struct kvm_run *run);
34 int kvm_handle_cp14_access(struct kvm_vcpu *vcpu, struct kvm_run *run);
35 int kvm_handle_cp15_32(struct kvm_vcpu *vcpu, struct kvm_run *run);
36 int kvm_handle_cp15_64(struct kvm_vcpu *vcpu, struct kvm_run *run);
Dkvm_mmio.h31 int kvm_handle_mmio_return(struct kvm_vcpu *vcpu, struct kvm_run *run);
32 int io_mem_abort(struct kvm_vcpu *vcpu, struct kvm_run *run,
/linux-4.1.27/tools/testing/selftests/ftrace/
DREADME10 At first, you need to be the root user to run this script.
11 To run all testcases:
15 To run specific testcases:
19 Or you can also run testcases under given directory:
31 * Take care with side effects as the tests are run with root privilege.
33 * The tests should not run for a long period of time (more than 1 min.)
38 * The test cases should run on dash (busybox shell) for testing on
41 * Note that the tests are run with "set -e" (errexit) option. If any
64 * UNTESTED: The test was not run, currently just a placeholder.
74 You can also run samples as below:
/linux-4.1.27/arch/arm64/kvm/
Dhandle_exit.c36 static int handle_hvc(struct kvm_vcpu *vcpu, struct kvm_run *run) in handle_hvc() argument
52 static int handle_smc(struct kvm_vcpu *vcpu, struct kvm_run *run) in handle_smc() argument
70 static int kvm_handle_wfx(struct kvm_vcpu *vcpu, struct kvm_run *run) in kvm_handle_wfx() argument
120 int handle_exit(struct kvm_vcpu *vcpu, struct kvm_run *run, in handle_exit() argument
140 return exit_handler(vcpu, run); in handle_exit()
144 run->exit_reason = KVM_EXIT_INTERNAL_ERROR; in handle_exit()
DKconfig10 Say Y here to get to see options for using your Linux host to run
/linux-4.1.27/arch/mips/include/asm/
Dkvm_host.h640 extern int __kvm_mips_vcpu_run(struct kvm_run *run, struct kvm_vcpu *vcpu);
675 struct kvm_run *run,
680 struct kvm_run *run,
707 struct kvm_run *run,
712 struct kvm_run *run,
717 struct kvm_run *run,
722 struct kvm_run *run,
727 struct kvm_run *run,
732 struct kvm_run *run,
737 struct kvm_run *run,
[all …]
/linux-4.1.27/Documentation/dmaengine/
Ddmatest.txt19 % modprobe dmatest channel=dma0chan0 timeout=2000 iterations=1 run=1
26 % echo 1 > /sys/module/dmatest/parameters/run
30 dmatest.channel=dma0chan0 dmatest.timeout=2000 dmatest.iterations=1 dmatest.run=1
43 % cat /sys/module/dmatest/parameters/run
45 To wait for test completion userpace can poll 'run' until it is false, or use
47 initialization to pause until a test run has completed, while reading
54 % modprobe dmatest run=1 iterations=42 wait=1
57 % modprobe dmatest run=1 iterations=42
65 re-run with the same or different parameters. For the details see the above
69 case. You always could check them at run-time by running
/linux-4.1.27/arch/arm/mach-iop32x/
DKconfig13 Say Y here if you want to run your kernel on the GLAN Tank
20 Say Y here if you want to run your kernel on the Intel IQ80321
27 Say Y here if you want to run your kernel on the Intel EP80219
34 Say Y here if you want to run your kernel on the Thecus n2100
40 Say Y here if you want to run your kernel on the Lanner EM7210
/linux-4.1.27/arch/arm/mach-gemini/
DKconfig9 Say Y here if you intend to run this kernel on a
16 Say Y here if you intend to run this kernel on a
23 Say Y here if you intend to run this kernel on a
30 Say Y here if you intend to run this kernel on a
/linux-4.1.27/arch/cris/arch-v10/kernel/
Dtime.c150 IO_STATE( R_TIMER_CTRL, tm1, run) | in timer_interrupt()
153 IO_STATE( R_TIMER_CTRL, tm0, run) | in timer_interrupt()
215 IO_STATE( R_TIMER_CTRL, tm1, run) | in time_init()
218 IO_STATE( R_TIMER_CTRL, tm0, run) | in time_init()
235 IO_STATE(R_TIMER_CTRL, tm1, run) | in time_init()
238 IO_STATE(R_TIMER_CTRL, tm0, run) | in time_init()
/linux-4.1.27/arch/cris/include/arch-v32/arch/hwregs/
Dbif_dma_defs.h115 unsigned int run : 1; member
133 unsigned int run : 1; member
164 unsigned int run : 1; member
182 unsigned int run : 1; member
214 unsigned int run : 1; member
232 unsigned int run : 1; member
263 unsigned int run : 1; member
281 unsigned int run : 1; member
/linux-4.1.27/arch/cris/include/arch-v32/mach-fs/mach/hwregs/
Dbif_dma_defs.h115 unsigned int run : 1; member
133 unsigned int run : 1; member
164 unsigned int run : 1; member
182 unsigned int run : 1; member
214 unsigned int run : 1; member
232 unsigned int run : 1; member
263 unsigned int run : 1; member
281 unsigned int run : 1; member
/linux-4.1.27/Documentation/video4linux/
Dpxa_camera.txt37 +-> | QCI: stop | ------------------> | QCI: run | <------------+
47 | | QCI: run | +-----> | QCI: run | <-+ |
48 | | DMA: stop | / | DMA: run | | |
57 +-- | QCI: run | | QCI: run | --+ |
58 | DMA: run | | DMA: run | |
66 | QCI: run | | QCI: stop | --------------+
67 | DMA: run | | DMA: stop |
77 - "DMA: run" means at least 1 DMA channel is still running
/linux-4.1.27/drivers/mmc/card/
Dmmc_test.c982 int (*run)(struct mmc_test_card *); member
2359 .run = mmc_test_basic_write,
2364 .run = mmc_test_basic_read,
2370 .run = mmc_test_verify_write,
2377 .run = mmc_test_verify_read,
2384 .run = mmc_test_multi_write,
2391 .run = mmc_test_multi_read,
2398 .run = mmc_test_pow2_write,
2405 .run = mmc_test_pow2_read,
2412 .run = mmc_test_weird_write,
[all …]
/linux-4.1.27/fs/omfs/
Dbitmap.c138 int i, run, bit; in omfs_allocate_range() local
150 run = count_run(&sbi->s_imap[i], bits_per_entry, in omfs_allocate_range()
153 if (run >= min_request) in omfs_allocate_range()
155 bit += run; in omfs_allocate_range()
163 *return_size = run; in omfs_allocate_range()
164 ret = set_run(sb, i, bits_per_entry, bit, run, 1); in omfs_allocate_range()
/linux-4.1.27/drivers/tty/
Dtty_audit.c304 size_t run; in tty_audit_add_data() local
306 run = N_TTY_BUF_SIZE - buf->valid; in tty_audit_add_data()
307 if (run > size) in tty_audit_add_data()
308 run = size; in tty_audit_add_data()
309 memcpy(buf->data + buf->valid, data, run); in tty_audit_add_data()
310 buf->valid += run; in tty_audit_add_data()
311 data += run; in tty_audit_add_data()
312 size -= run; in tty_audit_add_data()
/linux-4.1.27/drivers/acpi/apei/
Derst.c302 .run = apei_exec_read_register,
306 .run = apei_exec_read_register_value,
310 .run = apei_exec_write_register,
314 .run = apei_exec_write_register_value,
318 .run = apei_exec_noop,
322 .run = erst_exec_load_var1,
326 .run = erst_exec_load_var2,
330 .run = erst_exec_store_var1,
334 .run = erst_exec_add,
338 .run = erst_exec_subtract,
[all …]
Dapei-base.c166 apei_exec_ins_func_t run; in __apei_exec_run() local
184 !ctx->ins_table[entry->instruction].run) { in __apei_exec_run()
190 run = ctx->ins_table[entry->instruction].run; in __apei_exec_run()
191 rc = run(ctx, entry); in __apei_exec_run()
225 if (ins >= ctx->instructions || !ins_table[ins].run) { in apei_exec_for_each_entry()
Deinj.c122 .run = apei_exec_read_register,
126 .run = apei_exec_read_register_value,
130 .run = apei_exec_write_register,
134 .run = apei_exec_write_register_value,
138 .run = apei_exec_noop,
/linux-4.1.27/arch/arm/mach-pxa/
DKconfig103 Say Y here if you intend to run this kernel on a Cogent
142 Say Y here if you intend to run this kernel on
304 Say Y here if you intend to run this kernel on a
359 Say Y here if you intend to run this kernel on a Palm Tungsten|E2
368 Say Y here if you intend to run this kernel on a Palm Tungsten|C
379 Say Y here if you intend to run this kernel on a Palm Tungsten|T5
390 Say Y here if you intend to run this kernel on a Palm T|X
401 Say Y here if you intend to run this kernel on Palm Zire 72
412 Say Y here if you intend to run this kernel on a Palm LifeDrive
428 Say Y here if you intend to run this kernel on Palm Centro 685 (GSM)
[all …]
/linux-4.1.27/arch/arm/mach-footbridge/
DKconfig14 Say Y here if you intend to run this kernel on the CATS.
25 Say Y here if you intend to run this kernel on the Compaq
44 Say Y here if you intend to run this kernel on the EBSA285 card
58 Say Y here if you intend to run this kernel on the EBSA285 card
73 Say Y here if you intend to run this kernel on the Rebel.COM
/linux-4.1.27/Documentation/scheduler/
Dsched-rt-group.txt53 in a given period. We allocate this "run time" for each realtime group which
56 Any time not allocated to a realtime group will be used to run normal priority
57 tasks (SCHED_OTHER). Any allocated run time not used will also be picked up by
63 time dedicated for the graphics. We can then give this group a run time of 0.8
66 This way the graphics group will have a 0.04s period with a 0.032s run time
69 0.00015s. So this group can be scheduled with a period of 0.005s and a run time
102 * A run time of -1 specifies runtime == period, ie. no limit.
110 SCHED_OTHER (non-RT tasks). These defaults were chosen so that a run-away
115 period from /proc/sys/kernel/sched_rt_period_us and a run time of 0. If you
121 not be able to run realtime tasks as any user other than root until you have
[all …]
Dsched-bwc.txt14 hierarchy will be throttled and are not allowed to run again until the next
26 cpu.cfs_quota_us: the total available run-time within a period (in microseconds)
53 For efficiency run-time is transferred between the global pool and CPU local
Dsched-domains.txt11 CPUs will never be given tasks to run unless the CPUs allowed mask is
28 In kernel/sched/core.c, trigger_load_balance() is run periodically on each CPU
31 balancing workhorse, run_rebalance_domains()->rebalance_domains(), is then run
Dsched-design-CFS.txt17 power and which can run each task at precise equal speed, in parallel, each at
21 On real hardware, we can run only a single task at once, so we have to
40 very simple: it always tries to run the task with the smallest p->se.vruntime
123 would, thereby allowing tasks to run longer and make better use of
184 This function chooses the most appropriate task eligible to run next.
/linux-4.1.27/arch/arm/mach-clps711x/
DKconfig8 Say Y if you intend to run the kernel on the autronix autcpu12
27 Say Y here if you intend to run this kernel on a Cirrus Logic EDB-7211
33 Say Y here if you intend to run this kernel on the ARM Prospector
/linux-4.1.27/fs/
DKconfig.binfmt8 systems. Saying Y here will enable your kernel to run ELF binaries
12 to run executables from different architectures or operating systems
13 however) and makes building run-time libraries very easy. Many new
21 here, you still can't run any ELF binaries (they just crash), then
44 It is also possible to run FDPIC ELF binaries on MMU linux also.
76 gets loaded, you cannot run scripts. Thus, if you want to load this
115 who need to run binaries from that era.
154 programs that need an interpreter to run like Java, Python, .NET or
155 Emacs-Lisp. It's also useful if you often run DOS executables under
181 need debugging or only ever run flawless code.
/linux-4.1.27/fs/btrfs/
DKconfig61 during the run of a regression test, say N
64 bool "Btrfs will run sanity tests upon loading"
67 This will run some basic sanity tests on the free space cache
78 Enable run-time debugging support for the btrfs filesystem. This may
88 Enable run-time assertion checking. This will result in panics if
/linux-4.1.27/tools/perf/
Dbuiltin-stat.c458 aggr->run += count->run; in read_cb()
480 aggr->val = aggr->ena = aggr->run = 0; in read_counter_aggr()
775 static void print_running(u64 run, u64 ena) in print_running() argument
780 run, in print_running()
782 ena ? 100.0 * run / ena : 100.0); in print_running()
783 } else if (run != ena) { in print_running()
784 fprintf(output, " (%.2f%%)", 100.0 * run / ena); in print_running()
1232 u64 ena, run, val; in print_aggr() local
1240 val = ena = run = 0; in print_aggr()
1248 run += counter->counts->cpu[cpu].run; in print_aggr()
[all …]
/linux-4.1.27/arch/arm/mach-iop33x/
DKconfig10 Say Y here if you want to run your kernel on the Intel IQ80331
16 Say Y here if you want to run your kernel on the Intel IQ80332
/linux-4.1.27/scripts/
DKbuild.include85 # try-run
86 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
89 try-run = $(shell set -e; \
101 as-option = $(call try-run,\
107 as-instr = $(call try-run,\
113 cc-option = $(call try-run,\
118 cc-option-yn = $(call try-run,\
128 cc-disable-warning = $(call try-run,\
144 cc-ldoption = $(call try-run,\
149 ld-option = $(call try-run,\
[all …]
/linux-4.1.27/tools/perf/Documentation/
Dperf-script.txt26 You can also run a set of pre-canned scripts that aggregate and
29 record and run those scripts:
37 'perf script report <script> [args]' to run and display the results
40 extension. The perf.data output from a previous run of 'perf script
46 record the events required for <script> and to run the <script>
60 <top-script> and to run the <top-script> using 'live-mode'
71 information on how to write and run your own trace scripts.
102 Force system-wide collection. Scripts run without a <command>
103 normally use -a by default, while scripts run with a <command>
104 normally don't - this option allows the latter to be run in
Dperf-bench.txt21 Specify amount of times to repeat the run (default 10).
92 % perf bench sched messaging # run with default
94 (10 groups == 400 processes run)
100 (20 groups == 800 threads run)
Dperf-test.txt21 To run just specific tests, inform test name fragments or the numbers obtained
Dandroid.txt50 You need to run make with the NDK toolchain and sysroot defined above:
70 Some perf features need environment variables to run properly.
/linux-4.1.27/tools/testing/selftests/rcutorture/bin/
Dkvm-recheck-rcu.sh65 print_bug $nclosecalls "Reader Batch close calls in" $(($dur/60)) minute run: $i
67 print_warning $nclosecalls "Reader Batch close calls in" $(($dur/60)) minute run: $i
Dkvm-test-1-run.sh43 T=/tmp/kvm-test-1-run.sh.$$
167 echo Build-only run specified, boot/test omitted.
Dkvm-recheck.sh60 echo Build-only run, no boot/test
/linux-4.1.27/net/decnet/
DKconfig9 packet communications over which run a variety of services similar
10 to those which run over TCP/IP.
21 in configuration at run time.
/linux-4.1.27/arch/blackfin/kernel/
Dnmi.c123 int run; in nmi_wdt_set_timeout() local
133 run = nmi_wdt_running(); in nmi_wdt_set_timeout()
136 if (run) in nmi_wdt_set_timeout()
/linux-4.1.27/arch/arm/mach-moxart/
DKconfig10 Say Y here if you want to run your kernel on hardware with a
22 Say Y here if you intend to run this kernel on a MOXA
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-kernel-mm-ksm13 What: /sys/kernel/mm/ksm/run
36 run: write 0 to disable ksm, read 0 while ksm is disabled.
37 write 1 to run ksm, read 1 while ksm is running.
Dsysfs-platform-dell-laptop37 For example, to enable the keyboard as trigger run:
60 For example, to set the timeout to 10 minutes run:
Dsysfs-devices-power40 space to control the run-time power management of the device.
45 + "auto\n" to allow the device to be power managed at run time;
51 from power managing the device at run time. Doing that while
193 becomes idle at run time; they want the device to remain
196 prevent the device from being suspended at run time (similar
211 device, after it has been suspended at run time, from a resume
Dsysfs-platform-eeepc-laptop10 If you run X11, you should use xrandr instead.
/linux-4.1.27/Documentation/dvb/
Dlmedm04.txt12 and run
23 and run
39 and run
Dopera-firmware.txt9 Then run
Dfaq.txt22 by running apps/scan/scan. If you run scan on an unknown network
36 MPEG2 transport streams (TS) directly. Then, run
116 dvb_net won't get any input; thus you have to run tcpdump
/linux-4.1.27/arch/score/
DKconfig.debug20 bool "Enable run-time debugging"
23 If you say Y here, some debugging macros will do run-time checking.
/linux-4.1.27/Documentation/leds/
Dleds-lp5523.txt31 There are two ways to run LED patterns.
36 enginex_mode : disabled, load, run
44 echo "run" > engine3_mode
Dleds-lp55xx.txt65 To load and run the pattern, the programming sequence is following.
69 (4) Mode change to run
80 For example, run blinking pattern in engine #1 of LP5521
87 For example, run blinking pattern in engine #3 of LP55231
118 To run programmed pattern, 'run_engine' attribute should be enabled.
188 Then, mode_1 and mode_2 can be run via through the sysfs.
Dleds-lp5521.txt21 There are two ways to run LED patterns.
26 enginex_mode : disabled, load, run
33 echo "run" > engine3_mode
Dledtrig-transient.txt41 that are active at the time driver gets suspended, continue to run, without
115 allow user app to set the time once and activate it to run it once for the
123 any, continues to run for the specified time.
126 continues to run for the specified time.
142 echo 1 > activate - start timer = duration to run once
143 echo 1 > activate - start timer = duration to run once
Dleds-lp5562.txt40 For example, run blinking green channel pattern,
48 To run a blinking white pattern,
/linux-4.1.27/drivers/s390/scsi/
Dzfcp_dbf.c306 rec->u.run.fsf_req_id = erp->fsf_req_id; in zfcp_dbf_rec_run()
307 rec->u.run.rec_status = erp->status; in zfcp_dbf_rec_run()
308 rec->u.run.rec_step = erp->step; in zfcp_dbf_rec_run()
309 rec->u.run.rec_action = erp->action; in zfcp_dbf_rec_run()
312 rec->u.run.rec_count = in zfcp_dbf_rec_run()
315 rec->u.run.rec_count = atomic_read(&erp->port->erp_counter); in zfcp_dbf_rec_run()
317 rec->u.run.rec_count = atomic_read(&erp->adapter->erp_counter); in zfcp_dbf_rec_run()
/linux-4.1.27/arch/arm/mach-ks8695/
DKconfig9 Say 'Y' here if you want your kernel to run on the original
15 Say 'Y' here if you want your kernel to run on the D-Link
21 say 'Y' here if you want your kernel to run on the Brivo
/linux-4.1.27/Documentation/watchdog/
Dpcwd-watchdog.txt8 the WDT card does, only it doesn't require an IRQ to run. Furthermore,
24 to run the program with an "&" to run it in the background!)
/linux-4.1.27/arch/openrisc/
DREADME.openrisc23 In order to build and run Linux for OpenRISC, you'll need at least a basic
34 or1ksim is the architectural simulator which will allow you to actually run
54 together with your freshly built vmlinux, run your kernel with the following
/linux-4.1.27/drivers/spi/
Dspi-bfin-sport.c73 bool run; member
492 if (list_empty(&drv_data->queue) || !drv_data->run) { in bfin_sport_spi_pump_messages()
549 if (!drv_data->run) { in bfin_sport_spi_transfer()
561 if (drv_data->run && !drv_data->busy) in bfin_sport_spi_transfer()
665 drv_data->run = false; in bfin_sport_spi_init_queue()
689 if (drv_data->run || drv_data->busy) { in bfin_sport_spi_start_queue()
694 drv_data->run = true; in bfin_sport_spi_start_queue()
720 drv_data->run = false; in bfin_sport_spi_stop_queue()
/linux-4.1.27/drivers/usb/usbip/
DKconfig22 which is run on the remote machine.
31 This enables the USB/IP host driver, which is run on the
/linux-4.1.27/tools/testing/selftests/rcutorture/doc/
Dinitrd.txt49 mount -t tmpfs -o "nosuid,size=20%,mode=0755" tmpfs /run
50 mkdir /run/initramfs
52 ln -s /run/initramfs /dev/.initramfs
/linux-4.1.27/arch/powerpc/include/asm/
Dkvm_ppc.h75 extern int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
78 extern int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
81 extern int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
92 extern int kvmppc_emulate_instruction(struct kvm_run *run,
95 extern int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu);
238 int (*vcpu_run)(struct kvm_run *run, struct kvm_vcpu *vcpu);
264 int (*emulate_op)(struct kvm_run *run, struct kvm_vcpu *vcpu,
Dkvm_book3s.h130 extern int kvmppc_book3s_hv_page_fault(struct kvm_run *run,
156 extern int kvmppc_emulate_paired_single(struct kvm_run *run, struct kvm_vcpu *vcpu);
/linux-4.1.27/Documentation/vm/
Dksm.txt72 set run 2 to unmerge pages first, then to 1 after changing
76 run - set 0 to stop ksmd from running but keep merged pages,
77 set 1 to run ksmd e.g. "echo 1 > /sys/kernel/mm/ksm/run",
79 but leave mergeable areas registered for next run
Dtranshuge.txt26 components: 1) the TLB miss will run faster (especially with
34 miss is going to run faster.
89 only run faster.
145 can set this to 0 to run khugepaged at 100% utilization of one core):
231 compact_stall is incremented every time a process stalls to run
259 get_user_pages and follow_page if run on a hugepage, will return the
313 If you're not walking pagetables but you run into a physical hugepage
344 mm->page_table_lock and re-run pmd_trans_huge. Taking the
346 regular pmd from under you (split_huge_page can run in parallel to the
349 before. Otherwise you should run pmd_trans_splitting on the pmd. In
[all …]
/linux-4.1.27/Documentation/virtual/
Dparavirt_ops.txt9 allows a single kernel binary to run on all supported execution environments
14 functionalities in various areas. pv-ops allows for optimizations at run
/linux-4.1.27/tools/testing/selftests/net/
Drun_afpackettests4 echo $msg must be run as root >&2
/linux-4.1.27/arch/arm/mach-tegra/
Dsleep.S154 mov r0, #(2 << 28) @ burst policy = run mode
155 orr r0, r0, #(4 << 4) @ use PLLP in run mode burst
/linux-4.1.27/Documentation/networking/mac80211_hwsim/
Dwpa_supplicant.conf1 ctrl_interface=/var/run/wpa_supplicant
/linux-4.1.27/Documentation/hwmon/
Duserspace-tools28 2) run sensors-detect script, it will tell you what modules you need to load.
29 3) load them and run "sensors" command, you should see some results.
Dsubmitting-patches26 architecture. If run-time testing was not achieved, it should be written
52 formatting is clean. If unsure about formatting in your new driver, run it
78 Keep in mind that the detect function will run for all drivers supporting an
Dg76251 it run at full speed.
56 entry (0 stops the fan, 255 makes it run at full speed). In closed-loop mode
/linux-4.1.27/include/linux/
Dphy.h593 int (*run)(struct phy_device *phydev); member
771 int (*run)(struct phy_device *));
773 int (*run)(struct phy_device *));
775 int (*run)(struct phy_device *));
/linux-4.1.27/drivers/net/phy/
Dphy_device.c76 int (*run)(struct phy_device *)) in phy_register_fixup()
86 fixup->run = run; in phy_register_fixup()
98 int (*run)(struct phy_device *)) in phy_register_fixup_for_uid()
100 return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run); in phy_register_fixup_for_uid()
106 int (*run)(struct phy_device *)) in phy_register_fixup_for_id()
108 return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run); in phy_register_fixup_for_id()
137 int err = fixup->run(phydev); in phy_scan_fixups()
/linux-4.1.27/tools/usb/usbip/
DINSTALL23 you can run in the future to recreate the current configuration, and a
55 3. Optionally, type `make check' to run any self-tests that come with
94 directory where you want the object files and executables to go and run
145 but needs to determine by the type of machine the package will run on.
146 Usually, assuming the package is built to be run on the _same_
169 eventually be run) with `--host=TYPE'.
186 environment passed to `configure'. However, some packages may run
/linux-4.1.27/arch/mn10300/kernel/
Dmn10300-serial-low.S37 # - intended to run at interrupt priority 1 (not affected by local_irq_disable)
60 # - intended to run at interrupt priority 1 (not affected by local_irq_disable)
107 # - intended to run at interrupt priority 1 (not affected by local_irq_disable)
Dprofile-low.S30 # - intended to run at interrupt priority 1
Dgdb-io-serial-low.S29 # - intended to run at interrupt priority 0
Dgdb-io-ttysm-low.S29 # - intended to run at interrupt priority 0
/linux-4.1.27/Documentation/x86/x86_64/
Dmachinecheck15 log then mcelog should run to collect and decode machine check entries
16 from /dev/mcelog. Normally mcelog should be run regularly from a cronjob.
69 Program to run when a machine check event is detected.
/linux-4.1.27/Documentation/s390/
Dqeth.txt11 When run on HiperSockets Bridge Capable Port hardware, and the state
23 When run on HiperSockets Bridge Capable Port hardware with host address
/linux-4.1.27/drivers/remoteproc/
DKconfig28 use-cases to run on your platform (multimedia codecs are
55 use-cases to run on your platform (multimedia codecs are
/linux-4.1.27/fs/sysv/
DKconfig12 to run these binaries, you will want to install linux-abi which is
13 a set of kernel modules that lets you run SCO, Xenix, Wyse,
/linux-4.1.27/drivers/net/slip/
DKconfig27 want to run term (term is a program which gives you almost full
72 Just occasionally you may need to run IP over hostile serial
77 end of the link as well. It's good enough, for example, to run IP
/linux-4.1.27/drivers/md/
Dfaulty.c302 static int run(struct mddev *mddev) in run() function
348 .run = run,
Dmd.h499 int (*run)(struct mddev *mddev); member
603 void (*run) (struct md_thread *thread); member
627 void (*run)(struct md_thread *thread),
/linux-4.1.27/Documentation/locking/
Dlocktorture.txt65 shutdown_secs The number of seconds to run the test before terminating
91 stutter The length of time to run the test before pausing for this
93 to run and pause for (roughly) five-second intervals.
94 Specifying "stutter=0" causes the test to run continuously
/linux-4.1.27/Documentation/early-userspace/
DREADME10 run inside the kernel itself.
55 usr/gen_init_cpio utility (run 'usr/gen_init_cpio --help' to get the
131 final root filesystem, based on the root= option and optional init= to run
146 To maintain backwards compatibility, the /init binary will only run if it
148 init/main.c:init() will run prepare_namespace() to mount the final root
/linux-4.1.27/Documentation/PCI/
DPCIEBUS-HOWTO.txt45 drivers load and run on a PCI-PCI Bridge device simultaneously
54 - Allow multiple service drivers to run simultaneously on
60 - Allow one service driver to run on multiple PCI-PCI Bridge
161 allowed to run simultaneously, below lists a few of possible resource
173 behavior. For example, two service drivers run simultaneously on the
176 any other service drivers have run on this Root Port. If either one
/linux-4.1.27/arch/x86/
DKconfig.cpu13 that can run on all supported x86 CPU types (albeit not
20 The kernel will not necessarily run on earlier architectures than
21 the one you have chosen, e.g. a Pentium optimized kernel will run on
397 You need this enabled if you want your kernel to run on an
411 You need this enabled if you want your kernel to run on a
424 You need this enabled if you want your kernel to run on an
437 You need this enabled if you want your kernel to run on a
451 You need this enabled if you want your kernel to run on a
465 You need this enabled if you want your kernel to run on a
/linux-4.1.27/Documentation/power/
Druntime_pm.txt73 the PM core that it is safe to run the ->runtime_suspend(), ->runtime_resume()
101 -EAGAIN, the PM core regards this as a fatal error and will refuse to run
113 should be enabled for all input devices put into low-power states at run time.
129 fatal error and will refuse to run the helper functions described in Section
252 - set if ->runtime_resume() is about to be run while ->runtime_suspend() is
266 power manage the device at run time via the /sys/devices/.../power/control
314 then run pm_runtime_autosuspend(dev) and return its result
367 - increment the device's usage counter, run pm_request_resume(dev) and
371 - increment the device's usage counter, run pm_runtime_resume(dev) and
378 - decrement the device's usage counter; if the result is 0 then run
[all …]
/linux-4.1.27/kernel/
DKconfig.preempt31 applications to run more 'smoothly' even when the system is
47 This allows applications to run more 'smoothly' even when the
Dstop_machine.c440 int run; in cpu_stop_should_run() local
443 run = !list_empty(&stopper->works); in cpu_stop_should_run()
445 return run; in cpu_stop_should_run()
/linux-4.1.27/Documentation/cpu-freq/
Duser-guide.txt133 what speed the processor shall run within the boundaries. One such
136 the processor shall run at.
151 frequency the processor can run at(in kHz)
153 frequency the processor can run at(in kHz)
Dboost.txt37 functionality at least for the benchmark's run-time the system will run
/linux-4.1.27/tools/power/cpupower/bench/
DREADME-BENCH35 will be run X time in a row (cycles):
56 takes on this machine and needs to be run in a loop using the performance
66 This shows expected results of the first two test run rounds from
/linux-4.1.27/Documentation/RCU/
Dtorture.txt8 be loaded to run a torture test. The test periodically outputs
70 nfakewriters This is the number of RCU fake writer threads to run. Fake
104 shutdown_secs The number of seconds to run the test before terminating
111 This stall happens only once per rcutorture run.
113 repeatedly run rcutorture. The default for stall_cpu
134 stutter The length of time to run the test before pausing for this
136 to run and pause for (roughly) five-second intervals.
137 Specifying "stutter=0" causes the test to run continuously
/linux-4.1.27/arch/arc/
DKconfig.debug11 threads to run on the system and also increase the pressure
/linux-4.1.27/drivers/lguest/
DKconfig6 This is a very simple module which allows you to run
/linux-4.1.27/Documentation/kbuild/
Dheaders_install.txt19 should run on a newer kernel (although it may not have access to new
23 The "make headers_install" command can be run in the top level directory of the
/linux-4.1.27/Documentation/networking/
Dx25.txt5 Packet Layer and a LAPB module to allow for "normal" X.25 to be run using
19 written which will allow X.25 to be run over an Ethernet (or Token Ring) and
Dcs89x0.txt80 or loaded at run-time as a device driver module.
176 another adapter exists. To change the adapter's configuration, run the
185 run the CS8900/20 Setup Utility to disable PnP and configure the
387 NOTE: The Setup Utility's diagnostics are designed to run in a
388 DOS-only operating system environment. DO NOT run the diagnostics
392 To run the diagnostics tests on the CS8900/20 adapter:
453 on the same network. (Note: the diagnostic network test should not be run
513 4.) If you have configured the adapter to run in memory mode but the driver
517 If an IO conflict occurs, run the CS8900/20 Setup Utility and perform a
524 the adapter and reconfigure it by installing it in another PC to run the
[all …]
Dde4x5.txt78 6) run the net startup bits for your new eth?? interface(s) manually
117 the dc2104x chips should run correctly with the basic driver. I'm in
129 which really needs to run the service routine with interrupts turned on.
136 run on the same interrupt. PCMCIA/CardBus is another can of worms...
Dsmc9.txt20 3. To compile as a module, run 'make' .
Dfib_trie.txt68 fib_find_node(). Inserting a new node means we might have to run the
76 it is run to optimize and reorganize. It will walk the trie upwards
112 scenarios. It might conceivably be possible to run trie_rebalance via RCU
Dgianfar.txt41 configuration options. You must run ethtool only on currently
/linux-4.1.27/drivers/watchdog/
Dbfin_wdt.c130 int run = bfin_wdt_running(); in bfin_wdt_set_timeout() local
133 if (run) in bfin_wdt_set_timeout()
/linux-4.1.27/fs/ocfs2/
DKconfig37 run-time selectable.
48 It is safe to say Y, as the clustering method is run-time
/linux-4.1.27/Documentation/cgroups/
Dmemcg_test.txt188 run jobs under child_a and child_b
237 run 51M of malloc
242 run 51M of malloc
250 run some programs which uses some amount of memory in /cgroup/A.
266 (Shell-A) Create cgroup and run event listener
/linux-4.1.27/sound/pci/au88x0/
Dau88x0_wt.h39 run = 0, /* 0 W 1:run 0:stop */
/linux-4.1.27/drivers/hv/
DKconfig7 Select this option to run Linux as a Hyper-V client operating
/linux-4.1.27/arch/ia64/
DKconfig156 This changes the kernel so it can modify itself when it is run
158 over full virtualization. However, when run without a hypervisor
175 will run on any supported IA-64 system. However, if you configure
220 systems, but the resulting kernel binary will not run on other
232 systems, but the resulting kernel binary will not run on other
339 If you say N here, the kernel will run on single and multiprocessor
341 you say Y here, the kernel will run on many, but not all,
343 will run faster if you say N here.
/linux-4.1.27/net/iucv/
DKconfig7 under VM or VIF. If you run on z/VM, say "Y" to enable a fast
/linux-4.1.27/Documentation/filesystems/pohmelfs/
Ddesign_notes.txt31 * Ability to add and/or remove servers from the working set at run-time.
60 Administrators can add or remove servers from the set at run-time via special commands (described
63 run-time.
/linux-4.1.27/tools/testing/ktest/examples/include/
Ddefaults.conf54 TEST = ${SSH} run-test
/linux-4.1.27/net/bluetooth/
DKconfig76 cases are run first thing at module load time. When the Bluetooth
78 are run late in the initcall hierarchy.
/linux-4.1.27/drivers/gpu/drm/vmwgfx/
DKconfig13 Choose this option if you would like to run 3D acceleration
/linux-4.1.27/Documentation/cpuidle/
Dcore.txt20 which can be used to switch governors at run time. This boot option
/linux-4.1.27/arch/arm/mach-s3c24xx/
Dsleep-s3c2410.S57 teq pc, #0 @ first as a trial-run to load cache
/linux-4.1.27/arch/parisc/
DKconfig127 that can run on all 32-bit PA CPUs (albeit not optimally fast),
241 If you say N here, the kernel will run on uni- and multiprocessor
243 you say Y here, the kernel will run on many, but not all,
245 will run faster if you say N here.
/linux-4.1.27/drivers/net/wan/
Dfarsync.c432 int run; /* Port is running */ member
991 if (port->run) in fst_op_raise()
1001 if (port->run) in fst_op_lower()
1340 if (!port->run) in do_bottom_half_tx()
1439 if (!port->run) in do_bottom_half_rx()
1566 if (port->run) in fst_intr()
1574 if (port->run) in fst_intr()
2143 if (port->run) { in fst_openport()
2147 port->run = 0; in fst_openport()
2155 port->run = 1; in fst_openport()
[all …]
/linux-4.1.27/arch/tile/kvm/
DKconfig10 Say Y here to get to see options for using your Linux host to run
/linux-4.1.27/arch/m68k/kernel/
Dvmlinux-nommu.lds7 * run kernels.
/linux-4.1.27/arch/arm/mach-prima2/
Dsleep.S46 @ Following code has to run from cache since
/linux-4.1.27/arch/powerpc/platforms/
DKconfig.cputype93 The resulting kernel may not run on other CPUs, so use this with care.
155 Engine. This will make the code run considerably faster on Cell
378 If you say N here, the kernel will run on single and multiprocessor
380 you say Y here, the kernel will run on single-processor machines.
381 On a single-processor machine, the kernel will run faster if you say
/linux-4.1.27/Documentation/misc-devices/
Dbh1770glc.txt18 interface and interrupt logic. In principle they can run on their own,
35 finally run. This is handled as no proximity indication.
/linux-4.1.27/arch/powerpc/platforms/cell/spufs/
DMakefile4 spufs-y += sched.o backing_ops.o hw_ops.o run.o gang.o
/linux-4.1.27/Documentation/devicetree/bindings/regmap/
Dregmap.txt9 For one device driver, which will run in different scenarios above
/linux-4.1.27/arch/s390/
DKconfig287 This will make the code run faster on the selected machine but
290 selection of instructions itself, so the resulting kernel will run on
352 If you say N here, the kernel will run on uni- and multiprocessor
354 you say Y here, the kernel will run on many, but not all,
356 will run faster if you say N here.
674 Everybody who wants to run Linux under VM != VM4.2 should select
699 Everybody who wants to run Linux under VM should select this
795 Select this option if you want to run the kernel as a guest under
/linux-4.1.27/drivers/s390/net/
DKconfig80 Select this option to be able to run qeth devices in layer 2 mode.
89 Select this option to be able to run qeth devices in layer 3 mode.
/linux-4.1.27/Documentation/acpi/
Dmethod-customizing.txt23 please run "echo 1 > /sys/module/acpi/parameters/aml_debug_output".
27 just run "cat /sys/firmware/acpi/tables/DSDT > /tmp/dsdt.dat"
/linux-4.1.27/Documentation/fb/
Dgxfb.txt14 * You can run XF68_FBDev on top of /dev/fb0
Dlxfb.txt14 * You can run XF68_FBDev on top of /dev/fb0
/linux-4.1.27/tools/testing/selftests/efivarfs/
Defivarfs.sh11 echo $msg must be run as root >&2
/linux-4.1.27/arch/cris/
DKconfig.debug17 installed, run gdb-cris vmlinux, then type
/linux-4.1.27/Documentation/accounting/
Ddelay-accounting.txt6 runnable task may wait for a free CPU to run on.
58 be run and the corresponding delay statistics to be displayed. It also serves
/linux-4.1.27/Documentation/mmc/
Dmmc-async-req.txt25 platform. In power save mode, when clocks run on a lower frequency, the DMA
26 preparation may cost even more. As long as these slower preparations are run
/linux-4.1.27/fs/ext3/
DKconfig10 to run e2fsck (file system checker) on your file systems after a
18 file system has been cleanly unmounted, or e2fsck is run on the file
/linux-4.1.27/Documentation/infiniband/
Dcore_locking.txt54 if multiple function calls using the same object are run
93 callbacks run is not defined. Depending on the low-level driver, it
/linux-4.1.27/Documentation/powerpc/
Dpmu-ebb.txt44 events can be configured. This means that EBB events can not be run
47 It is however safe to run 'perf' commands on a process which is using EBBs. The
49 its events could not run.
/linux-4.1.27/tools/firewire/
Dnosy-dump.c49 static int run = 1; variable
140 if (run == 1) { in sigint_handler()
141 run = 0; in sigint_handler()
986 while (run) { in main()
/linux-4.1.27/arch/x86/kvm/
Dx86.c4453 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len)); in write_exit_mmio()
4560 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len); in emulator_read_write()
4561 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write; in emulator_read_write()
4562 vcpu->run->exit_reason = KVM_EXIT_MMIO; in emulator_read_write()
4563 vcpu->run->mmio.phys_addr = gpa; in emulator_read_write()
4692 vcpu->run->exit_reason = KVM_EXIT_IO; in emulator_pio_in_out()
4693 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT; in emulator_pio_in_out()
4694 vcpu->run->io.size = size; in emulator_pio_in_out()
4695 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE; in emulator_pio_in_out()
4696 vcpu->run->io.count = count; in emulator_pio_in_out()
[all …]
Dvmx.c5080 struct kvm_run *kvm_run = vcpu->run; in handle_exception()
5122 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; in handle_exception()
5123 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX; in handle_exception()
5124 vcpu->run->internal.ndata = 3; in handle_exception()
5125 vcpu->run->internal.data[0] = vect_info; in handle_exception()
5126 vcpu->run->internal.data[1] = intr_info; in handle_exception()
5127 vcpu->run->internal.data[2] = error_code; in handle_exception()
5196 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; in handle_triple_fault()
5347 vcpu->run->exit_reason = KVM_EXIT_SET_TPR; in handle_cr()
5384 vcpu->run->exit_reason = 0; in handle_cr()
[all …]
/linux-4.1.27/scripts/rt-tester/
Dt3-l1-pi-steal.tst86 # Wait until T1 is in the wakeup loop and let it run
/linux-4.1.27/Documentation/arm/
DNetwinder5 to run Linux. It is based around the StrongARM RISC processor,
/linux-4.1.27/Documentation/serial/
Dmoxa-smartio158 run the driver. If you prefer module driver, please refer to 3.4.
233 Find "Makefile" in /moxa/mxser, then run
253 will activate the module driver. You may run "lsmod" to check
261 "modprobe mxser" to activate this driver and run
282 create it by vi, run "chmod 755 rc.serial" to change the permission.
367 After checking /etc/lilo.conf, please run "lilo".
431 make sure you had run the "msmknod" utility.
/linux-4.1.27/Documentation/timers/
DNO_HZ.txt87 run CONFIG_HZ_PERIODIC=y kernels (or CONFIG_NO_HZ=n for older kernels)
152 1. CONFIG_NO_HZ_FULL selects CONFIG_NO_HZ_COMMON, so you cannot run
211 will in fact run on some CPU. However, this approach
213 callbacks run on, along with their scheduling priority
228 scheduler will decide where to run them, which might or might not be
229 where you want them to run.
293 required to run the SCHED_FIFO task until it either blocks or
/linux-4.1.27/arch/alpha/
DKconfig.debug27 you wish to run on Wildfire, Titan, or Marvel.
/linux-4.1.27/Documentation/trace/
Devents-nmi.txt15 INFO: NMI handler took too long to run: 9.207 msecs
/linux-4.1.27/Documentation/security/
Dapparmor.txt6 them run in an unconfined state which is equivalent to standard Linux DAC
/linux-4.1.27/Documentation/cdrom/
Dpacket-writing.txt28 overwrite mode, run:
86 the disc. For example, run:
/linux-4.1.27/tools/lguest/
Dlguest.txt27 - The easiest way to run lguest is to use same kernel as guest and host.
97 using --tunnet=bridge:<bridgename>, and perhaps run dhcp on the guest
/linux-4.1.27/arch/um/
DKconfig.char88 this if you expect the UML that you build to be run in environments
100 this if you expect the UML that you build to be run in environments

1234