Searched refs:opts (Results 1 - 25 of 512) sorted by last modified time

1234567891011>>

/linux-master/drivers/nvme/host/
H A Dtcp.c221 return ctrl->opts->tls;
1616 if (nctrl->opts->keyring)
1617 keyring = key_serial(nctrl->opts->keyring);
1699 if (nctrl->opts->tos >= 0)
1700 ip_sock_set_tos(queue->sock->sk, nctrl->opts->tos);
1715 if (nctrl->opts->mask & NVMF_OPT_HOST_TRADDR) {
1726 if (nctrl->opts->mask & NVMF_OPT_HOST_IFACE) {
1727 char *iface = nctrl->opts->host_iface;
1740 queue->hdr_digest = nctrl->opts->hdr_digest;
1741 queue->data_digest = nctrl->opts
2187 struct nvmf_ctrl_options *opts = ctrl->opts; local
2667 nvme_tcp_existing_controller(struct nvmf_ctrl_options *opts) argument
2683 nvme_tcp_create_ctrl(struct device *dev, struct nvmf_ctrl_options *opts) argument
[all...]
H A Dnvme.h386 struct nvmf_ctrl_options *opts; member in struct:nvme_ctrl
H A Dcore.c179 if (!ctrl->opts || ctrl->opts->fast_io_fail_tmo == -1)
183 ctrl->opts->fast_io_fail_tmo * HZ);
188 if (!ctrl->opts)
2828 return ctrl->opts && ctrl->opts->discovery_nqn;
3734 if (ctrl->opts && ctrl->opts->data_digest)
4143 struct nvmf_ctrl_options *opts = ctrl->opts; local
[all...]
/linux-master/fs/bcachefs/
H A Dinode.c672 bch2_str_hash_opt_to_type(c, c->opts.str_hash);
742 unsigned bits = (c->opts.inodes_32bit ? 31 : 63);
744 if (c->opts.shard_inode_numbers) {
1006 void bch2_inode_opts_get(struct bch_io_opts *opts, struct bch_fs *c, argument
1009 #define x(_name, _bits) opts->_name = inode_opt_get(c, inode, _name);
1013 if (opts->nocow)
1014 opts->compression = opts->background_compression = opts->data_checksum = opts
1017 bch2_inum_opts_get(struct btree_trans *trans, subvol_inum inum, struct bch_io_opts *opts) argument
[all...]
H A Dbuckets.c1355 if ((c->opts.buckets_nouse &&
H A Dbtree_node_scan.c348 if (0 && c->opts.verbose) {
377 if (0 && c->opts.verbose) {
398 if (c->opts.verbose) {
474 if (c->opts.verbose) {
H A Dsuper.c106 void bch2_print_opts(struct bch_opts *opts, const char *fmt, ...) argument
108 struct stdio_redirect *stdio = (void *)(unsigned long)opts->stdio;
519 if (c->opts.recovery_pass_last &&
520 c->opts.recovery_pass_last < BCH_RECOVERY_PASS_journal_replay)
523 if (c->opts.nochanges)
734 static struct bch_fs *bch2_fs_alloc(struct bch_sb *sb, struct bch_opts opts) argument
747 c->stdio = (void *)(unsigned long) opts.stdio;
860 c->opts = bch2_opts_default;
861 ret = bch2_opts_from_sb(&c->opts, sb);
865 bch2_opts_apply(&c->opts, opt
1094 bch2_dev_in_fs(struct bch_sb_handle *fs, struct bch_sb_handle *sb, struct bch_opts *opts) argument
1723 struct bch_opts opts = bch2_opts_empty(); local
1862 struct bch_opts opts = bch2_opts_empty(); local
2025 bch2_fs_open(char * const *devices, unsigned nr_devices, struct bch_opts opts) argument
[all...]
H A Djournal_io.c96 if (!c->opts.read_entire_journal)
126 if (!c->opts.read_entire_journal &&
139 if (last_seq > jlist->last_seq && !c->opts.read_entire_journal) {
1229 if (!c->opts.fsck &&
1507 unsigned target = c->opts.metadata_target ?:
1508 c->opts.foreground_target;
1510 READ_ONCE(c->opts.metadata_replicas);
1512 READ_ONCE(c->opts.metadata_replicas_required));
1967 (jiffies - j->last_flush_write) < msecs_to_jiffies(c->opts.journal_flush_delay) &&
2060 if (c->opts
[all...]
H A Drecovery.c278 if (!c->opts.retain_recovery_info &&
450 if (btree_id_is_alloc(i) && c->opts.reconstruct_alloc)
502 if (c->opts.version_upgrade == BCH_VERSION_UPGRADE_incompatible ||
508 switch (c->opts.version_upgrade) {
597 if (c->opts.norecovery)
598 c->opts.recovery_pass_last = BCH_RECOVERY_PASS_journal_replay - 1;
600 if (!c->opts.nochanges) {
651 if (c->opts.fsck && IS_ENABLED(CONFIG_BCACHEFS_DEBUG))
654 if (c->opts.fsck)
663 if (!c->sb.clean || c->opts
[all...]
H A Dfs.c61 c->opts.inodes_use_key_cache);
1669 if (c->opts.journal_flush_disabled)
1700 struct bch_opts opts = bch2_opts_empty(); local
1703 ret = bch2_parse_mount_opts(c, &opts, data);
1707 opt_set(opts, read_only, (*flags & SB_RDONLY) != 0);
1709 if (opts.read_only != c->opts.read_only) {
1712 if (opts.read_only) {
1728 c->opts.read_only = opts
1871 struct bch_opts opts = bch2_opts_empty(); local
[all...]
H A Dchardev.c137 struct bch_opts opts; member in struct:fsck_thread
217 thr->opts = bch2_opts_empty();
219 if (arg.opts) {
220 char *optstr = strndup_user((char __user *)(unsigned long) arg.opts, 1 << 16);
223 bch2_parse_mount_opts(NULL, &thr->opts, optstr);
230 opt_set(thr->opts, stdio, (u64)(unsigned long)&thr->thr.stdio);
233 opt_set(thr->opts, nostart, true);
237 thr->c = bch2_fs_open(devs.data, arg.nr_devs, thr->opts);
240 thr->c->opts.errors == BCH_ON_ERROR_panic)
241 thr->c->opts
[all...]
H A Dbtree_update_interior.c333 c->opts.metadata_target ?:
334 c->opts.foreground_target,
340 c->opts.metadata_replicas_required),
1239 c->opts.metadata_replicas,
H A Dbtree_io.c115 BUG_ON(size > c->opts.btree_node_size);
556 ret = c->opts.errors == BCH_ON_ERROR_continue
2177 c->opts.nochanges)
H A Dbtree_gc.c57 return c->opts.fix_errors != FSCK_FIX_no &&
134 if (c->opts.verbose) {
170 if (c->opts.verbose) {
1213 !c->opts.reconstruct_alloc &&
H A Dbackpointers.c726 return div_u64(mem_bytes * c->opts.fsck_memory_usage_percent, 100);
731 return div_u64(mem_may_pin_bytes(c), c->opts.btree_node_size);
/linux-master/drivers/phy/qualcomm/
H A Dphy-qcom-qmp-combo.c2462 static int qmp_combo_dp_configure(struct phy *phy, union phy_configure_opts *opts) argument
2464 const struct phy_configure_opts_dp *dp_opts = &opts->dp;
/linux-master/
H A DMakefile99 short-opts := $(firstword -$(MAKEFLAGS))
101 short-opts := $(filter-out --%,$(MAKEFLAGS))
104 ifneq ($(findstring s,$(short-opts)),)
/linux-master/net/ipv4/
H A Dicmp.c787 struct ip_options opts = { 0 }; local
794 __icmp_send(skb_in, type, code, info, &opts);
809 __icmp_send(skb_in, type, code, info, &opts);
/linux-master/net/bluetooth/
H A Dsco.c965 struct sco_options opts; local
986 opts.mtu = sco_pi(sk)->conn->mtu;
988 BT_DBG("mtu %u", opts.mtu);
990 len = min(len, sizeof(opts));
991 if (copy_to_user(optval, (char *)&opts, len))
H A Dl2cap_sock.c440 struct l2cap_options opts; local
479 memset(&opts, 0, sizeof(opts));
480 opts.imtu = chan->imtu;
481 opts.omtu = chan->omtu;
482 opts.flush_to = chan->flush_to;
483 opts.mode = chan->mode;
484 opts.fcs = chan->fcs;
485 opts.max_tx = chan->max_tx;
486 opts
730 struct l2cap_options opts; local
[all...]
/linux-master/fs/ntfs3/
H A Dsuper.c312 struct ntfs_mount_options *opts = fc->fs_private; local
322 opts->fs_uid = make_kuid(current_user_ns(), result.uint_32);
323 if (!uid_valid(opts->fs_uid))
327 opts->fs_gid = make_kgid(current_user_ns(), result.uint_32);
328 if (!gid_valid(opts->fs_gid))
334 opts->fs_fmask_inv = ~result.uint_32;
335 opts->fs_dmask_inv = ~result.uint_32;
336 opts->fmask = 1;
337 opts->dmask = 1;
342 opts
683 struct ntfs_mount_options *opts = sbi->options; local
1714 struct ntfs_mount_options *opts = fc->fs_private; local
1743 struct ntfs_mount_options *opts; local
[all...]
/linux-master/fs/smb/client/
H A Dfs_context.c448 char *opts, *orig, *p; local
450 orig = opts = kstrdup(options, GFP_KERNEL);
451 if (!opts)
454 while ((p = strsep(&opts, ","))) {
/linux-master/drivers/usb/gadget/function/
H A Df_ncm.c954 const struct ndp_parser_opts *opts = ncm->parser_opts; local
956 const int dgram_idx_len = 2 * 2 * opts->dgram_item_len;
970 put_ncm(&ntb_iter, opts->block_length, new_len);
971 put_ncm(&ntb_iter, opts->ndp_index, ndp_index);
974 new_len = opts->ndp_size +
1016 const struct ndp_parser_opts *opts = ncm->parser_opts; local
1020 const int dgram_idx_len = 2 * 2 * opts->dgram_item_len;
1051 ncb_len = opts->nth_size;
1063 put_unaligned_le32(opts->nth_sign, ntb_data);
1066 put_unaligned_le16(opts
1179 const struct ndp_parser_opts *opts = ncm->parser_opts; local
1607 struct f_ncm_opts *opts = to_f_ncm_opts(item); local
1620 struct f_ncm_opts *opts = to_f_ncm_opts(item); local
1665 struct f_ncm_opts *opts; local
1678 struct f_ncm_opts *opts; local
1718 struct f_ncm_opts *opts; local
1754 struct f_ncm_opts *opts; local
[all...]
H A Df_fs.c3926 struct f_fs_opts *opts = to_ffs_opts(item); local
3930 ready = opts->dev->desc_ready;
3945 struct f_fs_opts *opts = to_ffs_opts(item); local
3947 usb_put_function_instance(&opts->func_inst);
3965 struct f_fs_opts *opts; local
3967 opts = to_f_fs_opts(f);
3968 ffs_release_dev(opts->dev);
3970 _ffs_free_dev(opts->dev);
3972 kfree(opts);
3984 struct f_fs_opts *opts; local
4018 struct f_fs_opts *opts = local
4235 struct f_fs_opts *opts; local
[all...]
/linux-master/tools/perf/util/
H A Dannotate.c2163 struct annotation_options *opts = &annotate_opts; local
2227 opts->objdump_path ?: "objdump",
2228 opts->disassembler_style ? "-M " : "",
2229 opts->disassembler_style ?: "",
2232 opts->show_linenr ? "-l" : "",
2233 opts->show_asm_raw ? "" : "--no-show-raw-insn",
2234 opts->annotate_src ? "-S" : "",
2235 opts->prefix ? "--prefix " : "",
2236 opts->prefix ? '"' : ' ',
2237 opts
2644 struct annotation_options *opts = &annotate_opts; local
[all...]

Completed in 412 milliseconds

1234567891011>>