Searched refs:option (Results 201 - 225 of 610) sorted by relevance

1234567891011>>

/linux-master/drivers/gpu/drm/xe/
H A DMakefile10 subdir-ccflags-y += $(call cc-option, -Wrestrict)
15 subdir-ccflags-y += $(call cc-option, -Wunused-but-set-variable)
16 subdir-ccflags-y += $(call cc-option, -Wunused-const-variable)
17 subdir-ccflags-y += $(call cc-option, -Wpacked-not-aligned)
18 subdir-ccflags-y += $(call cc-option, -Wformat-overflow)
19 subdir-ccflags-y += $(call cc-option, -Wformat-truncation)
20 subdir-ccflags-y += $(call cc-option, -Wstringop-truncation)
/linux-master/drivers/gpu/drm/i915/
H A DMakefile10 subdir-ccflags-y += $(call cc-option, -Wrestrict)
15 subdir-ccflags-y += $(call cc-option, -Wunused-but-set-variable)
16 subdir-ccflags-y += $(call cc-option, -Wunused-const-variable)
17 subdir-ccflags-y += $(call cc-option, -Wpacked-not-aligned)
18 subdir-ccflags-y += $(call cc-option, -Wformat-overflow)
19 subdir-ccflags-y += $(call cc-option, -Wformat-truncation)
20 subdir-ccflags-y += $(call cc-option, -Wstringop-truncation)
/linux-master/kernel/trace/
H A Dtrace_osnoise.c2136 int option = *pos; local
2140 if (option >= OSN_MAX)
2148 int option = ++(*pos); local
2150 if (option >= OSN_MAX)
2159 int option = *pos; local
2161 if (option == OSN_DEFAULTS) {
2163 seq_printf(s, "%s", osnoise_options_str[option]);
2165 seq_printf(s, "NO_%s", osnoise_options_str[option]);
2169 if (test_bit(option, &osnoise_options))
2170 seq_printf(s, "%s", osnoise_options_str[option]);
2214 int running, option, enable, retval; local
[all...]
/linux-master/fs/fat/
H A Dinode.c964 /* strip "cp" prefix from displayed option */
1139 int option; local
1219 if (match_int(&args[0], &option))
1221 opts->fs_uid = make_kuid(current_user_ns(), option);
1226 if (match_int(&args[0], &option))
1228 opts->fs_gid = make_kgid(current_user_ns(), option);
1233 if (match_octal(&args[0], &option))
1235 opts->fs_fmask = opts->fs_dmask = option;
1238 if (match_octal(&args[0], &option))
1240 opts->fs_dmask = option;
[all...]
/linux-master/fs/ocfs2/
H A Dsuper.c1241 int token, option; local
1276 if (match_int(&args[0], &option)) {
1280 if (option)
1319 if (match_int(&args[0], &option)) {
1323 if (option >= 0)
1324 mopt->atime_quantum = option;
1327 if (match_int(&args[0], &option)) {
1331 if (option)
1332 mopt->slot = (u16)option;
1335 if (match_int(&args[0], &option)) {
[all...]
/linux-master/net/9p/
H A Dtrans_rdma.c178 int option; local
193 "failed to allocate copy of option string\n");
205 r = match_int(&args[0], &option);
214 opts->port = option;
217 opts->sq_depth = option;
220 opts->rq_depth = option;
223 opts->timeout = option;
/linux-master/tools/tracing/rtla/src/
H A Dosnoise.c737 static int osnoise_options_get_option(char *option) argument
748 * Check first if the option is disabled.
750 snprintf(no_option, sizeof(no_option), "NO_%s", option);
758 * enabled. If the string is not there, the option does not exist.
760 opt = strstr(options, option);
771 static int osnoise_options_set_option(char *option, bool onoff) argument
776 return tracefs_instance_file_write(NULL, "osnoise/options", option);
778 snprintf(no_option, sizeof(no_option), "NO_%s", option);
828 err_msg("Could not restore original OSNOISE_IRQ_DISABLE option\n");
889 err_msg("Could not restore original OSNOISE_WORKLOAD option\
[all...]
/linux-master/drivers/crypto/cavium/nitrox/
H A Dnitrox_hal.c571 const char *option = ""; local
576 option = "60";
579 option = "60s";
583 option = "30";
585 option = "60i";
588 return option;
641 * CNN55<core option>-<freq><pincount>-<feature option>-<rev>
/linux-master/drivers/gpu/drm/mgag200/
H A Dmgag200_g200se.c18 u32 option; local
21 err = pci_read_config_dword(pdev, PCI_MGA_OPTION, &option);
27 has_sgram = !!(option & PCI_MGA_OPTION_HARDPWMSK);
29 option = 0x40049120;
31 option |= PCI_MGA_OPTION_HARDPWMSK;
33 return mgag200_init_pci_options(pdev, option, 0x00008000);
/linux-master/tools/testing/selftests/sched/
H A Dcs_prctl_test.c77 static int _prctl(int option, unsigned long arg2, unsigned long arg3, unsigned long arg4, argument
82 res = prctl(option, arg2, arg3, arg4, arg5);
83 printf("%d = prctl(%d, %ld, %ld, %ld, %lx)\n", res, option, (long)arg2, (long)arg3,
260 handle_usage(20, "unknown option");
/linux-master/arch/x86/um/asm/
H A Dptrace.h82 extern long arch_prctl(struct task_struct *task, int option,
/linux-master/drivers/gpu/drm/nouveau/nvkm/core/
H A Doption.c24 #include <core/option.h>
/linux-master/tools/usb/usbip/src/
H A Dusbip.c135 static const struct option opts[] = {
166 printf("usbip: invalid option\n");
H A Dusbip_bind.c184 static const struct option opts[] = {
/linux-master/tools/power/cpupower/bench/
H A Dmain.c18 static struct option long_options[] = {
/linux-master/drivers/gpio/
H A Dgpio-xtensa.c12 * GPIO32 option is implemented as 32bit Tensilica Instruction Extension (TIE)
37 #error GPIO32 option is not enabled for your xtensa core variant
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/
H A Dgk104.c29 #include <core/option.h>
/linux-master/samples/bpf/
H A Dxdp_sample_user.h41 void sample_usage(char *argv[], const struct option *long_options,
H A Dibumad_user.c68 static const struct option long_options[] = {
/linux-master/tools/testing/selftests/arm64/fp/
H A Dvlset.c28 static const struct option options[] = {
126 "This is a debug option. Don't rely on it.\n",
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A Dgf100.c28 #include <core/option.h>
/linux-master/scripts/dtc/
H A Dutil.h160 * This is a usage message fragment for the -t option. It is the format
202 struct option const long_opts[],
231 /* Helper for usage_long_opts option array */
247 case '?': usage("unknown option");
/linux-master/arch/parisc/kernel/vdso32/
H A DMakefile13 $(call ld-option, -Wl$(comma)--hash-style=sysv)
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
H A Dbase.c26 #include <core/option.h>
/linux-master/arch/s390/purgatory/
H A DMakefile31 KBUILD_CFLAGS += $(call cc-option,-fno-PIE)

Completed in 247 milliseconds

1234567891011>>