| /arch/x86/pci/ |
| A D | pcbios.c | 368 struct irq_routing_options opt; in pcibios_get_irq_routing_table() local 378 opt.table = (struct irq_info *) page; in pcibios_get_irq_routing_table() 379 opt.size = PAGE_SIZE; in pcibios_get_irq_routing_table() 380 opt.segment = __KERNEL_DS; in pcibios_get_irq_routing_table() 393 "=m" (opt) in pcibios_get_irq_routing_table() 396 "D" ((long) &opt), in pcibios_get_irq_routing_table() 398 "m" (opt) in pcibios_get_irq_routing_table() 400 DBG("OK ret=%d, size=%d, map=%x\n", ret, opt.size, map); in pcibios_get_irq_routing_table() 404 } else if (opt.size) { in pcibios_get_irq_routing_table() 408 rt->size = opt.size + sizeof(struct irq_routing_table); in pcibios_get_irq_routing_table() [all …]
|
| /arch/s390/include/asm/ |
| A D | tlbflush.h | 24 unsigned long opt; in __tlb_flush_idte() local 26 opt = IDTE_PTOA; in __tlb_flush_idte() 28 opt |= IDTE_GUEST_ASCE; in __tlb_flush_idte() 30 asm volatile("idte 0,%1,%0" : : "a" (opt), "a" (asce) : "cc"); in __tlb_flush_idte()
|
| A D | pgtable.h | 1158 unsigned long opt, unsigned long asce, in __ptep_rdp() argument 1171 unsigned long opt, unsigned long asce, in __ptep_ipte() argument 1176 if (__builtin_constant_p(opt) && opt == 0) { in __ptep_ipte() 1186 opt = opt | (asce & _ASCE_ORIGIN); in __ptep_ipte() 1189 : [r2] "+a" (address), [r3] "+a" (opt) in __ptep_ipte() 1709 unsigned long opt, unsigned long asce, in __pmdp_idte() argument 1715 if (__builtin_constant_p(opt) && opt == 0) { in __pmdp_idte() 1728 : [r1] "a" (sto), [r2] "a" ((addr & HPAGE_MASK) | opt), in __pmdp_idte() 1735 unsigned long opt, unsigned long asce, in __pudp_idte() argument 1742 if (__builtin_constant_p(opt) && opt == 0) { in __pudp_idte() [all …]
|
| /arch/x86/mm/ |
| A D | numa.c | 28 static __init int numa_setup(char *opt) in numa_setup() argument 30 if (!opt) in numa_setup() 32 if (!strncmp(opt, "off", 3)) in numa_setup() 34 if (!strncmp(opt, "fake=", 5)) in numa_setup() 35 return numa_emu_cmdline(opt + 5); in numa_setup() 36 if (!strncmp(opt, "noacpi", 6)) in numa_setup() 38 if (!strncmp(opt, "nohmat", 6)) in numa_setup()
|
| A D | pkeys.c | 186 static __init int setup_init_pkru(char *opt) in setup_init_pkru() argument 190 if (kstrtouint(opt, 0, &new_init_pkru)) in setup_init_pkru()
|
| /arch/arm64/kernel/pi/ |
| A D | idreg-override.c | 268 static int __init find_field(const char *cmdline, char *opt, int len, in find_field() argument 274 memcpy(opt + len, reg->fields[f].name, flen); in find_field() 276 opt[len++] = '='; in find_field() 278 if (memcmp(cmdline, opt, len)) in find_field() 286 char opt[FTR_DESC_NAME_LEN + FTR_DESC_FIELD_LEN + 2]; in match_options() local 298 memcpy(opt, reg->name, len); in match_options() 299 opt[len++] = '.'; in match_options() 308 if (find_field(cmdline, opt, len, reg, f, &v)) in match_options()
|
| /arch/arm64/include/asm/ |
| A D | barrier.h | 28 #define dmb(opt) asm volatile("dmb " #opt : : : "memory") argument 29 #define dsb(opt) asm volatile("dsb " #opt : : : "memory") argument
|
| /arch/mips/include/asm/ |
| A D | cpu-features.h | 19 #define __opt(opt) (cpu_data[0].options & (opt)) argument 33 #define __isa_ge_and_opt(isa, opt) ((MIPS_ISA_REV >= (isa)) && __opt(opt)) argument 43 #define __isa_ge_or_opt(isa, opt) ((MIPS_ISA_REV >= (isa)) || __opt(opt)) argument 54 #define __isa_lt_and_opt(isa, opt) ((MIPS_ISA_REV < (isa)) && __opt(opt)) argument
|
| /arch/s390/include/uapi/asm/ |
| A D | ipl.h | 53 __u8 opt; member 79 __u8 opt; member 121 __u8 opt; member
|
| /arch/powerpc/kernel/ |
| A D | prom_init.c | 804 if (opt) { in early_cmdline_parse() 806 opt += 6; in early_cmdline_parse() 807 while (*opt && *opt == ' ') in early_cmdline_parse() 808 opt++; in early_cmdline_parse() 816 if (opt) { in early_cmdline_parse() 817 opt += 4; in early_cmdline_parse() 828 if (opt) { in early_cmdline_parse() 830 if (*opt && *opt == '=') { in early_cmdline_parse() 844 if (opt) { in early_cmdline_parse() 850 if (opt) { in early_cmdline_parse() [all …]
|
| /arch/loongarch/include/asm/ |
| A D | cpu-features.h | 15 #define cpu_opt(opt) (cpu_data[0].options & (opt)) argument
|
| A D | efi.h | 13 void efifb_setup_from_dmi(struct screen_info *si, const char *opt);
|
| /arch/x86/kernel/kprobes/ |
| A D | Makefile | 7 obj-$(CONFIG_OPTPROBES) += opt.o
|
| /arch/x86/kernel/cpu/ |
| A D | bus_lock.c | 74 static inline bool match_option(const char *arg, int arglen, const char *opt) in match_option() argument 76 int len = strlen(opt), ratelimit; in match_option() 78 if (strncmp(arg, opt, len)) in match_option()
|
| /arch/s390/hypfs/ |
| A D | inode.c | 225 int opt; in hypfs_parse_param() local 227 opt = fs_parse(fc, hypfs_fs_parameters, param, &result); in hypfs_parse_param() 228 if (opt < 0) in hypfs_parse_param() 229 return opt; in hypfs_parse_param() 231 switch (opt) { in hypfs_parse_param()
|
| /arch/s390/boot/ |
| A D | ipl_parm.c | 63 ipl_block.fcp.opt == IPL_PB0_FCP_OPT_DUMP) in is_ipl_block_dump() 66 ipl_block.nvme.opt == IPL_PB0_NVME_OPT_DUMP) in is_ipl_block_dump() 69 ipl_block.eckd.opt == IPL_PB0_ECKD_OPT_DUMP) in is_ipl_block_dump()
|
| /arch/arm/probes/kprobes/ |
| A D | Makefile | 14 obj-$(CONFIG_OPTPROBES) += opt-arm.o
|
| /arch/parisc/kernel/ |
| A D | pdc_cons.c | 46 const char *opt) in pdc_earlycon_setup() argument
|
| /arch/um/ |
| A D | Makefile | 142 LD_FLAGS_CMDLINE = $(foreach opt,$(KBUILD_LDFLAGS) $(LDFLAGS_EXECSTACK),-Wl,$(opt))
|
| /arch/s390/mm/ |
| A D | pgtable.c | 42 unsigned long opt, asce; in ptep_ipte_local() local 45 opt = 0; in ptep_ipte_local() 48 opt |= IPTE_NODAT; in ptep_ipte_local() 51 opt |= IPTE_GUEST_ASCE; in ptep_ipte_local() 53 __ptep_ipte(addr, ptep, opt, asce, IPTE_LOCAL); in ptep_ipte_local() 62 unsigned long opt, asce; in ptep_ipte_global() local 65 opt = 0; in ptep_ipte_global() 68 opt |= IPTE_NODAT; in ptep_ipte_global() 71 opt |= IPTE_GUEST_ASCE; in ptep_ipte_global() 73 __ptep_ipte(addr, ptep, opt, asce, IPTE_GLOBAL); in ptep_ipte_global()
|
| /arch/xtensa/configs/ |
| A D | iss_defconfig | 6 …untap,,tap0 ip=192.168.168.5:192.168.168.1 root=nfs nfsroot=192.168.168.1:/opt/montavista/pro/devk…
|
| A D | common_defconfig | 10 CONFIG_CMDLINE="console=ttyS0,38400 ip=bootp root=nfs nfsroot=/opt/montavista/pro/devkit/xtensa/lin…
|
| /arch/arm64/lib/ |
| A D | insn.c | 1533 u32 opt; in aarch64_insn_gen_dmb() local 1536 opt = __get_barrier_crm_val(type); in aarch64_insn_gen_dmb() 1537 if (opt == AARCH64_BREAK_FAULT) in aarch64_insn_gen_dmb() 1542 insn |= (opt << 8); in aarch64_insn_gen_dmb() 1549 u32 opt, insn; in aarch64_insn_gen_dsb() local 1551 opt = __get_barrier_crm_val(type); in aarch64_insn_gen_dsb() 1552 if (opt == AARCH64_BREAK_FAULT) in aarch64_insn_gen_dsb() 1557 insn |= (opt << 8); in aarch64_insn_gen_dsb()
|
| /arch/xtensa/kernel/ |
| A D | signal.c | 40 xtregs_opt_t opt; member 171 err |= __copy_to_user(&frame->xtregs.opt, ®s->xtregs_opt, in setup_sigcontext() 237 err |= __copy_from_user(®s->xtregs_opt, &frame->xtregs.opt, in restore_sigcontext()
|
| /arch/powerpc/platforms/cell/spufs/ |
| A D | inode.c | 628 int opt; in spufs_parse_param() local 630 opt = fs_parse(fc, spufs_fs_parameters, param, &result); in spufs_parse_param() 631 if (opt < 0) in spufs_parse_param() 632 return opt; in spufs_parse_param() 634 switch (opt) { in spufs_parse_param()
|