Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 174) sorted by relevance

1234567

/linux-4.19.296/include/linux/netfilter/
Dnf_conntrack_h323_types.h9 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.19.296/drivers/s390/net/
Dqeth_l2_sys.c28 card->options.sbp.supported_funcs) in qeth_bridge_port_role_state_show()
30 &card->options.sbp.role, &state); in qeth_bridge_port_role_state_show()
44 switch (card->options.sbp.role) { in qeth_bridge_port_role_state_show()
56 card->options.sbp.role, state); in qeth_bridge_port_role_state_show()
97 else if (card->options.sbp.reflect_promisc) in qeth_bridge_port_role_store()
103 card->options.sbp.role = role; in qeth_bridge_port_role_store()
105 card->options.sbp.role = role; in qeth_bridge_port_role_store()
141 enabled = card->options.sbp.hostnotification; in qeth_bridgeport_hostnotification_show()
167 card->options.sbp.hostnotification = enable; in qeth_bridgeport_hostnotification_store()
169 card->options.sbp.hostnotification = enable; in qeth_bridgeport_hostnotification_store()
[all …]
Dqeth_l2_main.c541 if (!card->options.sbp.reflect_promisc) in qeth_promisc_to_bridge()
549 if (card->options.sbp.reflect_promisc_primary) in qeth_promisc_to_bridge()
560 card->options.sbp.role = role; in qeth_promisc_to_bridge()
673 if (card->options.performance_stats) in qeth_l2_xmit()
689 if (card->options.performance_stats) { in qeth_l2_xmit()
739 if (card->options.performance_stats) { in qeth_l2_hard_start_xmit()
753 if (card->options.performance_stats) in qeth_l2_hard_start_xmit()
843 card->options.layer2 = 1; in qeth_l2_probe_device()
959 QETH_CARD_HEX(card, 2, &card->options.sbp.supported_funcs, in qeth_l2_trace_features()
960 sizeof(card->options.sbp.supported_funcs)); in qeth_l2_trace_features()
[all …]
Dqeth_l3_sys.c66 return qeth_l3_dev_route_show(card, &card->options.route4, buf); in qeth_l3_dev_route4_show()
115 return qeth_l3_dev_route_store(card, &card->options.route4, in qeth_l3_dev_route4_store()
130 return qeth_l3_dev_route_show(card, &card->options.route6, buf); in qeth_l3_dev_route6_show()
141 return qeth_l3_dev_route_store(card, &card->options.route6, in qeth_l3_dev_route6_store()
156 return sprintf(buf, "%i\n", card->options.fake_broadcast? 1:0); in qeth_l3_dev_fake_broadcast_show()
178 card->options.fake_broadcast = i; in qeth_l3_dev_fake_broadcast_store()
197 return sprintf(buf, "%i\n", card->options.sniffer ? 1 : 0); in qeth_l3_dev_sniffer_show()
212 if (card->options.cq == QETH_CQ_ENABLED) in qeth_l3_dev_sniffer_store()
229 card->options.sniffer = i; in qeth_l3_dev_sniffer_store()
234 card->options.sniffer = i; in qeth_l3_dev_sniffer_store()
[all …]
Dqeth_core_main.c340 if (card->options.cq == QETH_CQ_ENABLED) { in qeth_cq_init()
362 if (card->options.cq == QETH_CQ_ENABLED) { in qeth_alloc_cq()
443 if (q->card->options.cq != QETH_CQ_ENABLED) in qeth_cleanup_handled_pending()
523 return card->options.cq == QETH_CQ_ENABLED && in qeth_is_cq()
1426 card->options.route4.type = NO_ROUTER; in qeth_set_initial_options()
1427 card->options.route6.type = NO_ROUTER; in qeth_set_initial_options()
1428 card->options.rx_sg_cb = QETH_RX_SG_CB; in qeth_set_initial_options()
1429 card->options.isolation = ISOLATION_MODE_NONE; in qeth_set_initial_options()
1430 card->options.cq = QETH_CQ_DISABLED; in qeth_set_initial_options()
1524 card->options.layer2 = -1; in qeth_alloc_card()
[all …]
Dqeth_core_sys.c231 if (!card->options.layer2) { in qeth_dev_prioqing_store()
340 return sprintf(buf, "%i\n", card->options.performance_stats ? 1:0); in qeth_dev_performance_stats_show()
356 if (i == card->options.performance_stats) in qeth_dev_performance_stats_store()
358 card->options.performance_stats = i; in qeth_dev_performance_stats_store()
382 return sprintf(buf, "%i\n", card->options.layer2); in qeth_dev_layer2_show()
416 if (card->options.layer2 == newdis) in qeth_dev_layer2_store()
435 card->options.layer2 = -1; in qeth_dev_layer2_store()
468 switch (card->options.isolation) { in qeth_dev_isolation_show()
513 card->options.prev_isolation = card->options.isolation; in qeth_dev_isolation_store()
514 card->options.isolation = isolation; in qeth_dev_isolation_store()
/linux-4.19.296/fs/afs/
Dmntpt.c79 char *devname, *options; in afs_mntpt_do_automount() local
92 options = (char *) get_zeroed_page(GFP_KERNEL); in afs_mntpt_do_automount()
93 if (!options) in afs_mntpt_do_automount()
147 memcpy(options, "cell=", 5); in afs_mntpt_do_automount()
148 strcpy(options + 5, as->cell->name); in afs_mntpt_do_automount()
150 strcat(options, ",rwpath"); in afs_mntpt_do_automount()
154 _debug("--- attempting mount %s -o %s ---", devname, options); in afs_mntpt_do_automount()
155 mnt = vfs_submount(mntpt, &afs_fs_type, devname, options); in afs_mntpt_do_automount()
159 free_page((unsigned long) options); in afs_mntpt_do_automount()
166 free_page((unsigned long) options); in afs_mntpt_do_automount()
Dsuper.c198 char *options, const char **devname) in afs_parse_options() argument
205 _enter("%s", options); in afs_parse_options()
207 options[PAGE_SIZE - 1] = 0; in afs_parse_options()
209 while ((p = strsep(&options, ","))) { in afs_parse_options()
494 int flags, const char *dev_name, void *options) in afs_mount() argument
503 _enter(",,%s,%p", dev_name, options); in afs_mount()
514 if (options) { in afs_mount()
515 ret = afs_parse_options(&params, options, &dev_name); in afs_mount()
/linux-4.19.296/fs/
Dcompat.c98 void *options; in COMPAT_SYSCALL_DEFINE5() local
112 options = copy_mount_options(data); in COMPAT_SYSCALL_DEFINE5()
113 retval = PTR_ERR(options); in COMPAT_SYSCALL_DEFINE5()
114 if (IS_ERR(options)) in COMPAT_SYSCALL_DEFINE5()
117 if (kernel_type && options) { in COMPAT_SYSCALL_DEFINE5()
120 if (do_nfs4_super_data_conv(options)) in COMPAT_SYSCALL_DEFINE5()
125 retval = do_mount(kernel_dev, dir_name, kernel_type, flags, options); in COMPAT_SYSCALL_DEFINE5()
128 kfree(options); in COMPAT_SYSCALL_DEFINE5()
/linux-4.19.296/drivers/s390/cio/
Ddevice_ops.c47 cdev->private->options.fast = (flags & CCWDEV_EARLY_NOTIFICATION) != 0; in ccw_device_set_options_mask()
48 cdev->private->options.repall = (flags & CCWDEV_REPORT_ALL) != 0; in ccw_device_set_options_mask()
49 cdev->private->options.pgroup = (flags & CCWDEV_DO_PATHGROUP) != 0; in ccw_device_set_options_mask()
50 cdev->private->options.force = (flags & CCWDEV_ALLOW_FORCE) != 0; in ccw_device_set_options_mask()
51 cdev->private->options.mpath = (flags & CCWDEV_DO_MULTIPATH) != 0; in ccw_device_set_options_mask()
72 cdev->private->options.repall) || in ccw_device_set_options()
74 cdev->private->options.fast)) in ccw_device_set_options()
76 cdev->private->options.fast |= (flags & CCWDEV_EARLY_NOTIFICATION) != 0; in ccw_device_set_options()
77 cdev->private->options.repall |= (flags & CCWDEV_REPORT_ALL) != 0; in ccw_device_set_options()
78 cdev->private->options.pgroup |= (flags & CCWDEV_DO_PATHGROUP) != 0; in ccw_device_set_options()
[all …]
/linux-4.19.296/include/linux/
Dppp-comp.h40 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,
Dtpm.h62 struct trusted_key_options *options);
65 struct trusted_key_options *options);
92 struct trusted_key_options *options) in tpm_seal_trusted() argument
98 struct trusted_key_options *options) in tpm_unseal_trusted() argument
/linux-4.19.296/drivers/char/tpm/
Dtpm2-cmd.c422 struct trusted_key_options *options) in tpm2_seal_trusted() argument
431 if (options->hash == tpm2_hash_map[i].crypto_id) { in tpm2_seal_trusted()
444 tpm_buf_append_u32(&buf, options->keyhandle); in tpm2_seal_trusted()
448 options->keyauth /* hmac */, in tpm2_seal_trusted()
455 tpm_buf_append(&buf, options->blobauth, TPM_DIGEST_SIZE); in tpm2_seal_trusted()
461 tpm_buf_append_u16(&buf, 14 + options->policydigest_len); in tpm2_seal_trusted()
466 if (options->policydigest_len) { in tpm2_seal_trusted()
468 tpm_buf_append_u16(&buf, options->policydigest_len); in tpm2_seal_trusted()
469 tpm_buf_append(&buf, options->policydigest, in tpm2_seal_trusted()
470 options->policydigest_len); in tpm2_seal_trusted()
[all …]
/linux-4.19.296/drivers/isdn/mISDN/
Dtei.c131 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.19.296/include/linux/mtd/
Donenand.h96 unsigned int options; member
177 (this->options & ONENAND_HAS_2PLANE)
183 (this->options & ONENAND_HAS_CACHE_PROGRAM)
186 (this->options & ONENAND_HAS_NOP_1)
206 (this->options & ONENAND_HAS_4KB_PAGE)
Dbbm.h56 int options; member
154 int options; member
/linux-4.19.296/fs/fat/
Dfile.c80 if (sbi->options.sys_immutable && in fat_ioctl_set_attributes()
102 if (sbi->options.sys_immutable) { in fat_ioctl_set_attributes()
186 MSDOS_SB(inode->i_sb)->options.flush) { in fat_file_release()
413 if (MSDOS_SB(inode->i_sb)->options.nfs == FAT_NFS_NOSTALE_RO) { in fat_getattr()
432 mask = sbi->options.fs_fmask; in fat_sanitize_mode()
434 mask = sbi->options.fs_dmask; in fat_sanitize_mode()
461 umode_t allow_utime = sbi->options.allow_utime; in fat_allow_set_time()
495 if (sbi->options.quiet) in fat_setattr()
518 (!uid_eq(attr->ia_uid, sbi->options.fs_uid))) || in fat_setattr()
520 (!gid_eq(attr->ia_gid, sbi->options.fs_gid))) || in fat_setattr()
[all …]
Dnamei_msdos.c125 err = msdos_format_name(name, len, msdos_name, &sbi->options); in msdos_find()
130 if (!err && sbi->options.dotsOK) { in msdos_find()
152 struct fat_mount_options *options = &MSDOS_SB(dentry->d_sb)->options; in msdos_hash() local
156 error = msdos_format_name(qstr->name, qstr->len, msdos_name, options); in msdos_hash()
169 struct fat_mount_options *options = &MSDOS_SB(dentry->d_sb)->options; in msdos_cmp() local
173 error = msdos_format_name(name->name, name->len, a_msdos_name, options); in msdos_cmp()
176 error = msdos_format_name(str, len, b_msdos_name, options); in msdos_cmp()
276 msdos_name, &MSDOS_SB(sb)->options); in msdos_create()
353 msdos_name, &MSDOS_SB(sb)->options); in msdos_mkdir()
610 &MSDOS_SB(old_dir->i_sb)->options); in msdos_rename()
[all …]
Dinode.c416 if (S_ISDIR(inode->i_mode) && sbi->options.nfs) { in fat_attach()
435 if (S_ISDIR(inode->i_mode) && sbi->options.nfs) { in fat_detach()
515 inode->i_uid = sbi->options.fs_uid; in fat_fill_inode()
516 inode->i_gid = sbi->options.fs_gid; in fat_fill_inode()
541 ((sbi->options.showexec && !is_exec(de->name + 8)) in fat_fill_inode()
553 if (sbi->options.sys_immutable) in fat_fill_inode()
562 if (sbi->options.isvfat) { in fat_fill_inode()
574 if (sbi->options.nfs == FAT_NFS_NOSTALE_RO) in fat_lock_build_inode()
580 if (sbi->options.nfs == FAT_NFS_NOSTALE_RO) in fat_unlock_build_inode()
720 fat_reset_iocharset(&sbi->options); in delayed_free()
[all …]
Dmisc.c21 struct fat_mount_options *opts = &MSDOS_SB(sb)->options; in __fat_fs_error()
213 if (!sbi->options.tz_set) in fat_time_fat2unix()
216 second -= sbi->options.time_offset * SECS_PER_MIN; in fat_time_fat2unix()
233 (sbi->options.tz_set ? sbi->options.time_offset : in fat_time_unix2fat()
Dfat.h82 struct fat_mount_options options; member
163 if (!sbi->options.rodir) in fat_mode_can_hold_ro()
165 mask = ~sbi->options.fs_dmask; in fat_mode_can_hold_ro()
167 mask = ~sbi->options.fs_fmask; in fat_mode_can_hold_ro()
178 if (attrs & ATTR_RO && !((attrs & ATTR_DIR) && !sbi->options.rodir)) in fat_make_mode()
182 return (mode & ~sbi->options.fs_dmask) | S_IFDIR; in fat_make_mode()
184 return (mode & ~sbi->options.fs_fmask) | S_IFREG; in fat_make_mode()
/linux-4.19.296/drivers/char/mwave/
DREADME1 Module options
4 The mwave module takes the following options. Note that these options
/linux-4.19.296/fs/nfs/
Dsuper.c328 static int nfs4_validate_mount_data(void *options,
687 if (nfss->options & NFS_OPTION_FSCACHE) in nfs_show_mount_options()
690 if (nfss->options & NFS_OPTION_MIGRATION) in nfs_show_mount_options()
879 if (nfss->options & NFS_OPTION_FSCACHE) { in nfs_show_stats()
1322 mnt->options |= NFS_OPTION_FSCACHE; in nfs_parse_mount_options()
1327 mnt->options &= ~NFS_OPTION_FSCACHE; in nfs_parse_mount_options()
1332 mnt->options |= NFS_OPTION_MIGRATION; in nfs_parse_mount_options()
1335 mnt->options &= ~NFS_OPTION_MIGRATION; in nfs_parse_mount_options()
1579 mnt->options |= NFS_OPTION_FSCACHE; in nfs_parse_mount_options()
1636 if (mnt->options & NFS_OPTION_MIGRATION && in nfs_parse_mount_options()
[all …]
/linux-4.19.296/fs/proc/
Droot.c39 int proc_parse_options(char *options, struct pid_namespace *pid) in proc_parse_options() argument
45 if (!options) in proc_parse_options()
48 while ((p = strsep(&options, ",")) != NULL) { in proc_parse_options()
/linux-4.19.296/drivers/virt/
DKconfig8 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.

1234567