Searched defs:option (Results 1 - 13 of 13) sorted by relevance

/arch/x86/boot/compressed/
H A Dcmdline.c24 int cmdline_find_option(const char *option, char *buffer, int bufsize) argument
26 return __cmdline_find_option(get_cmd_line_ptr(), option, buffer, bufsize);
28 int cmdline_find_option_bool(const char *option) argument
30 return __cmdline_find_option_bool(get_cmd_line_ptr(), option);
/arch/x86/lib/
H A Dcmdline.c18 * Find a boolean option (like quiet,noapic,nosmp....)
21 * @option: option string to look for
23 * Returns the position of that @option (starts counting with 1)
26 int cmdline_find_option_bool(const char *cmdline, const char *option) argument
56 opptr = option;
/arch/x86/boot/
H A Dcmdline.c23 * Find a non-boolean option, that is, "option=argument". In accordance
24 * with standard Linux practice, if this option is repeated, this returns
30 int __cmdline_find_option(unsigned long cmdline_ptr, const char *option, char *buffer, int bufsize) argument
58 opptr = option;
97 * Find a boolean option (like quiet,noapic,nosmp....)
99 * Returns the position of that option (starts counting with 1)
102 int __cmdline_find_option_bool(unsigned long cmdline_ptr, const char *option) argument
132 opptr = option;
H A Dboot.h274 int __cmdline_find_option(unsigned long cmdline_ptr, const char *option, char *buffer, int bufsize);
275 int __cmdline_find_option_bool(unsigned long cmdline_ptr, const char *option);
276 static inline int cmdline_find_option(const char *option, char *buffer, int bufsize) argument
283 return __cmdline_find_option(cmd_line_ptr, option, buffer, bufsize);
286 static inline int cmdline_find_option_bool(const char *option) argument
293 return __cmdline_find_option_bool(cmd_line_ptr, option);
/arch/x86/kernel/cpu/microcode/
H A Dcore_early.c17 * 2 of the License, or (at your option) any later version.
82 const char *option = (const char *)__pa_nodebug(opt); local
87 const char *option = "dis_ucode_ldr";
91 if (cmdline_find_option_bool(cmdline, option))
/arch/arm/mach-omap2/
H A Dpm-debug.c229 u32 *option = data; local
231 *val = *option;
238 u32 *option = data; local
240 *option = val;
242 if (option == &enable_off_mode) {
/arch/powerpc/platforms/powernv/
H A Deeh-powernv.c11 * (at your option) any later version.
215 * @option: operation to be issued
221 static int powernv_eeh_set_option(struct eeh_pe *pe, int option) argument
232 ret = phb->eeh_ops->set_option(pe, option);
286 * @option: reset option
290 static int powernv_eeh_reset(struct eeh_pe *pe, int option) argument
297 ret = phb->eeh_ops->reset(pe, option);
H A Deeh-ioda.c11 * (at your option) any later version.
234 * @option: options
236 * Enable or disable EEH option for the indicated PE. The
240 static int ioda_eeh_set_option(struct eeh_pe *pe, int option) argument
257 switch (option) {
273 pr_warn("%s: Invalid option %d\n",
274 __func__, option);
304 __func__, rc, option,
505 int ioda_eeh_phb_reset(struct pci_controller *hose, int option) argument
510 pr_debug("%s: Reset PHB#%x, option
546 ioda_eeh_root_reset(struct pci_controller *hose, int option) argument
585 ioda_eeh_bridge_reset(struct pci_dev *dev, int option) argument
662 ioda_eeh_reset(struct eeh_pe *pe, int option) argument
[all...]
/arch/powerpc/boot/
H A Dcuboot-pq2.c83 u32 base, option; local
98 option = in_be32(&ctrl_addr[cs * 2 + 1]) & 0x7fff;
101 option = 0x10;
106 option | ~(cs_ranges_buf[i].size - 1));
/arch/powerpc/platforms/pseries/
H A Deeh_pseries.c16 * (at your option) any later version.
76 ibm_set_eeh_option = rtas_token("ibm,set-eeh-option");
276 /* Some older systems (Power4) allow the ibm,set-eeh-option
311 * @option: operation to be issued
317 static int pseries_eeh_set_option(struct eeh_pe *pe, int option) argument
328 switch (option) {
341 pr_err("%s: Invalid option %d\n",
342 __func__, option);
348 BUID_LO(pe->phb->buid), option);
500 * @option
504 pseries_eeh_reset(struct eeh_pe *pe, int option) argument
[all...]
/arch/s390/hypfs/
H A Dinode.c234 int token, option; local
242 if (match_int(&args[0], &option))
244 uid = make_kuid(current_user_ns(), option);
250 if (match_int(&args[0], &option))
252 gid = make_kgid(current_user_ns(), option);
259 pr_err("%s is not a valid mount option\n", str);
/arch/powerpc/platforms/cell/spufs/
H A Dinode.c11 * the Free Software Foundation; either version 2, or (at your option)
613 int token, option; local
621 if (match_int(&args[0], &option))
623 root->i_uid = make_kuid(current_user_ns(), option);
628 if (match_int(&args[0], &option))
630 root->i_gid = make_kgid(current_user_ns(), option);
635 if (match_octal(&args[0], &option))
637 root->i_mode = option | S_IFDIR;
/arch/powerpc/kernel/
H A Deeh.c10 * (at your option) any later version.
890 * The eeh-force-off option disables EEH checking globally, for all slots.
1394 * @option: requested option
1399 int eeh_pe_set_option(struct eeh_pe *pe, int option) argument
1412 switch (option) {
1429 ret = eeh_pci_enable(pe, option);
1433 __func__, option, EEH_OPT_DISABLE, EEH_OPT_THAW_DMA);
1513 * @option: reset type
1519 int eeh_pe_reset(struct eeh_pe *pe, int option) argument
[all...]

Completed in 211 milliseconds