/linux-4.1.27/arch/mips/include/asm/ |
D | cpu-features.h | 21 #define cpu_has_tlb (cpu_data[0].options & MIPS_CPU_TLB) 24 #define cpu_has_tlbinv (cpu_data[0].options & MIPS_CPU_TLBINV) 27 #define cpu_has_segments (cpu_data[0].options & MIPS_CPU_SEGMENTS) 30 #define cpu_has_eva (cpu_data[0].options & MIPS_CPU_EVA) 33 #define cpu_has_htw (cpu_data[0].options & MIPS_CPU_HTW) 36 #define cpu_has_rixiex (cpu_data[0].options & MIPS_CPU_RIXIEX) 39 #define cpu_has_maar (cpu_data[0].options & MIPS_CPU_MAAR) 42 #define cpu_has_rw_llb (cpu_data[0].options & MIPS_CPU_RW_LLB) 55 #define cpu_has_4kex (cpu_data[0].options & MIPS_CPU_4KEX) 58 #define cpu_has_3k_cache (cpu_data[0].options & MIPS_CPU_3K_CACHE) [all …]
|
/linux-4.1.27/drivers/video/fbdev/core/ |
D | fb_cmdline.c | 37 char *opt, *options = NULL; in fb_get_options() local 53 options = opt + name_len + 1; in fb_get_options() 57 if (!options && option && fb_mode_option) in fb_get_options() 58 options = kstrdup(fb_mode_option, GFP_KERNEL); in fb_get_options() 59 if (options && !strncmp(options, "off", 3)) in fb_get_options() 63 *option = options; in fb_get_options() 82 static int __init video_setup(char *options) in video_setup() argument 86 if (!options || !*options) in video_setup() 89 if (!global && !strncmp(options, "ofonly", 6)) { in video_setup() 94 if (!global && !strchr(options, ':')) { in video_setup() [all …]
|
/linux-4.1.27/tools/perf/util/ |
D | parse-options.c | 225 static int parse_short_opt(struct parse_opt_ctx_t *p, const struct option *options) in parse_short_opt() argument 227 for (; options->type != OPTION_END; options++) { in parse_short_opt() 228 if (options->short_name == *p->opt) { in parse_short_opt() 230 return get_value(p, options, OPT_SHORT); in parse_short_opt() 237 const struct option *options) in parse_long_opt() argument 246 for (; options->type != OPTION_END; options++) { in parse_long_opt() 250 if (!options->long_name) in parse_long_opt() 253 rest = skip_prefix(arg, options->long_name); in parse_long_opt() 254 if (options->type == OPTION_ARGUMENT) { in parse_long_opt() 258 return opterror(options, "takes no value", flags); in parse_long_opt() [all …]
|
D | parse-options.h | 149 const struct option *options, 153 const struct option *options, 158 const struct option *options); 193 const struct option *options,
|
/linux-4.1.27/drivers/net/ppp/ |
D | ppp_deflate.c | 39 static void *z_comp_alloc(unsigned char *options, int opt_len); 40 static void *z_decomp_alloc(unsigned char *options, int opt_len); 43 static int z_comp_init(void *state, unsigned char *options, 46 static int z_decomp_init(void *state, unsigned char *options, 88 static void *z_comp_alloc(unsigned char *options, int opt_len) in z_comp_alloc() argument 94 (options[0] != CI_DEFLATE && options[0] != CI_DEFLATE_DRAFT) || in z_comp_alloc() 95 options[1] != CILEN_DEFLATE || in z_comp_alloc() 96 DEFLATE_METHOD(options[2]) != DEFLATE_METHOD_VAL || in z_comp_alloc() 97 options[3] != DEFLATE_CHK_SEQUENCE) in z_comp_alloc() 99 w_size = DEFLATE_SIZE(options[2]); in z_comp_alloc() [all …]
|
D | bsd_comp.c | 169 static void *bsd_alloc(unsigned char *options, int opt_len, int decomp); 170 static void *bsd_comp_alloc (unsigned char *options, int opt_len); 171 static void *bsd_decomp_alloc (unsigned char *options, int opt_len); 173 static int bsd_init (void *db, unsigned char *options, 175 static int bsd_comp_init (void *state, unsigned char *options, 177 static int bsd_decomp_init (void *state, unsigned char *options, 352 static void *bsd_alloc (unsigned char *options, int opt_len, int decomp) in bsd_alloc() argument 358 if (opt_len != 3 || options[0] != CI_BSD_COMPRESS || options[1] != 3 in bsd_alloc() 359 || BSD_VERSION(options[2]) != BSD_CURRENT_VERSION) in bsd_alloc() 364 bits = BSD_NBITS(options[2]); in bsd_alloc() [all …]
|
D | ppp_mppe.c | 193 static void *mppe_alloc(unsigned char *options, int optlen) in mppe_alloc() argument 199 options[0] != CI_MPPE || options[1] != CILEN_MPPE) in mppe_alloc() 228 memcpy(state->master_key, &options[CILEN_MPPE], in mppe_alloc() 273 mppe_init(void *arg, unsigned char *options, int optlen, int unit, int debug, in mppe_init() argument 280 options[0] != CI_MPPE || options[1] != CILEN_MPPE) in mppe_init() 283 MPPE_CI_TO_OPTS(&options[2], mppe_opts); in mppe_init() 338 mppe_comp_init(void *arg, unsigned char *options, int optlen, int unit, in mppe_comp_init() argument 342 return mppe_init(arg, options, optlen, unit, debug, "mppe_comp_init"); in mppe_comp_init() 454 mppe_decomp_init(void *arg, unsigned char *options, int optlen, int unit, in mppe_decomp_init() argument 458 return mppe_init(arg, options, optlen, unit, debug, "mppe_decomp_init"); in mppe_decomp_init()
|
/linux-4.1.27/arch/x86/boot/ |
D | early_serial_console.c | 114 char optstr[64], *options; in parse_console_uart8250() local 125 options = optstr; in parse_console_uart8250() 127 if (!strncmp(options, "uart8250,io,", 12)) in parse_console_uart8250() 128 port = simple_strtoull(options + 12, &options, 0); in parse_console_uart8250() 129 else if (!strncmp(options, "uart,io,", 8)) in parse_console_uart8250() 130 port = simple_strtoull(options + 8, &options, 0); in parse_console_uart8250() 134 if (options && (options[0] == ',')) in parse_console_uart8250() 135 baud = simple_strtoull(options + 1, &options, 0); in parse_console_uart8250()
|
/linux-4.1.27/drivers/crypto/caam/ |
D | desc_constr.h | 53 static inline void init_desc(u32 *desc, u32 options) in init_desc() argument 55 *desc = (options | HDR_ONE) + 1; in init_desc() 58 static inline void init_sh_desc(u32 *desc, u32 options) in init_sh_desc() argument 61 init_desc(desc, CMD_SHARED_DESC_HDR | options); in init_sh_desc() 64 static inline void init_sh_desc_pdb(u32 *desc, u32 options, size_t pdb_bytes) in init_sh_desc_pdb() argument 69 options); in init_sh_desc_pdb() 72 static inline void init_job_desc(u32 *desc, u32 options) in init_job_desc() argument 74 init_desc(desc, CMD_DESC_HDR | options); in init_job_desc() 87 u32 options) in init_job_desc_shared() argument 90 init_job_desc(desc, HDR_SHARED | options | in init_job_desc_shared() [all …]
|
D | pdb.h | 85 u8 options; member 124 u8 options; member 157 u8 options; member 175 u8 options; member 196 u8 options; member 208 u8 options; member 230 u8 options; member 243 u8 options; member 266 u8 options; member 274 u8 options; member [all …]
|
/linux-4.1.27/net/netfilter/ |
D | nf_synproxy_core.c | 38 opts->options = 0; in synproxy_parse_options() 60 opts->options |= XT_SYNPROXY_OPT_MSS; in synproxy_parse_options() 68 opts->options |= XT_SYNPROXY_OPT_WSCALE; in synproxy_parse_options() 75 opts->options |= XT_SYNPROXY_OPT_TIMESTAMP; in synproxy_parse_options() 80 opts->options |= XT_SYNPROXY_OPT_SACK_PERM; in synproxy_parse_options() 96 if (opts->options & XT_SYNPROXY_OPT_MSS) in synproxy_options_size() 98 if (opts->options & XT_SYNPROXY_OPT_TIMESTAMP) in synproxy_options_size() 100 else if (opts->options & XT_SYNPROXY_OPT_SACK_PERM) in synproxy_options_size() 102 if (opts->options & XT_SYNPROXY_OPT_WSCALE) in synproxy_options_size() 113 u8 options = opts->options; in synproxy_build_options() local [all …]
|
D | xt_connlabel.c | 27 bool invert = info->options & XT_CONNLABEL_OP_INVERT; in connlabel_mt() 33 if (info->options & XT_CONNLABEL_OP_SET) in connlabel_mt() 41 const int options = XT_CONNLABEL_OP_INVERT | in connlabel_mt_check() local 50 if (info->options & ~options) { in connlabel_mt_check() 51 pr_err("Unknown options in mask %x\n", info->options); in connlabel_mt_check()
|
D | nf_conntrack_h323_main.c | 393 if (channel->options & eH2250LogicalChannelParameters_mediaChannel) { in process_h245_channel() 402 options & eH2250LogicalChannelParameters_mediaControlChannel) { in process_h245_channel() 437 if ((olc->options & in process_olc() 439 (olc->reverseLogicalChannelParameters.options & in process_olc() 456 if ((olc->options & eOpenLogicalChannel_separateStack) && in process_olc() 486 if ((olca->options & in process_olca() 488 (olca->reverseLogicalChannelParameters.options & in process_olca() 504 if ((olca->options & in process_olca() 511 if (ack->options & in process_olca() 521 if (ack->options & in process_olca() [all …]
|
/linux-4.1.27/drivers/s390/net/ |
D | qeth_l2_sys.c | 29 card->options.sbp.supported_funcs) in qeth_bridge_port_role_state_show() 31 &card->options.sbp.role, &state); in qeth_bridge_port_role_state_show() 45 switch (card->options.sbp.role) { in qeth_bridge_port_role_state_show() 57 card->options.sbp.role, state); in qeth_bridge_port_role_state_show() 96 card->options.sbp.role = role; in qeth_bridge_port_role_store() 98 card->options.sbp.role = role; in qeth_bridge_port_role_store() 128 enabled = card->options.sbp.hostnotification; in qeth_bridgeport_hostnotification_show() 157 card->options.sbp.hostnotification = enable; in qeth_bridgeport_hostnotification_store() 159 card->options.sbp.hostnotification = enable; in qeth_bridgeport_hostnotification_store() 203 if (!card->options.sbp.supported_funcs) in qeth_l2_setup_bridgeport_attrs() [all …]
|
D | qeth_l3_sys.c | 52 return qeth_l3_dev_route_show(card, &card->options.route4, buf); in qeth_l3_dev_route4_show() 101 return qeth_l3_dev_route_store(card, &card->options.route4, in qeth_l3_dev_route4_store() 116 return qeth_l3_dev_route_show(card, &card->options.route6, buf); in qeth_l3_dev_route6_show() 127 return qeth_l3_dev_route_store(card, &card->options.route6, in qeth_l3_dev_route6_store() 142 return sprintf(buf, "%i\n", card->options.fake_broadcast? 1:0); in qeth_l3_dev_fake_broadcast_show() 164 card->options.fake_broadcast = i; in qeth_l3_dev_fake_broadcast_store() 183 return sprintf(buf, "%i\n", card->options.sniffer ? 1 : 0); in qeth_l3_dev_sniffer_show() 198 if (card->options.cq == QETH_CQ_ENABLED) in qeth_l3_dev_sniffer_store() 215 card->options.sniffer = i; in qeth_l3_dev_sniffer_store() 220 card->options.sniffer = i; in qeth_l3_dev_sniffer_store() [all …]
|
D | qeth_core_main.c | 335 if (card->options.cq == QETH_CQ_ENABLED) { in qeth_cq_init() 357 if (card->options.cq == QETH_CQ_ENABLED) { in qeth_alloc_cq() 436 if (q->card->options.cq != QETH_CQ_ENABLED) in qeth_cleanup_handled_pending() 514 return card->options.cq == QETH_CQ_ENABLED && in qeth_is_cq() 1395 card->options.route4.type = NO_ROUTER; in qeth_set_intial_options() 1396 card->options.route6.type = NO_ROUTER; in qeth_set_intial_options() 1397 card->options.fake_broadcast = 0; in qeth_set_intial_options() 1398 card->options.add_hhlen = DEFAULT_ADD_HHLEN; in qeth_set_intial_options() 1399 card->options.performance_stats = 0; in qeth_set_intial_options() 1400 card->options.rx_sg_cb = QETH_RX_SG_CB; in qeth_set_intial_options() [all …]
|
D | qeth_core_sys.c | 265 if (!card->options.layer2) { in qeth_dev_prioqing_store() 370 return sprintf(buf, "%i\n", card->options.performance_stats ? 1:0); in qeth_dev_performance_stats_show() 386 if (i == card->options.performance_stats) in qeth_dev_performance_stats_store() 388 card->options.performance_stats = i; in qeth_dev_performance_stats_store() 412 return sprintf(buf, "%i\n", card->options.layer2); in qeth_dev_layer2_show() 445 if (card->options.layer2 == newdis) in qeth_dev_layer2_store() 480 switch (card->options.isolation) { in qeth_dev_isolation_show() 527 card->options.prev_isolation = card->options.isolation; in qeth_dev_isolation_store() 528 card->options.isolation = isolation; in qeth_dev_isolation_store()
|
/linux-4.1.27/include/linux/netfilter/ |
D | nf_conntrack_h323_types.h | 9 int options; /* No use */ member 14 int options; /* No use */ member 76 int options; /* No use */ member 98 int options; /* No use */ member 103 int options; /* No use */ member 154 } options; member 180 } options; member 205 } options; member 226 } options; member 236 } options; member [all …]
|
/linux-4.1.27/drivers/pcmcia/ |
D | vrc4171_card.c | 635 static int vrc4171_card_setup(char *options) in vrc4171_card_setup() argument 637 if (options == NULL || *options == '\0') in vrc4171_card_setup() 640 if (strncmp(options, "irq:", 4) == 0) { in vrc4171_card_setup() 642 options += 4; in vrc4171_card_setup() 643 irq = simple_strtoul(options, &options, 0); in vrc4171_card_setup() 647 if (*options != ',') in vrc4171_card_setup() 649 options++; in vrc4171_card_setup() 652 if (strncmp(options, "slota:", 6) == 0) { in vrc4171_card_setup() 653 options += 6; in vrc4171_card_setup() 654 if (*options != '\0') { in vrc4171_card_setup() [all …]
|
D | vrc4173_cardu.c | 536 static int vrc4173_cardu_setup(char *options) in vrc4173_cardu_setup() argument 538 if (options == NULL || *options == '\0') in vrc4173_cardu_setup() 541 if (strncmp(options, "cardu1:", 7) == 0) { in vrc4173_cardu_setup() 542 options += 7; in vrc4173_cardu_setup() 543 if (*options != '\0') { in vrc4173_cardu_setup() 544 if (strncmp(options, "noprobe", 7) == 0) { in vrc4173_cardu_setup() 546 options += 7; in vrc4173_cardu_setup() 549 if (*options != ',') in vrc4173_cardu_setup() 555 if (strncmp(options, "cardu2:", 7) == 0) { in vrc4173_cardu_setup() 556 options += 7; in vrc4173_cardu_setup() [all …]
|
/linux-4.1.27/arch/mips/kernel/ |
D | cpu-probe.c | 133 c->options |= MIPS_CPU_FRE; in cpu_set_fpu_opts() 144 c->options &= ~MIPS_CPU_FPU; in cpu_set_nofpu_opts() 179 cpu_data[0].options &= ~MIPS_CPU_HTW; in htw_disable() 405 c->options |= MIPS_CPU_TLB; in decode_config0() 458 c->options |= MIPS_CPU_WATCH; in decode_config1() 462 c->options |= MIPS_CPU_EJTAG; in decode_config1() 464 c->options |= MIPS_CPU_FPU; in decode_config1() 465 c->options |= MIPS_CPU_32FPR; in decode_config1() 496 c->options |= MIPS_CPU_RIXI; in decode_config3() 499 c->options |= MIPS_CPU_RIXI; in decode_config3() [all …]
|
D | vmlinux.lds.S | 178 *(.MIPS.options) 179 *(.options)
|
/linux-4.1.27/arch/um/drivers/ |
D | pcap_kern.c | 56 char *remain, *host_if = NULL, *options[2] = { NULL, NULL }; in pcap_setup() local 66 &options[0], &options[1], mac_out, NULL); in pcap_setup() 76 for (i = 0; i < ARRAY_SIZE(options); i++) { in pcap_setup() 77 if (options[i] == NULL) in pcap_setup() 79 if (!strcmp(options[i], "promisc")) in pcap_setup() 81 else if (!strcmp(options[i], "nopromisc")) in pcap_setup() 83 else if (!strcmp(options[i], "optimize")) in pcap_setup() 85 else if (!strcmp(options[i], "nooptimize")) in pcap_setup() 89 options[i]); in pcap_setup()
|
/linux-4.1.27/drivers/media/usb/hdpvr/ |
D | hdpvr-control.c | 112 dev->usbc_buf[0] = dev->options.bitrate; in hdpvr_set_bitrate() 113 dev->usbc_buf[2] = dev->options.peak_bitrate; in hdpvr_set_bitrate() 161 hdpvr_config_call(dev, CTRL_VIDEO_STD_TYPE, dev->options.video_std); in hdpvr_set_options() 164 dev->options.video_input+1); in hdpvr_set_options() 166 hdpvr_set_audio(dev, dev->options.audio_input+1, in hdpvr_set_options() 167 dev->options.audio_codec); in hdpvr_set_options() 171 dev->options.bitrate_mode); in hdpvr_set_options() 172 hdpvr_config_call(dev, CTRL_GOP_MODE_VALUE, dev->options.gop_mode); in hdpvr_set_options() 174 hdpvr_config_call(dev, CTRL_BRIGHTNESS, dev->options.brightness); in hdpvr_set_options() 175 hdpvr_config_call(dev, CTRL_CONTRAST, dev->options.contrast); in hdpvr_set_options() [all …]
|
D | hdpvr-core.c | 150 dev->options.brightness = 0x80; in device_authorization() 151 dev->options.contrast = 0x40; in device_authorization() 152 dev->options.hue = 0xf; in device_authorization() 153 dev->options.saturation = 0x40; in device_authorization() 154 dev->options.sharpness = 0x80; in device_authorization() 315 dev->options = hdpvr_default_options; in hdpvr_probe() 318 dev->options.video_input = default_video_input; in hdpvr_probe() 321 dev->options.audio_input = default_audio_input; in hdpvr_probe() 323 dev->options.audio_codec = in hdpvr_probe()
|
D | hdpvr-video.c | 295 "no video signal at input %d\n", dev->options.video_input); in hdpvr_start_streaming() 588 if (!fh->legacy_mode && dev->options.video_input == HDPVR_COMPONENT) in vidioc_s_std() 607 if (!fh->legacy_mode && dev->options.video_input == HDPVR_COMPONENT) in vidioc_g_std() 621 if (dev->options.video_input == HDPVR_COMPONENT) in vidioc_querystd() 640 if (dev->options.video_input) in vidioc_s_dv_timings() 662 if (dev->options.video_input) in vidioc_g_dv_timings() 679 if (dev->options.video_input) in vidioc_query_dv_timings() 718 if (dev->options.video_input) in vidioc_enum_dv_timings() 733 if (dev->options.video_input) in vidioc_dv_timings_cap() 788 dev->options.video_input = index; in vidioc_s_input() [all …]
|
/linux-4.1.27/drivers/tty/serial/ |
D | earlycon.c | 64 static int __init parse_options(struct earlycon_device *device, char *options) in parse_options() argument 70 if (uart_parse_earlycon(options, &port->iotype, &addr, &options)) in parse_options() 86 if (options) { in parse_options() 87 device->baud = simple_strtoul(options, NULL, 0); in parse_options() 88 length = min(strcspn(options, " ") + 1, in parse_options() 89 (size_t)(sizeof(device->options))); in parse_options() 90 strlcpy(device->options, options, length); in parse_options() 97 device->options); in parse_options() 101 device->options); in parse_options()
|
/linux-4.1.27/drivers/mtd/nand/ |
D | nand_bbt.c | 117 if (td->options & NAND_BBT_NO_OOB) in check_pattern() 154 if (!(td->options & NAND_BBT_NO_OOB)) in add_marker_len() 158 if (td->options & NAND_BBT_VERSION) in add_marker_len() 181 int bits = td->options & NAND_BBT_NRBITS_MSK; in read_bbt() 272 if (td->options & NAND_BBT_PERCHIP) { in read_abs_bbt() 300 if (td->options & NAND_BBT_VERSION) in scan_read_data() 350 if (td->options & NAND_BBT_NO_OOB) in scan_read() 376 if (!(td->options & NAND_BBT_NO_OOB)) in bbt_get_ver_offs() 397 if (td->options & NAND_BBT_VERSION) { in read_abs_bbts() 406 if (md && (md->options & NAND_BBT_VERSION)) { in read_abs_bbts() [all …]
|
/linux-4.1.27/fs/afs/ |
D | mntpt.c | 131 char *devname, *options; in afs_mntpt_do_automount() local 144 options = (char *) get_zeroed_page(GFP_KERNEL); in afs_mntpt_do_automount() 145 if (!options) in afs_mntpt_do_automount() 198 memcpy(options, "cell=", 5); in afs_mntpt_do_automount() 199 strcpy(options + 5, super->volume->cell->name); in afs_mntpt_do_automount() 201 strcat(options, ",rwpath"); in afs_mntpt_do_automount() 204 _debug("--- attempting mount %s -o %s ---", devname, options); in afs_mntpt_do_automount() 205 mnt = vfs_kern_mount(&afs_fs_type, 0, devname, options); in afs_mntpt_do_automount() 209 free_page((unsigned long) options); in afs_mntpt_do_automount() 216 free_page((unsigned long) options); in afs_mntpt_do_automount()
|
D | super.c | 144 char *options, const char **devname) in afs_parse_options() argument 151 _enter("%s", options); in afs_parse_options() 153 options[PAGE_SIZE - 1] = 0; in afs_parse_options() 155 while ((p = strsep(&options, ","))) { in afs_parse_options() 355 int flags, const char *dev_name, void *options) in afs_mount() argument 361 char *new_opts = kstrdup(options, GFP_KERNEL); in afs_mount() 365 _enter(",,%s,%p", dev_name, options); in afs_mount() 374 if (options) { in afs_mount() 375 ret = afs_parse_options(¶ms, options, &dev_name); in afs_mount()
|
/linux-4.1.27/Documentation/filesystems/ |
D | 00-INDEX | 10 - info and mount options for the Acorn Advanced Disc Filing System. 14 - info and mount options for the Amiga Fast File System. 57 - info, usage, mount options, design about EXOFS. 59 - info, mount options and specifications for the Ext2 filesystem. 61 - info, mount options and specifications for the Ext3 filesystem. 63 - info, mount options and specifications for the Ext4 filesystem. 65 - info and mount options for the F2FS filesystem. 71 - info on the Filesystem in User SpacE including mount options. 83 - info and mount options for the OS/2 HPFS. 87 - info and mount options for the ISO 9660 (CDROM) filesystem. [all …]
|
D | ext3.txt | 19 mounted "read only". Mount options "ro,noload" can be 31 have changed, these options allow the user to specify 73 The mount options "barrier" and "nobarrier" can 75 consistency with other ext3 mount options. 109 (These mount options override the errors behavior 130 quota These options are ignored by the filesystem. They 136 jqfmt=<quota type> These options tell filesystem details about quota 139 quota options. See documentation in the quota-tools
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Modprobe.conf | 3 options i2c-core i2c_debug=1 4 options i2c-algo-bit bit_test=1 9 options bttv card=2 radio=1 10 options tuner debug=1
|
D | Modules.conf | 6 options i2c-core i2c_debug=1 7 options i2c-algo-bit bit_test=1 12 options bttv card=2 radio=1 13 options tuner debug=1
|
/linux-4.1.27/drivers/s390/cio/ |
D | device_ops.c | 46 cdev->private->options.fast = (flags & CCWDEV_EARLY_NOTIFICATION) != 0; in ccw_device_set_options_mask() 47 cdev->private->options.repall = (flags & CCWDEV_REPORT_ALL) != 0; in ccw_device_set_options_mask() 48 cdev->private->options.pgroup = (flags & CCWDEV_DO_PATHGROUP) != 0; in ccw_device_set_options_mask() 49 cdev->private->options.force = (flags & CCWDEV_ALLOW_FORCE) != 0; in ccw_device_set_options_mask() 50 cdev->private->options.mpath = (flags & CCWDEV_DO_MULTIPATH) != 0; in ccw_device_set_options_mask() 71 cdev->private->options.repall) || in ccw_device_set_options() 73 cdev->private->options.fast)) in ccw_device_set_options() 75 cdev->private->options.fast |= (flags & CCWDEV_EARLY_NOTIFICATION) != 0; in ccw_device_set_options() 76 cdev->private->options.repall |= (flags & CCWDEV_REPORT_ALL) != 0; in ccw_device_set_options() 77 cdev->private->options.pgroup |= (flags & CCWDEV_DO_PATHGROUP) != 0; in ccw_device_set_options() [all …]
|
/linux-4.1.27/tools/perf/tests/ |
D | attr.py | 120 def __init__(self, path, options): argument 127 self.test_dir = options.test_dir 128 self.perf = options.perf 262 def run_tests(options): argument 263 for f in glob.glob(options.test_dir + '/' + options.test): 265 Test(f, options).run() 307 options, args = parser.parse_args() 312 setup_log(options.verbose) 314 if not options.test_dir: 318 if not options.test: [all …]
|
/linux-4.1.27/drivers/media/pci/ivtv/ |
D | ivtv-driver.c | 514 if (itv->options.tuner == -1) in ivtv_process_eeprom() 515 itv->options.tuner = tv.tuner_type; in ivtv_process_eeprom() 516 if (itv->options.radio == -1) in ivtv_process_eeprom() 517 itv->options.radio = (tv.has_radio != 0); in ivtv_process_eeprom() 519 if (itv->options.newi2c == -1 && tv.has_ir) { in ivtv_process_eeprom() 520 itv->options.newi2c = (tv.has_ir & 4) ? 1 : 0; in ivtv_process_eeprom() 521 if (itv->options.newi2c) { in ivtv_process_eeprom() 646 itv->options.kilobytes[IVTV_ENC_STREAM_TYPE_MPG] = enc_mpg_buffers * 1024; in ivtv_process_options() 647 itv->options.kilobytes[IVTV_ENC_STREAM_TYPE_YUV] = enc_yuv_buffers * 1024; in ivtv_process_options() 648 itv->options.kilobytes[IVTV_ENC_STREAM_TYPE_VBI] = enc_vbi_buffers * 1024; in ivtv_process_options() [all …]
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
D | rti800.c | 265 ret = comedi_request_region(dev, it->options[0], 0x10); in rti800_attach() 277 devpriv->adc_2comp = (it->options[4] == 0); in rti800_attach() 278 devpriv->dac_2comp[0] = (it->options[6] == 0); in rti800_attach() 279 devpriv->dac_2comp[1] = (it->options[8] == 0); in rti800_attach() 291 s->n_chan = (it->options[2] ? 16 : 8); in rti800_attach() 294 s->range_table = (it->options[3] < ARRAY_SIZE(rti800_ai_ranges)) in rti800_attach() 295 ? rti800_ai_ranges[it->options[3]] in rti800_attach() 307 (it->options[5] < ARRAY_SIZE(rti800_ao_ranges)) in rti800_attach() 308 ? rti800_ao_ranges[it->options[5]] in rti800_attach() 311 (it->options[7] < ARRAY_SIZE(rti800_ao_ranges)) in rti800_attach() [all …]
|
D | dt2815.c | 154 ret = comedi_request_region(dev, it->options[0], 0x2); in dt2815_attach() 176 current_range_type = (it->options[3]) in dt2815_attach() 178 voltage_range_type = (it->options[2]) in dt2815_attach() 181 devpriv->range_type_list[i] = (it->options[5 + i]) in dt2815_attach() 196 program = (it->options[4] & 0x3) << 3 | 0x7; in dt2815_attach()
|
D | pcl818.c | 929 if (it->options[4] == 1 || it->options[4] == 10) { in pcl818_set_ai_range_table() 934 switch (it->options[4]) { in pcl818_set_ai_range_table() 1002 ret = comedi_request_region(dev, it->options[0], in pcl818_attach() 1008 if (it->options[1] >= 2 && it->options[1] <= 7) { in pcl818_attach() 1009 ret = request_irq(it->options[1], pcl818_interrupt, 0, in pcl818_attach() 1012 dev->irq = it->options[1]; in pcl818_attach() 1016 if (dev->irq && board->has_fifo && it->options[2] == -1) in pcl818_attach() 1021 pcl818_alloc_dma(dev, it->options[2]); in pcl818_attach() 1024 if ((it->options[3] == 0) || (it->options[3] == 10)) in pcl818_attach() 1038 if ((it->options[6] == 1) || (it->options[6] == 100)) in pcl818_attach() [all …]
|
D | ni_labpc.c | 87 unsigned int irq = it->options[1]; in labpc_attach() 88 unsigned int dma_chan = it->options[2]; in labpc_attach() 91 ret = comedi_request_region(dev, it->options[0], 0x20); in labpc_attach()
|
D | pcl812.c | 1026 if (it->options[4] == 1) in pcl812_set_ai_range_table() 1030 switch (it->options[4]) { in pcl812_set_ai_range_table() 1055 if (it->options[1] == 1) in pcl812_set_ai_range_table() 1059 switch (it->options[1]) { in pcl812_set_ai_range_table() 1080 switch (it->options[1]) { in pcl812_set_ai_range_table() 1137 ret = comedi_request_region(dev, it->options[0], 0x10); in pcl812_attach() 1148 if ((1 << it->options[1]) & board->IRQbits) { in pcl812_attach() 1149 ret = request_irq(it->options[1], pcl812_interrupt, 0, in pcl812_attach() 1152 dev->irq = it->options[1]; in pcl812_attach() 1158 pcl812_alloc_dma(dev, it->options[2]); in pcl812_attach() [all …]
|
D | rti802.c | 84 ret = comedi_request_region(dev, it->options[0], 0x04); in rti802_attach() 110 devpriv->dac_coding[i] = (it->options[3 + 2 * i]) in rti802_attach() 112 devpriv->range_type_list[i] = (it->options[2 + 2 * i]) in rti802_attach()
|
D | ni_atmio16d.c | 609 ret = comedi_request_region(dev, it->options[0], 0x20); in atmio16d_attach() 624 if (it->options[1]) { in atmio16d_attach() 625 ret = request_irq(it->options[1], atmio16d_interrupt, 0, in atmio16d_attach() 628 dev->irq = it->options[1]; in atmio16d_attach() 632 devpriv->adc_mux = it->options[5]; in atmio16d_attach() 633 devpriv->adc_range = it->options[6]; in atmio16d_attach() 635 devpriv->dac0_range = it->options[7]; in atmio16d_attach() 636 devpriv->dac0_reference = it->options[8]; in atmio16d_attach() 637 devpriv->dac0_coding = it->options[9]; in atmio16d_attach() 638 devpriv->dac1_range = it->options[10]; in atmio16d_attach() [all …]
|
D | pcl724.c | 110 (it->options[2] == 1 || it->options[2] == 96)) { in pcl724_attach() 115 ret = comedi_request_region(dev, it->options[0], iorange); in pcl724_attach()
|
D | pcmuio.c | 537 ret = comedi_request_region(dev, it->options[0], in pcmuio_attach() 555 if (it->options[1]) { in pcmuio_attach() 557 ret = request_irq(it->options[1], pcmuio_interrupt, 0, in pcmuio_attach() 560 dev->irq = it->options[1]; in pcmuio_attach() 564 if (it->options[2] == dev->irq) { in pcmuio_attach() 566 devpriv->irq2 = it->options[2]; in pcmuio_attach() 567 } else if (it->options[2]) { in pcmuio_attach() 569 ret = request_irq(it->options[2], pcmuio_interrupt, 0, in pcmuio_attach() 572 devpriv->irq2 = it->options[2]; in pcmuio_attach()
|
D | aio_iiro_16.c | 180 ret = comedi_request_region(dev, it->options[0], 0x8); in aio_iiro_16_attach() 190 if ((1 << it->options[1]) & 0xdcfc) { in aio_iiro_16_attach() 191 ret = request_irq(it->options[1], aio_iiro_16_cos, 0, in aio_iiro_16_attach() 194 dev->irq = it->options[1]; in aio_iiro_16_attach()
|
D | pcmad.c | 118 ret = comedi_request_region(dev, it->options[0], 0x04); in pcmad_attach() 128 if (it->options[1]) { in pcmad_attach() 139 s->range_table = it->options[2] ? &range_bipolar10 : &range_unipolar5; in pcmad_attach()
|
D | pcl726.c | 327 ret = comedi_request_region(dev, it->options[0], board->io_len); in pcl726_attach() 339 if (it->options[1] && (board->irq_mask & (1 << it->options[1]))) { in pcl726_attach() 340 ret = request_irq(it->options[1], pcl726_interrupt, 0, in pcl726_attach() 344 dev->irq = it->options[1]; in pcl726_attach() 350 unsigned int opt = it->options[2 + i]; in pcl726_attach()
|
D | amplc_pc236.c | 58 ret = comedi_request_region(dev, it->options[0], 0x4); in pc236_attach() 62 return amplc_pc236_common_attach(dev, dev->iobase, it->options[1], 0); in pc236_attach()
|
D | mpc624.c | 278 ret = comedi_request_region(dev, it->options[0], 0x10); in mpc624_attach() 286 switch (it->options[1]) { in mpc624_attach() 329 switch (it->options[1]) { in mpc624_attach() 334 switch (it->options[1]) { in mpc624_attach()
|
D | dt2811.c | 328 ret = comedi_request_region(dev, it->options[0], 0x8); in dt2811_attach() 347 switch (it->options[2]) { in dt2811_attach() 361 switch (it->options[4]) { in dt2811_attach() 375 switch (it->options[5]) { in dt2811_attach() 397 switch (it->options[3]) { in dt2811_attach()
|
D | das16.c | 963 unsigned int min = it->options[4]; in das16_ai_range() 964 unsigned int max = it->options[5]; in das16_ai_range() 997 unsigned int min = it->options[6]; in das16_ao_range() 998 unsigned int max = it->options[7]; in das16_ao_range() 1034 if (it->options[3]) { in das16_attach() 1035 if (it->options[3] != 0 && in das16_attach() 1036 it->options[3] != 1 && it->options[3] != 10) { in das16_attach() 1048 ret = comedi_request_region(dev, it->options[0], board->size); in das16_attach() 1052 ret = comedi_request_region(dev, it->options[0], 0x10); in das16_attach() 1075 if (it->options[3]) in das16_attach() [all …]
|
D | amplc_dio200.c | 253 ret = comedi_request_region(dev, it->options[0], 0x20); in dio200_attach() 257 return amplc_dio200_common_attach(dev, it->options[1], 0); in dio200_attach()
|
D | comedi_parport.c | 239 ret = comedi_request_region(dev, it->options[0], 0x03); in parport_attach() 243 if (it->options[1]) { in parport_attach() 244 ret = request_irq(it->options[1], parport_interrupt, 0, in parport_attach() 247 dev->irq = it->options[1]; in parport_attach()
|
D | dt2814.c | 241 ret = comedi_request_region(dev, it->options[0], 0x2); in dt2814_attach() 254 if (it->options[1]) { in dt2814_attach() 255 ret = request_irq(it->options[1], dt2814_interrupt, 0, in dt2814_attach() 258 dev->irq = it->options[1]; in dt2814_attach()
|
D | adq12b.c | 208 ret = comedi_request_region(dev, it->options[0], 0x10); in adq12b_attach() 225 if (it->options[2]) { in adq12b_attach() 233 s->range_table = it->options[1] ? &range_adq12b_ai_unipolar in adq12b_attach()
|
D | dt282x.c | 1032 unsigned int irq_num = it->options[1]; in dt282x_alloc_dma() 1035 if (it->options[2] < it->options[3]) { in dt282x_alloc_dma() 1036 dma_chan[0] = it->options[2]; in dt282x_alloc_dma() 1037 dma_chan[1] = it->options[3]; in dt282x_alloc_dma() 1039 dma_chan[0] = it->options[3]; in dt282x_alloc_dma() 1040 dma_chan[1] = it->options[2]; in dt282x_alloc_dma() 1108 ret = comedi_request_region(dev, it->options[0], 0x10); in dt282x_attach() 1131 if ((it->options[4] && board->adchan_di) || board->adchan_se == 0) { in dt282x_attach() 1140 s->range_table = opt_ai_range_lkup(board->ispgl, it->options[8]); in dt282x_attach() 1141 devpriv->ad_2scomp = it->options[5] ? 1 : 0; in dt282x_attach()
|
D | pcmda12.c | 132 ret = comedi_request_region(dev, it->options[0], 0x10); in pcmda12_attach() 140 devpriv->simultaneous_xfer_mode = it->options[1]; in pcmda12_attach()
|
D | dt2801.c | 537 ret = comedi_request_region(dev, it->options[0], 0x2); in dt2801_attach() 580 if (it->options[2]) in dt2801_attach() 586 s->range_table = ai_range_lkup(board->adrangetype, it->options[3]); in dt2801_attach() 596 devpriv->dac_range_types[0] = dac_range_lkup(it->options[4]); in dt2801_attach() 597 devpriv->dac_range_types[1] = dac_range_lkup(it->options[5]); in dt2801_attach()
|
D | pcl711.c | 431 ret = comedi_request_region(dev, it->options[0], 0x10); in pcl711_attach() 435 if (it->options[1] && it->options[1] <= board->maxirq) { in pcl711_attach() 436 ret = request_irq(it->options[1], pcl711_interrupt, 0, in pcl711_attach() 439 dev->irq = it->options[1]; in pcl711_attach()
|
/linux-4.1.27/net/dns_resolver/ |
D | dns_query.c | 70 const char *options, char **_result, time_t *_expiry) in dns_query() argument 80 type, (int)namelen, (int)namelen, name, namelen, options); in dns_query() 115 if (!options) in dns_query() 116 options = ""; in dns_query() 117 kdebug("call request_key(,%s,%s)", desc, options); in dns_query() 123 rkey = request_key(&key_type_dns_resolver, desc, options); in dns_query()
|
/linux-4.1.27/drivers/media/pci/cx18/ |
D | cx18-driver.c | 423 if (cx->options.tuner == -1) in cx18_process_eeprom() 424 cx->options.tuner = tv.tuner_type; in cx18_process_eeprom() 425 if (cx->options.radio == -1) in cx18_process_eeprom() 426 cx->options.radio = (tv.has_radio != 0); in cx18_process_eeprom() 543 cx->options.megabytes[CX18_ENC_STREAM_TYPE_TS] = enc_ts_buffers; in cx18_process_options() 544 cx->options.megabytes[CX18_ENC_STREAM_TYPE_MPG] = enc_mpg_buffers; in cx18_process_options() 545 cx->options.megabytes[CX18_ENC_STREAM_TYPE_IDX] = enc_idx_buffers; in cx18_process_options() 546 cx->options.megabytes[CX18_ENC_STREAM_TYPE_YUV] = enc_yuv_buffers; in cx18_process_options() 547 cx->options.megabytes[CX18_ENC_STREAM_TYPE_VBI] = enc_vbi_buffers; in cx18_process_options() 548 cx->options.megabytes[CX18_ENC_STREAM_TYPE_PCM] = enc_pcm_buffers; in cx18_process_options() [all …]
|
/linux-4.1.27/Documentation/sound/oss/ |
D | Tropez+ | 12 options wavefront io=0x200 irq=9 13 options cs4232 synthirq=9 synthio=0x200 io=0x530 irq=5 dma=1 dma2=0 14 options opl3 io=0x388 18 the wavefront options "io" and "irq" ***MUST*** match the "synthio" 19 and "synthirq" cs4232 options.
|
D | Opti | 39 options will override these values. 61 the options of your choice. This file is normally installed as 76 options sb mad16=1 77 options mad16 irq=10 dma=0 dma16=1 io=0x530 joystick=1 cdtype=0 78 options opl3 io=0x388 82 "options mad16" line - eg 84 options mad16 irq=5 dma=0 dma16=3 io=0x530 mpu_io=0x330 mpu_irq=9 108 options sb mad16=1 116 options mad16 irq=10 dma=0 dma16=1 io=0x530 joystick=1 cdtype=0 117 options opl3 io=0x388 [all …]
|
D | README.modules | 33 options sb io=0x220 irq=7 dma=1 dma16=5 mpu_io=0x330 34 options adlib_card io=0x388 # FM synthesizer 40 options adlib_card io=0x388 44 autoclean when not in use. Also, options for the device drivers are 52 options. To find the filename of the driver, look in 61 Whichever card you have, try feeding it the options that would be the 94 options sound dmabuf=1 105 text-mode guy anyway. If you have options for other cards or other helpful
|
D | AudioExcelDSP16 | 46 options opl3 io=0x388 47 options ad1848 io=0x530 irq=11 dma=3 48 options aedsp16 io=0x220 irq=11 dma=3 mss_base=0x530 50 Where the aedsp16 options are the options for this driver while opl3 and 51 ad1848 are the corresponding options for the MSS and OPL3 modules.
|
/linux-4.1.27/tools/lib/traceevent/ |
D | event-plugin.c | 37 struct pevent_plugin_option *options; member 120 for (op = reg->options; op->name; op++) { in traceevent_plugin_list_options() 225 struct pevent_plugin_option *options) in traceevent_plugin_add_options() argument 233 reg->options = options; in traceevent_plugin_add_options() 236 while (options->name) { in traceevent_plugin_add_options() 237 update_option(name, options); in traceevent_plugin_add_options() 238 options++; in traceevent_plugin_add_options() 247 void traceevent_plugin_remove_options(struct pevent_plugin_option *options) in traceevent_plugin_remove_options() argument 253 if ((*last)->options == options) { in traceevent_plugin_remove_options()
|
/linux-4.1.27/arch/cris/arch-v32/mach-a3/ |
D | dma.c | 20 unsigned options, unsigned int bandwidth, enum dma_owner owner) in crisv32_request_dma() argument 27 options & DMA_INT_MEM ? INT_REGION : EXT_REGION, in crisv32_request_dma() 35 if (options & DMA_VERBOSE_ON_ERROR) in crisv32_request_dma() 42 if (options & DMA_PANIC_ON_ERROR) in crisv32_request_dma() 76 if (options & DMA_VERBOSE_ON_ERROR) in crisv32_request_dma() 81 if (options & DMA_PANIC_ON_ERROR) in crisv32_request_dma()
|
/linux-4.1.27/drivers/staging/lustre/lnet/lnet/ |
D | lib-md.c | 99 lmd->md_options = umd->options; in lnet_md_build() 106 if ((umd->options & LNET_MD_IOVEC) != 0) { in lnet_md_build() 108 if ((umd->options & LNET_MD_KIOV) != 0) /* Can't specify both */ in lnet_md_build() 126 if ((umd->options & LNET_MD_MAX_SIZE) != 0 && /* use max size */ in lnet_md_build() 131 } else if ((umd->options & LNET_MD_KIOV) != 0) { in lnet_md_build() 147 if ((umd->options & LNET_MD_MAX_SIZE) != 0 && /* max size used */ in lnet_md_build() 157 if ((umd->options & LNET_MD_MAX_SIZE) != 0 && /* max size used */ in lnet_md_build() 216 umd->options = lmd->md_options; in lnet_md_deconstruct() 230 if ((umd->options & (LNET_MD_KIOV | LNET_MD_IOVEC)) != 0 && in lnet_md_validate() 282 if ((umd.options & (LNET_MD_OP_GET | LNET_MD_OP_PUT)) == 0) { in LNetMDAttach() [all …]
|
/linux-4.1.27/include/linux/ |
D | ppp-comp.h | 40 void *(*comp_alloc) (unsigned char *options, int opt_len); 46 int (*comp_init) (void *state, unsigned char *options, 60 void *(*decomp_alloc) (unsigned char *options, int opt_len); 66 int (*decomp_init) (void *state, unsigned char *options,
|
/linux-4.1.27/tools/perf/ |
D | builtin-evlist.c | 44 const struct option options[] = { in cmd_evlist() local 59 argc = parse_options(argc, argv, options, evlist_usage, 0); in cmd_evlist() 61 usage_with_options(evlist_usage, options); in cmd_evlist() 65 usage_with_options(evlist_usage, options); in cmd_evlist()
|
D | builtin-probe.c | 326 struct option options[] = { in __cmd_probe() local 398 set_option_flag(options, 'a', "add", PARSE_OPT_EXCLUSIVE); in __cmd_probe() 399 set_option_flag(options, 'd', "del", PARSE_OPT_EXCLUSIVE); in __cmd_probe() 400 set_option_flag(options, 'l', "list", PARSE_OPT_EXCLUSIVE); in __cmd_probe() 402 set_option_flag(options, 'L', "line", PARSE_OPT_EXCLUSIVE); in __cmd_probe() 403 set_option_flag(options, 'V', "vars", PARSE_OPT_EXCLUSIVE); in __cmd_probe() 406 argc = parse_options(argc, argv, options, probe_usage, in __cmd_probe() 411 usage_with_options(probe_usage, options); in __cmd_probe() 433 usage_with_options(probe_usage, options); in __cmd_probe() 443 usage_with_options(probe_usage, options); in __cmd_probe() [all …]
|
D | builtin-data.c | 57 const struct option options[] = { in cmd_data_convert() local 72 argc = parse_options(argc, argv, options, in cmd_data_convert() 75 usage_with_options(data_convert_usage, options); in cmd_data_convert()
|
D | builtin-buildid-list.c | 91 const struct option options[] = { in cmd_buildid_list() local 104 argc = parse_options(argc, argv, options, buildid_list_usage, 0); in cmd_buildid_list()
|
D | builtin-stat.c | 1715 const struct option options[] = { in cmd_stat() local 1786 argc = parse_options(argc, argv, options, stat_usage, in cmd_stat() 1795 parse_options_usage(stat_usage, options, "o", 1); in cmd_stat() 1796 parse_options_usage(NULL, options, "log-fd", 0); in cmd_stat() 1802 parse_options_usage(stat_usage, options, "log-fd", 0); in cmd_stat() 1840 parse_options_usage(stat_usage, options, "B", 1); in cmd_stat() 1841 parse_options_usage(NULL, options, "x", 1); in cmd_stat() 1849 usage_with_options(stat_usage, options); in cmd_stat() 1853 parse_options_usage(stat_usage, options, "r", 1); in cmd_stat() 1866 parse_options_usage(stat_usage, options, "G", 1); in cmd_stat() [all …]
|
D | builtin-annotate.c | 289 const struct option options[] = { in cmd_annotate() local 334 argc = parse_options(argc, argv, options, annotate_usage, 0); in cmd_annotate() 357 usage_with_options(annotate_usage, options); in cmd_annotate() 365 usage_with_options(annotate_usage, options); in cmd_annotate()
|
/linux-4.1.27/fs/proc/ |
D | root.c | 51 static int proc_parse_options(char *options, struct pid_namespace *pid) in proc_parse_options() argument 57 if (!options) in proc_parse_options() 60 while ((p = strsep(&options, ",")) != NULL) { in proc_parse_options() 106 char *options; in proc_mount() local 110 options = NULL; in proc_mount() 113 options = data; in proc_mount() 131 if (!proc_parse_options(options, ns)) { in proc_mount()
|
/linux-4.1.27/drivers/watchdog/ |
D | sbc_epx_c3.c | 108 int options, retval = -EINVAL; in epx_c3_ioctl() local 111 .options = WDIOF_KEEPALIVEPING, in epx_c3_ioctl() 125 if (get_user(options, argp)) in epx_c3_ioctl() 128 if (options & WDIOS_DISABLECARD) { in epx_c3_ioctl() 133 if (options & WDIOS_ENABLECARD) { in epx_c3_ioctl()
|
D | indydog.c | 105 int options, retval = -EINVAL; in indydog_ioctl() local 107 .options = WDIOF_KEEPALIVEPING, in indydog_ioctl() 123 if (get_user(options, (int *)arg)) in indydog_ioctl() 125 if (options & WDIOS_DISABLECARD) { in indydog_ioctl() 129 if (options & WDIOS_ENABLECARD) { in indydog_ioctl()
|
D | riowd.c | 91 .options = WDIOF_SETTIMEOUT, in riowd_ioctl() 97 unsigned int options; in riowd_ioctl() local 117 if (copy_from_user(&options, argp, sizeof(options))) in riowd_ioctl() 120 if (options & WDIOS_DISABLECARD) in riowd_ioctl() 122 else if (options & WDIOS_ENABLECARD) in riowd_ioctl()
|
D | iop_wdt.c | 131 .options = WDIOF_CARDRESET | WDIOF_MAGICCLOSE | WDIOF_KEEPALIVEPING, 138 int options; in iop_wdt_ioctl() local 159 if (get_user(options, (int *)arg)) in iop_wdt_ioctl() 162 if (options & WDIOS_DISABLECARD) { in iop_wdt_ioctl() 172 if (options & WDIOS_ENABLECARD) { in iop_wdt_ioctl()
|
D | pnx833x_wdt.c | 145 int options, new_timeout = 0; in pnx833x_wdt_ioctl() local 149 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT, in pnx833x_wdt_ioctl() 169 if (get_user(options, (int *)arg)) in pnx833x_wdt_ioctl() 172 if (options & WDIOS_DISABLECARD) in pnx833x_wdt_ioctl() 175 if (options & WDIOS_ENABLECARD) in pnx833x_wdt_ioctl()
|
D | wafer5823wdt.c | 133 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | in wafwdt_ioctl() 151 int options, retval = -EINVAL; in wafwdt_ioctl() local 153 if (get_user(options, p)) in wafwdt_ioctl() 156 if (options & WDIOS_DISABLECARD) { in wafwdt_ioctl() 161 if (options & WDIOS_ENABLECARD) { in wafwdt_ioctl()
|
D | acquirewdt.c | 150 int options, retval = -EINVAL; in acq_ioctl() local 154 .options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, in acq_ioctl() 169 if (get_user(options, p)) in acq_ioctl() 171 if (options & WDIOS_DISABLECARD) { in acq_ioctl() 175 if (options & WDIOS_ENABLECARD) { in acq_ioctl()
|
D | ib700wdt.c | 178 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT in ibwdt_ioctl() 196 int options, retval = -EINVAL; in ibwdt_ioctl() local 198 if (get_user(options, p)) in ibwdt_ioctl() 201 if (options & WDIOS_DISABLECARD) { in ibwdt_ioctl() 205 if (options & WDIOS_ENABLECARD) { in ibwdt_ioctl()
|
D | advantechwdt.c | 141 .options = WDIOF_KEEPALIVEPING | in advwdt_ioctl() 160 int options, retval = -EINVAL; in advwdt_ioctl() local 162 if (get_user(options, p)) in advwdt_ioctl() 164 if (options & WDIOS_DISABLECARD) { in advwdt_ioctl() 168 if (options & WDIOS_ENABLECARD) { in advwdt_ioctl()
|
D | gef_wdt.c | 166 int options; in gef_wdt_ioctl() local 169 .options = WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE | in gef_wdt_ioctl() 189 if (get_user(options, (int __user *)argp)) in gef_wdt_ioctl() 192 if (options & WDIOS_DISABLECARD) in gef_wdt_ioctl() 195 if (options & WDIOS_ENABLECARD) in gef_wdt_ioctl()
|
D | geodewdt.c | 147 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING in geodewdt_ioctl() 165 int options, ret = -EINVAL; in geodewdt_ioctl() local 167 if (get_user(options, p)) in geodewdt_ioctl() 170 if (options & WDIOS_DISABLECARD) { in geodewdt_ioctl() 175 if (options & WDIOS_ENABLECARD) { in geodewdt_ioctl()
|
D | sbc7240_wdt.c | 157 .options = WDIOF_KEEPALIVEPING| 176 int options; in fop_ioctl() local 179 if (get_user(options, (int __user *)arg)) in fop_ioctl() 182 if (options & WDIOS_DISABLECARD) { in fop_ioctl() 187 if (options & WDIOS_ENABLECARD) { in fop_ioctl()
|
D | mv64x60_wdt.c | 181 int options; in mv64x60_wdt_ioctl() local 184 .options = WDIOF_SETTIMEOUT | in mv64x60_wdt_ioctl() 208 if (get_user(options, (int __user *)argp)) in mv64x60_wdt_ioctl() 211 if (options & WDIOS_DISABLECARD) in mv64x60_wdt_ioctl() 214 if (options & WDIOS_ENABLECARD) in mv64x60_wdt_ioctl()
|
D | bfin_wdt.c | 251 int options, ret = -EINVAL; in bfin_wdt_ioctl() local 253 if (get_user(options, p)) in bfin_wdt_ioctl() 257 if (options & WDIOS_DISABLECARD) { in bfin_wdt_ioctl() 261 if (options & WDIOS_ENABLECARD) { in bfin_wdt_ioctl() 348 .options = WDIOF_SETTIMEOUT |
|
D | eurotechwdt.c | 242 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT in eurwdt_ioctl() 249 int options, retval = -EINVAL; in eurwdt_ioctl() local 260 if (get_user(options, p)) in eurwdt_ioctl() 263 if (options & WDIOS_DISABLECARD) { in eurwdt_ioctl() 267 if (options & WDIOS_ENABLECARD) { in eurwdt_ioctl()
|
D | sc1200wdt.c | 192 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | in sc1200wdt_ioctl() 212 int options, retval = -EINVAL; in sc1200wdt_ioctl() local 214 if (get_user(options, p)) in sc1200wdt_ioctl() 217 if (options & WDIOS_DISABLECARD) { in sc1200wdt_ioctl() 222 if (options & WDIOS_ENABLECARD) { in sc1200wdt_ioctl()
|
D | smsc37b787_wdt.c | 434 .options = WDIOF_KEEPALIVEPING | in wb_smsc_wdt_ioctl() 453 int options, retval = -EINVAL; in wb_smsc_wdt_ioctl() local 455 if (get_user(options, uarg.i)) in wb_smsc_wdt_ioctl() 458 if (options & WDIOS_DISABLECARD) { in wb_smsc_wdt_ioctl() 462 if (options & WDIOS_ENABLECARD) { in wb_smsc_wdt_ioctl()
|
D | ts72xx_wdt.c | 289 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | 322 int options; in ts72xx_wdt_ioctl() local 324 error = get_user(options, p); in ts72xx_wdt_ioctl() 330 if ((options & WDIOS_DISABLECARD) != 0) { in ts72xx_wdt_ioctl() 334 if ((options & WDIOS_ENABLECARD) != 0) { in ts72xx_wdt_ioctl()
|
D | pc87413_wdt.c | 393 .options = WDIOF_KEEPALIVEPING | in pc87413_ioctl() 412 int options, retval = -EINVAL; in pc87413_ioctl() local 413 if (get_user(options, uarg.i)) in pc87413_ioctl() 415 if (options & WDIOS_DISABLECARD) { in pc87413_ioctl() 419 if (options & WDIOS_ENABLECARD) { in pc87413_ioctl()
|
D | sch311x_wdt.c | 255 .options = WDIOF_KEEPALIVEPING | in sch311x_wdt_ioctl() 278 int options, retval = -EINVAL; in sch311x_wdt_ioctl() local 280 if (get_user(options, p)) in sch311x_wdt_ioctl() 282 if (options & WDIOS_DISABLECARD) { in sch311x_wdt_ioctl() 286 if (options & WDIOS_ENABLECARD) { in sch311x_wdt_ioctl()
|
D | cpwd.c | 408 .options = WDIOF_SETTIMEOUT, in cpwd_ioctl() 532 struct device_node *options; in cpwd_probe() local 559 options = of_find_node_by_path("/options"); in cpwd_probe() 561 if (!options) { in cpwd_probe() 566 prop_val = of_get_property(options, "watchdog-enable?", NULL); in cpwd_probe() 569 prop_val = of_get_property(options, "watchdog-reboot?", NULL); in cpwd_probe() 572 str_prop = of_get_property(options, "watchdog-timeout", NULL); in cpwd_probe()
|
D | wdt.c | 363 .options = WDIOF_SETTIMEOUT| in wdt_ioctl() 371 ident.options |= (WDIOF_EXTERN1|WDIOF_EXTERN2); in wdt_ioctl() 373 ident.options |= (WDIOF_OVERHEAT|WDIOF_POWERUNDER| in wdt_ioctl() 376 ident.options |= WDIOF_FANFAULT; in wdt_ioctl()
|
D | wdt_pci.c | 400 .options = WDIOF_SETTIMEOUT| in wdtpci_ioctl() 408 ident.options |= (WDIOF_EXTERN1|WDIOF_EXTERN2); in wdtpci_ioctl() 410 ident.options |= (WDIOF_OVERHEAT|WDIOF_POWERUNDER| in wdtpci_ioctl() 413 ident.options |= WDIOF_FANFAULT; in wdtpci_ioctl()
|
/linux-4.1.27/arch/cris/arch-v32/mach-fs/ |
D | dma.c | 20 unsigned options, unsigned int bandwidth, in crisv32_request_dma() argument 28 options & DMA_INT_MEM ? in crisv32_request_dma() 37 if (options & DMA_VERBOSE_ON_ERROR) { in crisv32_request_dma() 44 if (options & DMA_PANIC_ON_ERROR) in crisv32_request_dma() 78 if (options & DMA_VERBOSE_ON_ERROR) { in crisv32_request_dma() 84 if (options & DMA_PANIC_ON_ERROR) in crisv32_request_dma()
|
/linux-4.1.27/arch/mips/sgi-ip22/ |
D | ip22-setup.c | 67 static char options[8] __initdata; in plat_mem_setup() local 70 strcpy(options, baud); in plat_mem_setup() 72 baud ? options : NULL); in plat_mem_setup()
|
/linux-4.1.27/drivers/net/ethernet/i825xx/ |
D | sni_82596.c | 63 if (lp->options & OPT_MPU_16BIT) { in mpu_port() 81 struct resource *res, *ca, *idprom, *options; in sni_82596_probe() local 89 options = platform_get_resource(dev, 0, 0); in sni_82596_probe() 91 if (!res || !ca || !options || !idprom) in sni_82596_probe() 132 lp->options = options->flags & IORESOURCE_BITS; in sni_82596_probe()
|
/linux-4.1.27/net/sunrpc/auth_gss/ |
D | gss_rpc_xdr.h | 64 struct gssx_option_array options; member 70 struct gssx_option_array options; member 95 struct gssx_option_array options; member 121 struct gssx_option_array options; member 149 struct gssx_option_array options; member 159 struct gssx_option_array options; member
|
D | gss_rpc_upcall.c | 307 if (res.options.count == 1) { in gssp_accept_sec_context_upcall() 308 gssx_buffer *value = &res.options.data[0].value; in gssp_accept_sec_context_upcall() 321 if (res.options.count != 0) { in gssp_accept_sec_context_upcall() 322 kfree(res.options.data); in gssp_accept_sec_context_upcall()
|
/linux-4.1.27/net/ipv4/ |
D | syncookies.c | 86 u32 options = 0; in cookie_init_timestamp() local 90 options = ireq->wscale_ok ? ireq->snd_wscale : TS_OPT_WSCALE_MASK; in cookie_init_timestamp() 92 options |= TS_OPT_SACK; in cookie_init_timestamp() 94 options |= TS_OPT_ECN; in cookie_init_timestamp() 97 ts |= options; in cookie_init_timestamp() 102 ts |= options; in cookie_init_timestamp() 251 u32 options = tcp_opt->rcv_tsecr; in cookie_timestamp_decode() local 261 tcp_opt->sack_ok = (options & TS_OPT_SACK) ? TCP_SACK_SEEN : 0; in cookie_timestamp_decode() 266 if ((options & TS_OPT_WSCALE_MASK) == TS_OPT_WSCALE_MASK) in cookie_timestamp_decode() 270 tcp_opt->snd_wscale = options & TS_OPT_WSCALE_MASK; in cookie_timestamp_decode()
|
D | gre_demux.c | 102 __be32 *options; in parse_gre_header() local 121 options = (__be32 *)(greh + 1); in parse_gre_header() 131 options++; in parse_gre_header() 135 tpi->key = *options; in parse_gre_header() 136 options++; in parse_gre_header() 141 tpi->seq = *options; in parse_gre_header() 142 options++; in parse_gre_header() 152 if ((*(u8 *)options & 0xF0) != 0x40) { in parse_gre_header()
|
/linux-4.1.27/drivers/isdn/mISDN/ |
D | tei.c | 131 if (!test_bit(OPTION_L1_HOLD, &mgr->options)) { in da_deactivate() 144 if (!test_bit(OPTION_L1_HOLD, &mgr->options)) { in da_ui() 340 if (!test_bit(MGR_PH_ACTIVE, &mgr->options)) in do_send() 343 if (!test_and_set_bit(MGR_PH_NOTREADY, &mgr->options)) { in do_send() 347 test_and_clear_bit(MGR_PH_NOTREADY, &mgr->options); in do_send() 354 test_and_clear_bit(MGR_PH_NOTREADY, &mgr->options); in do_send() 363 if (test_bit(MGR_PH_NOTREADY, &mgr->options)) { in do_ack() 365 if (test_bit(MGR_PH_ACTIVE, &mgr->options)) { in do_ack() 377 test_and_clear_bit(MGR_PH_NOTREADY, &mgr->options); in do_ack() 386 if (!test_bit(MGR_PH_ACTIVE, &mgr->options)) { in mgr_send_down() [all …]
|
/linux-4.1.27/fs/fat/ |
D | file.c | 75 if (sbi->options.sys_immutable && in fat_ioctl_set_attributes() 97 if (sbi->options.sys_immutable) { in fat_ioctl_set_attributes() 148 MSDOS_SB(inode->i_sb)->options.flush) { in fat_file_release() 312 if (MSDOS_SB(inode->i_sb)->options.nfs == FAT_NFS_NOSTALE_RO) { in fat_getattr() 331 mask = sbi->options.fs_fmask; in fat_sanitize_mode() 333 mask = sbi->options.fs_dmask; in fat_sanitize_mode() 360 umode_t allow_utime = sbi->options.allow_utime; in fat_allow_set_time() 394 if (sbi->options.quiet) in fat_setattr() 417 (!uid_eq(attr->ia_uid, sbi->options.fs_uid))) || in fat_setattr() 419 (!gid_eq(attr->ia_gid, sbi->options.fs_gid))) || in fat_setattr() [all …]
|
D | namei_msdos.c | 124 err = msdos_format_name(name, len, msdos_name, &sbi->options); in msdos_find() 129 if (!err && sbi->options.dotsOK) { in msdos_find() 151 struct fat_mount_options *options = &MSDOS_SB(dentry->d_sb)->options; in msdos_hash() local 155 error = msdos_format_name(qstr->name, qstr->len, msdos_name, options); in msdos_hash() 168 struct fat_mount_options *options = &MSDOS_SB(parent->d_sb)->options; in msdos_cmp() local 172 error = msdos_format_name(name->name, name->len, a_msdos_name, options); in msdos_cmp() 175 error = msdos_format_name(str, len, b_msdos_name, options); in msdos_cmp() 275 msdos_name, &MSDOS_SB(sb)->options); in msdos_create() 356 msdos_name, &MSDOS_SB(sb)->options); in msdos_mkdir() 609 &MSDOS_SB(old_dir->i_sb)->options); in msdos_rename() [all …]
|
D | inode.c | 377 if (S_ISDIR(inode->i_mode) && sbi->options.nfs) { in fat_attach() 396 if (S_ISDIR(inode->i_mode) && sbi->options.nfs) { in fat_detach() 458 inode->i_uid = sbi->options.fs_uid; in fat_fill_inode() 459 inode->i_gid = sbi->options.fs_gid; in fat_fill_inode() 480 ((sbi->options.showexec && !is_exec(de->name + 8)) in fat_fill_inode() 492 if (sbi->options.sys_immutable) in fat_fill_inode() 501 if (sbi->options.isvfat) { in fat_fill_inode() 513 if (sbi->options.nfs == FAT_NFS_NOSTALE_RO) in fat_lock_build_inode() 519 if (sbi->options.nfs == FAT_NFS_NOSTALE_RO) in fat_unlock_build_inode() 620 if (sbi->options.iocharset != fat_default_iocharset) in delayed_free() [all …]
|
D | misc.c | 21 struct fat_mount_options *opts = &MSDOS_SB(sb)->options; in __fat_fs_error() 212 if (!sbi->options.tz_set) in fat_time_fat2unix() 215 second -= sbi->options.time_offset * SECS_PER_MIN; in fat_time_fat2unix() 232 (sbi->options.tz_set ? sbi->options.time_offset : in fat_time_unix2fat()
|
D | fat.h | 81 struct fat_mount_options options; member 162 if (!sbi->options.rodir) in fat_mode_can_hold_ro() 164 mask = ~sbi->options.fs_dmask; in fat_mode_can_hold_ro() 166 mask = ~sbi->options.fs_fmask; in fat_mode_can_hold_ro() 177 if (attrs & ATTR_RO && !((attrs & ATTR_DIR) && !sbi->options.rodir)) in fat_make_mode() 181 return (mode & ~sbi->options.fs_dmask) | S_IFDIR; in fat_make_mode() 183 return (mode & ~sbi->options.fs_fmask) | S_IFREG; in fat_make_mode()
|
/linux-4.1.27/Documentation/kbuild/ |
D | kbuild.txt | 19 Additional options to pass when preprocessing. The preprocessing options 25 Additional options to the assembler (for built-in and modules). 29 Additional module specific options to use for $(AS). 33 Additional options for $(AS) when used for assembler 38 Additional options to the C compiler (for built-in and modules). 42 Additional options for $(CC) when used to compile 47 Additional module specific options to use for $(CC). 51 Additional options used for $(LD) when linking modules. 55 Additional options passed to final link of vmlinux. 106 Additional options for sparse. [all …]
|
D | kconfig-language.txt | 4 The configuration database is a collection of configuration options 7 +- Code maturity level options 88 are applied to all other options within this menu entry (which also 137 - misc options: "option" <symbol>[=<value>] 138 Various less common options can be defined via this option syntax, 140 symbol. These options are currently possible: 267 <config options> 270 attributes as options. 274 <config options> 278 separate list of options. [all …]
|
/linux-4.1.27/drivers/gpu/drm/ttm/ |
D | ttm_page_alloc.c | 113 struct ttm_pool_opts options; member 168 m->options.max_size = val; in ttm_pool_store() 170 m->options.small = val; in ttm_pool_store() 181 m->options.alloc_size = val; in ttm_pool_store() 195 val = m->options.max_size; in ttm_pool_show() 197 val = m->options.small; in ttm_pool_show() 199 val = m->options.alloc_size; in ttm_pool_show() 592 if (count < _manager->options.small in ttm_page_pool_fill_locked() 595 unsigned alloc_size = _manager->options.alloc_size; in ttm_page_pool_fill_locked() 708 if (pool->npages > _manager->options.max_size) { in ttm_put_pages() [all …]
|
D | ttm_page_alloc_dma.c | 172 struct ttm_pool_opts options; member 222 m->options.max_size = val; in ttm_pool_store() 224 m->options.small = val; in ttm_pool_store() 235 m->options.alloc_size = val; in ttm_pool_store() 249 val = m->options.max_size; in ttm_pool_show() 251 val = m->options.small; in ttm_pool_show() 253 val = m->options.alloc_size; in ttm_pool_show() 800 unsigned count = _manager->options.small; in ttm_dma_page_pool_fill_locked() 964 if (pool->npages_free > _manager->options.max_size) { in ttm_dma_unpopulate() 965 npages = pool->npages_free - _manager->options.max_size; in ttm_dma_unpopulate() [all …]
|
/linux-4.1.27/include/linux/mtd/ |
D | onenand.h | 97 unsigned int options; member 179 (this->options & ONENAND_HAS_2PLANE) 185 (this->options & ONENAND_HAS_CACHE_PROGRAM) 188 (this->options & ONENAND_HAS_NOP_1) 208 (this->options & ONENAND_HAS_4KB_PAGE)
|
D | bbm.h | 58 int options; member 156 int options; member
|
D | nand.h | 165 #define NAND_HAS_CACHEPROG(chip) ((chip->options & NAND_CACHEPRG)) 166 #define NAND_HAS_SUBPAGE_READ(chip) ((chip->options & NAND_SUBPAGE_READ)) 676 unsigned int options; member 751 .chipsize = (chipsz), .erasesize = (erasesz), .options = (opts) } 765 .options = (opts) } 813 unsigned int options; member 865 unsigned int options; member
|
/linux-4.1.27/arch/mips/sgi-ip32/ |
D | ip32-setup.c | 93 static char options[8] __initdata; in plat_mem_setup() local 96 strcpy(options, baud); in plat_mem_setup() 98 baud ? options : NULL); in plat_mem_setup()
|
/linux-4.1.27/net/ipv4/netfilter/ |
D | ipt_SYNPROXY.c | 98 if (opts->options & XT_SYNPROXY_OPT_ECN) in synproxy_send_client_synack() 142 if (opts->options & XT_SYNPROXY_OPT_ECN) in synproxy_send_server_syn() 247 opts->options |= XT_SYNPROXY_OPT_MSS; in synproxy_recv_client_ack() 249 if (opts->options & XT_SYNPROXY_OPT_TIMESTAMP) in synproxy_recv_client_ack() 279 opts.options |= XT_SYNPROXY_OPT_ECN; in synproxy_tg4() 281 opts.options &= info->options; in synproxy_tg4() 282 if (opts.options & XT_SYNPROXY_OPT_TIMESTAMP) in synproxy_tg4() 285 opts.options &= ~(XT_SYNPROXY_OPT_WSCALE | in synproxy_tg4() 370 if (opts.options & XT_SYNPROXY_OPT_TIMESTAMP) in ipv4_synproxy_hook() 380 if (opts.options & XT_SYNPROXY_OPT_TIMESTAMP) in ipv4_synproxy_hook() [all …]
|
/linux-4.1.27/drivers/firmware/ |
D | pcdp.c | 27 static char options[64], *p = options; in setup_serial_console() local 45 add_preferred_console("uart", 8250, &options[9]); in setup_serial_console() 46 return setup_earlycon(options); in setup_serial_console()
|
/linux-4.1.27/drivers/scsi/qla2xxx/ |
D | qla_mid.c | 568 req->options |= BIT_0; in qla25xx_delete_req_que() 583 rsp->options |= BIT_0; in qla25xx_delete_rsp_que() 632 qla25xx_create_req_que(struct qla_hw_data *ha, uint16_t options, in qla25xx_create_req_que() argument 689 options |= BIT_4; in qla25xx_create_req_que() 692 options |= BIT_5; in qla25xx_create_req_que() 693 req->options = options; in qla25xx_create_req_que() 696 "options=0x%x.\n", req->options); in qla25xx_create_req_que() 698 "options=0x%x.\n", req->options); in qla25xx_create_req_que() 757 qla25xx_create_rsp_que(struct qla_hw_data *ha, uint16_t options, in qla25xx_create_rsp_que() argument 808 options |= BIT_4; in qla25xx_create_rsp_que() [all …]
|
/linux-4.1.27/net/ipv6/netfilter/ |
D | ip6t_SYNPROXY.c | 113 if (opts->options & XT_SYNPROXY_OPT_ECN) in synproxy_send_client_synack() 157 if (opts->options & XT_SYNPROXY_OPT_ECN) in synproxy_send_server_syn() 262 opts->options |= XT_SYNPROXY_OPT_MSS; in synproxy_recv_client_ack() 264 if (opts->options & XT_SYNPROXY_OPT_TIMESTAMP) in synproxy_recv_client_ack() 294 opts.options |= XT_SYNPROXY_OPT_ECN; in synproxy_tg6() 296 opts.options &= info->options; in synproxy_tg6() 297 if (opts.options & XT_SYNPROXY_OPT_TIMESTAMP) in synproxy_tg6() 300 opts.options &= ~(XT_SYNPROXY_OPT_WSCALE | in synproxy_tg6() 392 if (opts.options & XT_SYNPROXY_OPT_TIMESTAMP) in ipv6_synproxy_hook() 402 if (opts.options & XT_SYNPROXY_OPT_TIMESTAMP) in ipv6_synproxy_hook() [all …]
|
/linux-4.1.27/drivers/video/fbdev/ |
D | grvga.c | 270 static int grvga_parse_custom(char *options, in grvga_parse_custom() argument 275 if (!options || !*options) in grvga_parse_custom() 278 while ((this_opt = strsep(&options, " ")) != NULL) { in grvga_parse_custom() 341 char *options = NULL, *mode_opt = NULL; in grvga_probe() local 355 if (fb_get_options("grvga", &options)) { in grvga_probe() 360 if (!options || !*options) in grvga_probe() 361 options = "640x480-8@60"; in grvga_probe() 364 char *this_opt = strsep(&options, ","); in grvga_probe()
|
D | fm2fb.c | 296 int __init fm2fb_setup(char *options) in fm2fb_setup() argument 300 if (!options || !*options) in fm2fb_setup() 303 while ((this_opt = strsep(&options, ",")) != NULL) { in fm2fb_setup()
|
D | efifb.c | 85 static int efifb_setup(char *options) in efifb_setup() argument 90 if (options && *options) { in efifb_setup() 91 while ((this_opt = strsep(&options, ",")) != NULL) { in efifb_setup()
|
/linux-4.1.27/arch/mips/sni/ |
D | setup.c | 65 static char options[8] __initdata; in sni_console_setup() local 82 strcpy(options, baud); in sni_console_setup() 85 baud ? options : NULL); in sni_console_setup() 88 baud ? options : NULL); in sni_console_setup()
|
/linux-4.1.27/drivers/scsi/ |
D | BusLogic.c | 3654 static int __init blogic_parseopts(char *options) in blogic_parseopts() argument 3662 while (*options != '\0' && *options != ';') { in blogic_parseopts() 3664 if (blogic_parse(&options, "IO:")) { in blogic_parseopts() 3665 unsigned long io_addr = simple_strtoul(options, in blogic_parseopts() 3666 &options, 0); in blogic_parseopts() 3691 } else if (blogic_parse(&options, "NoProbeISA")) in blogic_parseopts() 3693 else if (blogic_parse(&options, "NoProbePCI")) in blogic_parseopts() 3695 else if (blogic_parse(&options, "NoProbe")) in blogic_parseopts() 3697 else if (blogic_parse(&options, "NoSortPCI")) in blogic_parseopts() 3699 else if (blogic_parse(&options, "MultiMasterFirst")) in blogic_parseopts() [all …]
|
D | st.c | 2216 static int st_set_options(struct scsi_tape *STp, long options) 2240 code = options & MT_ST_OPTIONS; 2242 STm->do_buffer_writes = (options & MT_ST_BUFFER_WRITES) != 0; 2243 STm->do_async_writes = (options & MT_ST_ASYNC_WRITES) != 0; 2244 STm->defaults_for_writes = (options & MT_ST_DEF_WRITES) != 0; 2245 STm->do_read_ahead = (options & MT_ST_READ_AHEAD) != 0; 2246 STp->two_fm = (options & MT_ST_TWO_FM) != 0; 2247 STp->fast_mteom = (options & MT_ST_FAST_MTEOM) != 0; 2248 STp->do_auto_lock = (options & MT_ST_AUTO_LOCK) != 0; 2249 STp->can_bsr = (options & MT_ST_CAN_BSR) != 0; [all …]
|
/linux-4.1.27/scripts/ |
D | config | 11 Manipulate options in a .config file from the command line. 13 $myname options command ... 34 options:
|
/linux-4.1.27/net/openvswitch/ |
D | vport-geneve.c | 101 geneveh->options, opts_len); in geneve_rcv() 129 struct nlattr *options = parms->options; in geneve_tnl_create() local 137 if (!options) { in geneve_tnl_create() 142 a = nla_find_nested(options, OVS_TUNNEL_ATTR_DST_PORT); in geneve_tnl_create() 204 opts = (u8 *)tun_info->options; in geneve_tnl_send()
|
D | vport-vxlan.c | 154 struct nlattr *options = parms->options; in vxlan_tnl_create() local 162 if (!options) { in vxlan_tnl_create() 166 a = nla_find_nested(options, OVS_TUNNEL_ATTR_DST_PORT); in vxlan_tnl_create() 183 a = nla_find_nested(options, OVS_TUNNEL_ATTR_EXTENSION); in vxlan_tnl_create() 212 opts = tun_info->options; in vxlan_ext_gbp()
|
/linux-4.1.27/Documentation/m68k/ |
D | 00-INDEX | 5 kernel-options.txt 6 - command line options for Linux/m68k
|
/linux-4.1.27/drivers/net/ethernet/via/ |
D | via-velocity.c | 582 for (i = 0; i < vptr->options.numrx; ++i) in velocity_rx_reset() 585 writew(vptr->options.numrx, ®s->RBRDU); in velocity_rx_reset() 588 writew(vptr->options.numrx - 1, ®s->RDCSize); in velocity_rx_reset() 603 switch (vptr->options.spd_dpx) { in velocity_get_opt_media_mode() 803 switch (vptr->options.flow_cntl) { in set_mii_flow_control() 1009 } else if (vptr->options.spd_dpx == SPD_DPX_AUTO) { in velocity_print_link_status() 1025 switch (vptr->options.spd_dpx) { in velocity_print_link_status() 1059 switch (vptr->options.flow_cntl) { in enable_flow_control_ability() 1273 txqueue_timer = vptr->options.txqueue_timer; in setup_queue_timers() 1274 rxqueue_timer = vptr->options.rxqueue_timer; in setup_queue_timers() [all …]
|
/linux-4.1.27/drivers/scsi/qla4xxx/ |
D | ql4_os.c | 273 uint32_t options = 0; in qla4xxx_send_ping() local 286 rval = qla4xxx_ping_iocb(ha, options, payload_size, pid, in qla4xxx_send_ping() 296 options |= PING_IPV6_PROTOCOL_ENABLE; in qla4xxx_send_ping() 304 options |= PING_IPV6_LINKLOCAL_ADDR; in qla4xxx_send_ping() 305 rval = qla4xxx_ping_iocb(ha, options, payload_size, in qla4xxx_send_ping() 319 options &= ~PING_IPV6_LINKLOCAL_ADDR; in qla4xxx_send_ping() 321 options |= PING_IPV6_ADDR0; in qla4xxx_send_ping() 328 options |= PING_IPV6_ADDR1; in qla4xxx_send_ping() 335 rval = qla4xxx_ping_iocb(ha, options, payload_size, in qla4xxx_send_ping() 2942 if (ddb_entry->fw_ddb_entry.options & DDB_OPT_IPV6_DEVICE) { in qla4xxx_match_ipaddress() [all …]
|
/linux-4.1.27/include/linux/ceph/ |
D | libceph.h | 38 (client)->options->flags |= CEPH_OPT_##opt; 40 (!!((client)->options->flags & CEPH_OPT_##opt)) 119 struct ceph_options *options; member 191 extern struct ceph_options *ceph_parse_options(char *options,
|
/linux-4.1.27/drivers/scsi/dpt/ |
D | dptsig.h | 69 #pragma options align=packed 76 #pragma options align=mac68k 324 #pragma options align=reset 333 #pragma options align=reset
|
/linux-4.1.27/security/keys/ |
D | trusted.c | 864 struct trusted_key_options *options; in trusted_options_alloc() local 866 options = kzalloc(sizeof *options, GFP_KERNEL); in trusted_options_alloc() 867 if (options) { in trusted_options_alloc() 869 options->keytype = SRK_keytype; in trusted_options_alloc() 870 options->keyhandle = SRKHANDLE; in trusted_options_alloc() 872 return options; in trusted_options_alloc() 902 struct trusted_key_options *options = NULL; in trusted_instantiate() local 918 options = trusted_options_alloc(); in trusted_instantiate() 919 if (!options) { in trusted_instantiate() 929 key_cmd = datablob_parse(datablob, payload, options); in trusted_instantiate() [all …]
|
/linux-4.1.27/arch/mips/ |
D | Kconfig.debug | 40 by default specifies the kernel command line options. However, 42 default kernel command line or add a few extra options to it. 44 command line options directly into the kernel. For that, you 48 The built-in options will be concatenated to the default command 62 when you want to add some extra options to the command line or ignore 63 the default command line, you can supply some command-line options at 69 options.
|
/linux-4.1.27/arch/arm/mach-imx/ |
D | mach-cpuimx35.c | 146 static int __init eukrea_cpuimx35_otg_mode(char *options) in eukrea_cpuimx35_otg_mode() argument 148 if (!strcmp(options, "host")) in eukrea_cpuimx35_otg_mode() 150 else if (!strcmp(options, "device")) in eukrea_cpuimx35_otg_mode()
|
/linux-4.1.27/tools/perf/ui/browsers/ |
D | hists.c | 1301 static inline void free_popup_options(char **options, int n) in free_popup_options() argument 1306 zfree(&options[i]); in free_popup_options() 1318 char *pwd, *options[32], *abs_path[32], *tmp; in switch_data_file() local 1331 memset(options, 0, sizeof(options)); in switch_data_file() 1332 memset(options, 0, sizeof(abs_path)); in switch_data_file() 1353 options[nr_options] = strdup(name); in switch_data_file() 1354 if (!options[nr_options]) in switch_data_file() 1359 zfree(&options[nr_options]); in switch_data_file() 1379 choice = ui__popup_menu(nr_options, options); in switch_data_file() 1393 free_popup_options(options, nr_options); in switch_data_file() [all …]
|
/linux-4.1.27/net/ceph/ |
D | ceph_common.c | 129 struct ceph_options *opt2 = client->options; in ceph_compare_options() 328 ceph_parse_options(char *options, const char *dev_name, in ceph_parse_options() argument 349 dout("parse_options %p options '%s' dev_name '%s'\n", opt, options, in ceph_parse_options() 366 while ((c = strsep(&options, ",")) != NULL) { in ceph_parse_options() 495 struct ceph_options *opt = client->options; in ceph_print_client_options() 555 client->options = opt; in ceph_create_client() 572 myaddr = &client->options->my_addr; in ceph_create_client() 611 ceph_destroy_options(client->options); in ceph_destroy_client() 633 unsigned long timeout = client->options->mount_timeout * HZ; in __ceph_open_session()
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | OSS-Emulation.txt | 76 You can change this device mapping via the module options of 78 options are available for snd-pcm-oss: 88 options snd-pcm-oss adsp_map=2 90 The options take arrays. For configuring the second card, specify 94 options snd-pcm-oss adsp_map=0,2 96 To change the mapping of MIDI devices, the following options are 107 options snd-rawmidi midi_map=2 128 app_name fragments fragment_size [options] 135 options is the optional parameters. The following options are 161 The permission of proc files depend on the module options of snd. [all …]
|
/linux-4.1.27/Documentation/fb/ |
D | aty128fb.txt | 50 You can pass kernel command line options to vesafb with 51 `video=aty128fb:option1,option2:value2,option3' (multiple options should 52 be separated by comma, values are separated from options by `:'). 53 Accepted options:
|
D | pvr2fb.txt | 23 You can pass kernel command line options to pvr2fb with 24 `video=pvr2fb:option1,option2:value2,option3' (multiple options should be 25 separated by comma, values are separated from options by `:'). 26 Accepted options:
|
D | tgafb.txt | 38 You can pass kernel command line options to tgafb with 39 `video=tgafb:option1,option2:value2,option3' (multiple options should be 40 separated by comma, values are separated from options by `:'). 41 Accepted options:
|
D | intelfb.txt | 21 B. List of available options 108 D. Module options 112 (1 for TRUE, and 0 for FALSE) for those options which don't need a value. 125 options intelfb mode=800x600-32@75 vram=8 accel=1 hwcursor=1
|
D | gxfb.txt | 41 You can pass kernel command line options to gxfb with gxfb.<option>. 43 Accepted options:
|
D | sa1100fb.txt | 25 options may not be enough to configure the display. Adding sections to 30 Accepted options:
|
D | lxfb.txt | 41 You can pass kernel command line options to lxfb with lxfb.<option>. 43 Accepted options:
|
/linux-4.1.27/drivers/net/hamradio/ |
D | baycom_par.c | 132 unsigned int options; member 247 if (bc->options & BAYCOM_OPTIONS_SOFTDCD) { in par96_rx() 354 bc_drvname, dev->base_addr, dev->irq, bc->options); in par96_open() 402 bc->options = 0; in baycom_setmode() 404 bc->options = BAYCOM_OPTIONS_SOFTDCD; in baycom_setmode() 406 bc->options = !!strchr(modestr, '*'); in baycom_setmode() 431 strcpy(hi->data.modename, bc->options ? "par96" : "picpar"); in baycom_ioctl()
|
/linux-4.1.27/arch/powerpc/include/uapi/asm/ |
D | bootx.h | 21 #pragma options align=power 129 #pragma options align=reset
|
/linux-4.1.27/Documentation/x86/x86_64/ |
D | 00-INDEX | 3 boot-options.txt 4 - AMD64-specific boot options.
|
/linux-4.1.27/drivers/pnp/ |
D | quirks.c | 59 list_for_each_entry(option, &dev->options, list) { in quirk_awe32_resources() 75 list_for_each_entry(option, &dev->options, list) { in quirk_cmi8330_resources() 114 list_for_each_entry(option, &dev->options, list) { in quirk_sb16audio_resources() 145 list_for_each_entry(option, &dev->options, list) { in pnp_clone_dependent_set() 155 list_for_each_entry(option, &dev->options, list) { in pnp_clone_dependent_set() 214 list_for_each_entry(option, &dev->options, list) { in quirk_ad1815_mpu_resources()
|
/linux-4.1.27/arch/mips/mm/ |
D | c-r4k.c | 975 c->options |= MIPS_CPU_CACHE_CDEX_P; in probe_pcache() 990 c->options |= MIPS_CPU_CACHE_CDEX_P | MIPS_CPU_PREFETCH; in probe_pcache() 1004 c->options |= MIPS_CPU_CACHE_CDEX_P; in probe_pcache() 1005 c->options |= MIPS_CPU_PREFETCH; in probe_pcache() 1025 c->options |= MIPS_CPU_CACHE_CDEX_P; in probe_pcache() 1042 c->options |= MIPS_CPU_PREFETCH; in probe_pcache() 1056 c->options |= MIPS_CPU_CACHE_CDEX_P; in probe_pcache() 1085 c->options |= MIPS_CPU_CACHE_CDEX_P; in probe_pcache() 1101 c->options |= MIPS_CPU_CACHE_CDEX_P; in probe_pcache() 1102 c->options |= MIPS_CPU_PREFETCH; in probe_pcache() [all …]
|
/linux-4.1.27/fs/ncpfs/ |
D | getopt.c | 28 int ncp_getopt(const char *caller, char **options, const struct ncp_option *opts, in ncp_getopt() argument 35 if ((token = strsep(options, ",")) == NULL) in ncp_getopt()
|
/linux-4.1.27/drivers/usb/serial/ |
D | console.c | 58 static int usb_console_setup(struct console *co, char *options) in usb_console_setup() argument 73 if (options) { in usb_console_setup() 74 baud = simple_strtoul(options, NULL, 10); in usb_console_setup() 75 s = options; in usb_console_setup()
|
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/ |
D | pers.c | 53 LASSERT(!(md->options & (LNET_MD_IOVEC | LNET_MD_KIOV | in ptlrpc_fill_bulk_md() 56 md->options |= LNET_MD_KIOV; in ptlrpc_fill_bulk_md()
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-mem.txt | 11 'perf mem' [<options>] (record [<command>] | report) 16 from it, into perf.data. Perf record options are accepted and are passed through. 19 right set of options to display a memory access profile. By default, loads
|
D | perf-data.txt | 11 'perf data' [<common options>] <command> [<options>]",
|
D | perf-script.txt | 11 'perf script' [<options>] 12 'perf script' [<options>] record <script> [<record-options>] <command> 13 'perf script' [<options>] report <script> [script-args] 14 'perf script' [<options>] <script> <required-script-args> [<record-options>] <command> 15 'perf script' [<options>] <top-script> [script-args] 57 options of the corresponding commands. 66 [<record-options>] can be passed to the record steps of 'perf script
|
D | perf-help.txt | 15 With no options and no COMMAND given, the synopsis of the 'perf' 24 can be overridden by other options or configuration variables.
|
D | perf-probe.txt | 11 'perf probe' [options] --add='PROBE' [...] 13 'perf probe' [options] PROBE 15 'perf probe' [options] --del='[GROUP:]EVENT' [...] 19 'perf probe' [options] --line='LINE' 21 'perf probe' [options] --vars='PROBEPOINT' 121 In absence of -m/-x options, perf probe checks if the first argument after 122 the options is an absolute path name. If its an absolute path, perf probe 140 'FUNC' specifies a probed function name, and it may have one of the following options; '+OFFS' is t…
|
/linux-4.1.27/arch/mips/boot/compressed/ |
D | ld.script | 46 *(.MIPS.options) 47 *(.options)
|
/linux-4.1.27/drivers/platform/mips/ |
D | Kconfig | 9 Say Y here to get to see options for device drivers of various 14 If you say N, all options in this submenu will be skipped and disabled.
|
/linux-4.1.27/tools/perf/bench/ |
D | futex-wake.c | 41 static const struct option options[] = { variable 116 argc = parse_options(argc, argv, options, bench_futex_wake_usage, 0); in bench_futex_wake() 118 usage_with_options(bench_futex_wake_usage, options); in bench_futex_wake()
|
D | futex-requeue.c | 40 static const struct option options[] = { variable 115 argc = parse_options(argc, argv, options, bench_futex_requeue_usage, 0); in bench_futex_requeue() 210 usage_with_options(bench_futex_requeue_usage, options); in bench_futex_requeue()
|
D | futex-hash.c | 44 static const struct option options[] = { variable 119 argc = parse_options(argc, argv, options, bench_futex_hash_usage, 0); in bench_futex_hash() 121 usage_with_options(bench_futex_hash_usage, options); in bench_futex_hash()
|
/linux-4.1.27/drivers/char/mwave/ |
D | README | 1 Module options 4 The mwave module takes the following options. Note that these options
|
/linux-4.1.27/drivers/net/ethernet/amd/ |
D | amd8111e.c | 277 lp->options |= OPTION_JUMBO_ENABLE; in amd8111e_set_rx_buff_len() 280 lp->options &= ~OPTION_JUMBO_ENABLE; in amd8111e_set_rx_buff_len() 472 if(lp->options & OPTION_JUMBO_ENABLE){ in amd8111e_restart() 493 if(lp->options & OPTION_INTR_COAL_ENABLE){ in amd8111e_restart() 583 if(lp->options & OPTION_JUMBO_ENABLE) in amd8111e_init_hw_default() 1215 if(lp->options & OPTION_DYN_IPG_ENABLE) in amd8111e_close() 1253 if(lp->options & OPTION_DYN_IPG_ENABLE){ in amd8111e_open() 1373 lp->options |= OPTION_MULTICAST_ENABLE; in amd8111e_set_multicast_list() 1380 lp->options &= ~OPTION_MULTICAST_ENABLE; in amd8111e_set_multicast_list() 1387 lp->options |= OPTION_MULTICAST_ENABLE; in amd8111e_set_multicast_list() [all …]
|
D | pcnet32.c | 145 static int options[MAX_UNITS]; variable 291 int options; member 1814 (options[cards_found] >= sizeof(options_mapping))) in pcnet32_probe1() 1815 lp->options = PCNET32_PORT_ASEL; in pcnet32_probe1() 1817 lp->options = options_mapping[options[cards_found]]; in pcnet32_probe1() 1827 if (fdx && !(lp->options & PCNET32_PORT_ASEL) && in pcnet32_probe1() 1829 lp->options |= PCNET32_PORT_FD; in pcnet32_probe1() 1841 lp->options = PCNET32_PORT_FD | PCNET32_PORT_GPSI; in pcnet32_probe1() 1912 lp->options |= PCNET32_PORT_MII; in pcnet32_probe1() 2071 if (lp->options & PCNET32_PORT_ASEL) in pcnet32_open() [all …]
|
/linux-4.1.27/Documentation/blockdev/ |
D | floppy.txt | 10 LILO configuration options (Thinkpad users, read this) 27 Several floppy related options may be given, example: 32 If you give options both in the lilo config file and on the boot 34 prompt options coming last. That's why there are also options to 38 Module configuration options 42 modprobe floppy floppy="<options>" 47 If you need certain options enabled every time you load the floppy driver, 50 options floppy floppy="omnibook messages" 55 The floppy driver related options are:
|
/linux-4.1.27/Documentation/usb/ |
D | gadget_hid.txt | 97 combination of options and values. Available options and 137 struct options { 142 static struct options kmod[] = { 154 static struct options kval[] = { 234 static struct options mmod[] = { 279 static struct options jmod[] = { 336 printf(" keyboard options:\n" 346 printf(" mouse options:\n" 354 printf(" joystick options:\n");
|
/linux-4.1.27/fs/nfs/ |
D | super.c | 326 static int nfs4_validate_mount_data(void *options, 689 if (nfss->options & NFS_OPTION_FSCACHE) in nfs_show_mount_options() 692 if (nfss->options & NFS_OPTION_MIGRATION) in nfs_show_mount_options() 881 if (nfss->options & NFS_OPTION_FSCACHE) { in nfs_show_stats() 1309 mnt->options |= NFS_OPTION_FSCACHE; in nfs_parse_mount_options() 1314 mnt->options &= ~NFS_OPTION_FSCACHE; in nfs_parse_mount_options() 1319 mnt->options |= NFS_OPTION_MIGRATION; in nfs_parse_mount_options() 1322 mnt->options &= NFS_OPTION_MIGRATION; in nfs_parse_mount_options() 1559 mnt->options |= NFS_OPTION_FSCACHE; in nfs_parse_mount_options() 1616 if (mnt->options & NFS_OPTION_MIGRATION && in nfs_parse_mount_options() [all …]
|
/linux-4.1.27/drivers/virt/ |
D | Kconfig | 8 Say Y here to get to see options for device drivers that support 11 If you say N, all options in this submenu will be skipped and disabled.
|
/linux-4.1.27/arch/tile/kvm/ |
D | Kconfig | 10 Say Y here to get to see options for using your Linux host to run 14 If you say N, all options in this submenu will be skipped and
|
/linux-4.1.27/arch/arm/mach-s3c24xx/ |
D | mach-jive.c | 237 static int __init jive_mtdset(char *options) in jive_mtdset() argument 242 if (options == NULL || options[0] == '\0') in jive_mtdset() 245 if (kstrtoul(options, 10, &set)) { in jive_mtdset() 246 printk(KERN_ERR "failed to parse mtdset=%s\n", options); in jive_mtdset()
|
/linux-4.1.27/fs/hostfs/ |
D | hostfs_kern.c | 46 static int __init hostfs_args(char *options, int *add) in hostfs_args() argument 50 ptr = strchr(options, ','); in hostfs_args() 53 if (*options != '\0') in hostfs_args() 54 root_ino = options; in hostfs_args() 56 options = ptr; in hostfs_args() 57 while (options) { in hostfs_args() 58 ptr = strchr(options, ','); in hostfs_args() 61 if (*options != '\0') { in hostfs_args() 62 if (!strcmp(options, "append")) in hostfs_args() 65 options); in hostfs_args() [all …]
|
/linux-4.1.27/Documentation/networking/ |
D | vortex.txt | 73 options 3c59x debug=3 rx_copybreak=300 75 If you are using the PCMCIA tools (cardmgr) then the options may be 88 options=N1,N2,N3,... 94 options=0x204,0x204 96 The individual options are composed of a number of bitfields which 112 When generating a value for the 'options' setting, the above media 123 insmod 3c59x options=0x204 130 Sets the `options' parameter for all 3c59x NICs in the machine. 131 Entries in the `options' array above will override any setting of 136 Similar to bit 9 of 'options'. Forces the corresponding card into [all …]
|
D | smc9.txt | 17 options, such as for forcing IRQ. 21 Make will give you the appropriate options for various kernel support.
|
D | dns_resolver.txt | 40 The module should be enabled by turning on the kernel configuration options: 74 const char *options, char **_result, time_t *_expiry); 91 The options parameter may be NULL or it may be a set of options 136 off and processes any options included in the data, and then attaches the
|
/linux-4.1.27/drivers/of/ |
D | unittest.c | 50 const char *options; in of_unittest_find_node_by_name() local 92 np = of_find_node_opts_by_path("/testcase-data:testoption", &options); in of_unittest_find_node_by_name() 93 unittest(np && !strcmp("testoption", options), in of_unittest_find_node_by_name() 97 np = of_find_node_opts_by_path("/testcase-data:test/option", &options); in of_unittest_find_node_by_name() 98 unittest(np && !strcmp("test/option", options), in of_unittest_find_node_by_name() 102 np = of_find_node_opts_by_path("/testcase-data/testcase-device1:test/option", &options); in of_unittest_find_node_by_name() 103 unittest(np && !strcmp("test/option", options), in of_unittest_find_node_by_name() 112 &options); in of_unittest_find_node_by_name() 113 unittest(np && !strcmp("testaliasoption", options), in of_unittest_find_node_by_name() 118 &options); in of_unittest_find_node_by_name() [all …]
|
/linux-4.1.27/drivers/accessibility/ |
D | Kconfig | 11 Say Y here to get to see options for accessibility. 14 If you say N, all options in this submenu will be skipped and disabled.
|
/linux-4.1.27/tools/testing/fault-injection/ |
D | failcmd.sh | 20 Usage: $0 [options] command [arguments] 47 failslab options: 50 fail_page_alloc options:
|
/linux-4.1.27/drivers/staging/fsl-mc/include/ |
D | dprc.h | 129 uint64_t options; member 382 uint64_t options; member 496 uint32_t options; member
|
/linux-4.1.27/arch/x86/xen/ |
D | Kconfig | 2 # This Kconfig describes xen options 46 Enable statistics output and various tuning options in debugfs.
|
/linux-4.1.27/arch/arm64/kvm/ |
D | Kconfig | 10 Say Y here to get to see options for using your Linux host to run 14 If you say N, all options in this submenu will be skipped and
|
/linux-4.1.27/arch/mips/kvm/ |
D | Kconfig | 9 Say Y here to get to see options for using your Linux host to run 13 If you say N, all options in this submenu will be skipped and disabled.
|
/linux-4.1.27/drivers/iio/common/ssp_sensors/ |
D | ssp_spi.c | 40 __le16 options; member 46 u16 options; member 96 h.options = cpu_to_le16(opt); in ssp_create_msg() 107 msg->options = opt; in ssp_create_msg() 372 if (msg->options == msg_options) { in ssp_irq_msg() 414 msg->options = in ssp_irq_msg()
|
/linux-4.1.27/drivers/net/ethernet/realtek/ |
D | 8139cp.c | 1330 u8 options; in netdev_set_wol() local 1332 options = cpr8 (Config3) & ~(LinkUp | MagicPacket); in netdev_set_wol() 1335 if (wol->wolopts & WAKE_PHY) options |= LinkUp; in netdev_set_wol() 1336 if (wol->wolopts & WAKE_MAGIC) options |= MagicPacket; in netdev_set_wol() 1340 cpw8 (Config3, options); in netdev_set_wol() 1343 options = 0; /* Paranoia setting */ in netdev_set_wol() 1344 options = cpr8 (Config5) & ~(UWF | MWF | BWF); in netdev_set_wol() 1347 if (wol->wolopts & WAKE_UCAST) options |= UWF; in netdev_set_wol() 1348 if (wol->wolopts & WAKE_BCAST) options |= BWF; in netdev_set_wol() 1349 if (wol->wolopts & WAKE_MCAST) options |= MWF; in netdev_set_wol() [all …]
|
/linux-4.1.27/drivers/cdrom/ |
D | cdrom.c | 614 cdi->options = CDO_USE_FFLAGS; in register_cdrom() 617 cdi->options |= (int) CDO_AUTO_CLOSE; in register_cdrom() 619 cdi->options |= (int) CDO_AUTO_EJECT; in register_cdrom() 621 cdi->options |= (int) CDO_LOCK; in register_cdrom() 623 cdi->options |= (int) CDO_CHECK_TYPE; in register_cdrom() 1050 cdi->options & CDO_AUTO_CLOSE) { in open_for_data() 1094 if (cdi->options & CDO_CHECK_TYPE) { in open_for_data() 1120 if (CDROM_CAN(CDC_LOCK) && (cdi->options & CDO_LOCK)) { in open_for_data() 1134 if (CDROM_CAN(CDC_LOCK) && cdi->options & CDO_LOCK) { in open_for_data() 1162 if ((mode & FMODE_NDELAY) && (cdi->options & CDO_USE_FFLAGS)) { in cdrom_open() [all …]
|
/linux-4.1.27/tools/usb/usbip/ |
D | INSTALL | 76 Some systems require unusual options for compilation or linking that the 118 options like `--bindir=DIR' to specify different values for particular 129 Some packages pay attention to `--enable-FEATURE' options to 131 They may also pay attention to `--with-PACKAGE' options, where PACKAGE 133 `README' should mention any `--enable-' and `--with-' options that the 138 you can use the `configure' options `--x-includes=DIR' and 204 `configure' recognizes the following options to control how it operates. 208 Print a summary of the options to `configure', and exit. 235 `configure' also accepts some other, not widely useful, options. Run
|
/linux-4.1.27/Documentation/frv/ |
D | README.txt | 17 A summary of the configuration options particular to this architecture. 23 command line options.
|
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/ |
D | obd_mount.c | 988 static int lmd_parse(char *options, struct lustre_mount_data *lmd) in lmd_parse() argument 991 struct lustre_mount_data *raw = (struct lustre_mount_data *)options; in lmd_parse() 995 if (!options) { in lmd_parse() 1015 s1 = options; in lmd_parse() 1159 s1 = options + strlen(options) - 1; in lmd_parse() 1160 while (s1 >= options && (*s1 == ',' || *s1 == ' ')) in lmd_parse() 1162 if (*options != 0) { in lmd_parse() 1164 OBD_ALLOC(lmd->lmd_opts, strlen(options) + 1); in lmd_parse() 1167 strcpy(lmd->lmd_opts, options); in lmd_parse() 1176 CERROR("Bad mount options %s\n", options); in lmd_parse()
|
/linux-4.1.27/arch/powerpc/platforms/ps3/ |
D | Kconfig | 21 bool "PS3 Advanced configuration options" 23 This gives you access to some advanced options for the PS3. The 24 defaults should be fine for most users, but these options may make 30 the questions about these options. 134 contains the boot loader and some boot options.
|
/linux-4.1.27/arch/sparc/kernel/ |
D | viohs.c | 190 u.pkt.options = VIO_TX_DRING; in send_dreg() 195 u.pkt.num_descr, u.pkt.descr_size, u.pkt.options, in send_dreg() 420 pkt->num_descr, pkt->descr_size, pkt->options, in process_dreg_info() 431 if (!(pkt->options & VIO_TX_DRING)) in process_dreg_info() 433 pkt->options = VIO_TX_DRING; in process_dreg_info() 466 pkt->num_descr, pkt->descr_size, pkt->options, in process_dreg_info() 494 pkt->num_descr, pkt->descr_size, pkt->options, in process_dreg_ack() 519 pkt->num_descr, pkt->descr_size, pkt->options, in process_dreg_nack()
|
/linux-4.1.27/arch/arm/kvm/ |
D | Kconfig | 10 Say Y here to get to see options for using your Linux host to run 14 If you say N, all options in this submenu will be skipped and
|