Searched refs:fc (Results 151 - 175 of 546) sorted by relevance

1234567891011>>

/linux-master/kernel/bpf/
H A Dinode.c817 static int bpf_parse_param(struct fs_context *fc, struct fs_parameter *param) argument
819 struct bpf_mount_opts *opts = fc->s_fs_info;
825 opt = fs_parse(fc, bpf_fs_parameters, param, &result);
832 opt = vfs_parse_fs_param_source(fc, param);
853 if (!kuid_has_mapping(fc->user_ns, uid))
867 if (!kgid_has_mapping(fc->user_ns, gid))
940 return invalfc(fc, "Bad value for '%s'", param->key);
1009 static int bpf_fill_super(struct super_block *sb, struct fs_context *fc) argument
1017 if (fc->user_ns != &init_user_ns && !capable(CAP_SYS_ADMIN))
1036 static int bpf_get_tree(struct fs_context *fc) argument
1041 bpf_free_fc(struct fs_context *fc) argument
1055 bpf_init_fs_context(struct fs_context *fc) argument
[all...]
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_82598.c285 if (!hw->fc.pause_time)
290 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
291 hw->fc.high_water[i]) {
292 if (!hw->fc.low_water[i] ||
293 hw->fc.low_water[i] >= hw->fc.high_water[i]) {
307 switch (hw->fc.requested_mode) {
309 hw->fc.requested_mode = ixgbe_fc_tx_pause;
312 hw->fc.requested_mode = ixgbe_fc_none;
320 /* Negotiate the fc mod
[all...]
H A Dixgbe_dcb_82599.c235 reg = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN;
236 fcrtl = (hw->fc.low_water[i] << 10) | IXGBE_FCRTL_XONE;
258 reg = hw->fc.pause_time * 0x00010001;
263 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
H A Dixgbe_dcb_82598.c194 fcrtl = (hw->fc.low_water[i] << 10) | IXGBE_FCRTL_XONE;
195 reg = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN;
201 reg = hw->fc.pause_time * 0x00010001;
206 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
/linux-master/arch/s390/crypto/
H A Ddes_s390.c89 static int ecb_desall_crypt(struct skcipher_request *req, unsigned long fc) argument
101 cpacf_km(fc, ctx->key, walk.dst.virt.addr,
108 static int cbc_desall_crypt(struct skcipher_request *req, unsigned long fc) argument
128 cpacf_kmc(fc, &param, walk.dst.virt.addr,
318 static int ctr_desall_crypt(struct skcipher_request *req, unsigned long fc) argument
335 cpacf_kmctr(fc, ctx->key, walk.dst.virt.addr,
347 cpacf_kmctr(fc, ctx->key, buf, walk.src.virt.addr,
/linux-master/drivers/net/ethernet/oki-semi/pch_gbe/
H A Dpch_gbe_ethtool.c389 if (hw->mac.fc == PCH_GBE_FC_RX_PAUSE) {
391 } else if (hw->mac.fc == PCH_GBE_FC_TX_PAUSE) {
393 } else if (hw->mac.fc == PCH_GBE_FC_FULL) {
416 hw->mac.fc = PCH_GBE_FC_FULL;
418 hw->mac.fc = PCH_GBE_FC_RX_PAUSE;
420 hw->mac.fc = PCH_GBE_FC_TX_PAUSE;
422 hw->mac.fc = PCH_GBE_FC_NONE;
/linux-master/fs/xfs/
H A Dxfs_super.c1235 struct fs_context *fc,
1243 if ((fc->purpose & FS_CONTEXT_FOR_RECONFIGURE) &&
1244 !!(XFS_M(fc->root->d_sb)->m_features & flag) == value)
1246 xfs_warn(fc->s_fs_info, "%s mount option is deprecated.", param->key);
1256 struct fs_context *fc,
1259 struct xfs_mount *parsing_mp = fc->s_fs_info;
1264 opt = fs_parse(fc, xfs_fs_parameters, param, &result);
1384 xfs_fs_warn_deprecated(fc, param, XFS_FEAT_IKEEP, true);
1388 xfs_fs_warn_deprecated(fc, param, XFS_FEAT_IKEEP, false);
1392 xfs_fs_warn_deprecated(fc, para
1234 xfs_fs_warn_deprecated( struct fs_context *fc, struct fs_parameter *param, uint64_t flag, bool value) argument
1255 xfs_fs_parse_param( struct fs_context *fc, struct fs_parameter *param) argument
1498 xfs_fs_fill_super( struct super_block *sb, struct fs_context *fc) argument
1795 xfs_fs_get_tree( struct fs_context *fc) argument
1929 xfs_fs_reconfigure( struct fs_context *fc) argument
1975 xfs_fs_free( struct fs_context *fc) argument
2002 xfs_init_fs_context( struct fs_context *fc) argument
[all...]
/linux-master/net/mac802154/
H A Diface.c342 hdr->fc.security_enabled = 1;
369 memset(&hdr.fc, 0, sizeof(hdr.fc));
370 hdr.fc.type = cb->type;
371 hdr.fc.security_enabled = cb->secen;
372 hdr.fc.ack_request = cb->ackreq;
416 * here only and intra pan connection. fc fields are mostly fallback
435 memset(&hdr.fc, 0, sizeof(hdr.fc));
436 hdr.fc
[all...]
/linux-master/arch/s390/kernel/
H A Dsysinfo.c27 static inline int __stsi(void *sysinfo, int fc, int sel1, int sel2, int *lvl) argument
29 int r0 = (fc << 28) | sel1;
55 int stsi(void *sysinfo, int fc, int sel1, int sel2) argument
59 rc = __stsi(sysinfo, fc, sel1, sel2, &lvl);
62 return fc ? 0 : lvl;
483 #define STSI_FILE(fc, s1, s2) \
484 static int stsi_open_##fc##_##s1##_##s2(struct inode *inode, struct file *file)\
489 if (stsi(file->private_data, fc, s1, s2)) { \
497 static const struct file_operations stsi_##fc##_##s1##_##s2##_fs_ops = { \
498 .open = stsi_open_##fc##
[all...]
/linux-master/fs/
H A Dnamespace.c1089 * @fc: The configuration context with the superblock attached
1096 struct vfsmount *vfs_create_mount(struct fs_context *fc) argument
1100 if (!fc->root)
1103 mnt = alloc_vfsmnt(fc->source ?: "none");
1107 if (fc->sb_flags & SB_KERNMOUNT)
1110 atomic_inc(&fc->root->d_sb->s_active);
1111 mnt->mnt.mnt_sb = fc->root->d_sb;
1112 mnt->mnt.mnt_root = dget(fc->root);
1123 struct vfsmount *fc_mount(struct fs_context *fc) argument
1125 int err = vfs_get_tree(fc);
1138 struct fs_context *fc; local
1690 struct fs_context *fc; local
2866 struct fs_context *fc; local
3264 do_new_mount_fc(struct fs_context *fc, struct path *mountpoint, unsigned int mnt_flags) argument
3309 struct fs_context *fc; local
3947 struct fs_context *fc; local
[all...]
/linux-master/tools/testing/selftests/powerpc/nx-gzip/include/
H A Dnxu.h61 * fc: coprocessor function code
527 #define fc_is_compress(fc) (((fc) & 0x10) == 0)
528 #define fc_has_count(fc) (fc_is_compress(fc) && (((fc) & 0x4) != 0))
/linux-master/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/
H A Dtrx.c18 __le16 fc = rtl_get_fc(skb); local
20 if (unlikely(ieee80211_is_beacon(fc)))
22 if (ieee80211_is_mgmt(fc) || ieee80211_is_ctl(fc))
226 __le16 fc; local
233 fc = hdr->frame_control;
238 packet_matchbssid = (!ieee80211_is_ctl(fc) &&
240 ieee80211_has_tods(fc) ?
242 ieee80211_has_fromds(fc) ?
250 if (ieee80211_is_beacon(fc))
655 __le16 fc = hdr->frame_control; local
[all...]
/linux-master/tools/mm/
H A Dpage_owner_sort.c92 static struct filter_condition fc; variable in typeref:struct:filter_condition
452 if ((filter & FILTER_PID) && !match_num_list(get_pid(buf), fc.pids, fc.pids_size))
455 !match_num_list(get_tgid(buf), fc.tgids, fc.tgids_size))
461 !match_str_list(comm, fc.comms, fc.comms_size)) {
706 fc.pids = parse_nums_list(optarg, &fc.pids_size);
707 if (fc
[all...]
/linux-master/drivers/firmware/arm_scmi/
H A Dpowercap.c713 struct scmi_fc_info *fc; local
715 fc = devm_kcalloc(ph->dev, POWERCAP_FC_MAX, sizeof(*fc), GFP_KERNEL);
716 if (!fc)
721 &fc[POWERCAP_FC_CAP].set_addr,
722 &fc[POWERCAP_FC_CAP].set_db,
723 &fc[POWERCAP_FC_CAP].rate_limit);
727 &fc[POWERCAP_FC_CAP].get_addr, NULL,
728 &fc[POWERCAP_FC_CAP].rate_limit);
732 &fc[POWERCAP_FC_PA
[all...]
/linux-master/fs/fuse/
H A Dreaddir.c18 struct fuse_conn *fc = get_fuse_conn(dir); local
21 if (!fc->do_readdirplus)
23 if (!fc->readdirplus_auto)
161 struct fuse_conn *fc; local
192 fc = get_fuse_conn(dir);
257 if (fc->readdirplus_auto)
353 attr_version = fuse_get_attr_version(fm->fc);
448 struct fuse_conn *fc = get_fuse_conn(inode); local
466 if (!ctx->pos && fc->auto_inval_data) {
/linux-master/drivers/net/ethernet/chelsio/cxgb/
H A Dpm3393.c81 u8 fc; member in struct:_cmac_instance
261 if (cmac->instance->fc & PAUSE_RX)
263 if (cmac->instance->fc & PAUSE_TX)
389 int *duplex, int *fc)
395 if (fc)
396 *fc = cmac->instance->fc;
401 int fc)
407 if (fc & ~(PAUSE_TX | PAUSE_RX))
410 if (fc !
388 pm3393_get_speed_duplex_fc(struct cmac *cmac, int *speed, int *duplex, int *fc) argument
400 pm3393_set_speed_duplex_fc(struct cmac *cmac, int speed, int duplex, int fc) argument
[all...]
/linux-master/arch/powerpc/math-emu/
H A Dmath_efp.c182 unsigned long type, func, fc, fa, fb, src, speinsn; local
195 fc = (speinsn >> 21) & 0x1f;
200 vc.wp[0] = current->thread.evr[fc];
201 vc.wp[1] = regs->gpr[fc];
685 current->thread.evr[fc] = vc.wp[0];
686 regs->gpr[fc] = vc.wp[1];
732 unsigned long speinsn, type, fb, fc, fptype, func; local
754 fc = (speinsn >> 21) & 0x1f;
755 s_lo = regs->gpr[fc] & SIGN_BIT_S;
756 s_hi = current->thread.evr[fc]
[all...]
/linux-master/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/
H A Dtrx.c18 __le16 fc = rtl_get_fc(skb); local
20 if (unlikely(ieee80211_is_beacon(fc)))
22 if (ieee80211_is_mgmt(fc) || ieee80211_is_ctl(fc))
286 __le16 fc; local
292 fc = hdr->frame_control;
297 packet_matchbssid = (!ieee80211_is_ctl(fc) &&
299 ieee80211_has_tods(fc) ?
301 ieee80211_has_fromds(fc) ?
675 __le16 fc local
[all...]
/linux-master/fs/exfat/
H A Dsuper.c252 static int exfat_parse_param(struct fs_context *fc, struct fs_parameter *param) argument
254 struct exfat_sb_info *sbi = fc->s_fs_info;
259 opt = fs_parse(fc, exfat_parameters, param, &result);
618 static int exfat_fill_super(struct super_block *sb, struct fs_context *fc) argument
706 static int exfat_get_tree(struct fs_context *fc) argument
708 return get_tree_bdev(fc, exfat_fill_super);
717 static void exfat_free(struct fs_context *fc) argument
719 struct exfat_sb_info *sbi = fc->s_fs_info;
725 static int exfat_reconfigure(struct fs_context *fc) argument
727 fc
741 exfat_init_fs_context(struct fs_context *fc) argument
[all...]
/linux-master/drivers/net/wireless/realtek/rtlwifi/
H A Dusb.c360 __le16 fc; local
371 fc = hdr->frame_control;
384 if (ieee80211_is_data(fc)) {
402 __le16 fc; local
413 fc = hdr->frame_control;
426 if (ieee80211_is_data(fc)) {
864 __le16 fc = hdr->frame_control; local
868 if (ieee80211_is_auth(fc)) {
873 if (ieee80211_is_data(fc) && !ieee80211_is_nullfunc(fc)
899 __le16 fc = hdr->frame_control; local
[all...]
/linux-master/drivers/scsi/bfa/
H A Dbfad_attr.c286 hstats->seconds_since_last_reset = fcstats->fc.secs_reset;
287 hstats->tx_frames = fcstats->fc.tx_frames;
288 hstats->tx_words = fcstats->fc.tx_words;
289 hstats->rx_frames = fcstats->fc.rx_frames;
290 hstats->rx_words = fcstats->fc.rx_words;
291 hstats->lip_count = fcstats->fc.lip_count;
292 hstats->nos_count = fcstats->fc.nos_count;
293 hstats->error_frames = fcstats->fc.error_frames;
294 hstats->dumped_frames = fcstats->fc.dropped_frames;
295 hstats->link_failure_count = fcstats->fc
[all...]
/linux-master/drivers/staging/rtl8192e/
H A Drtllib.h410 #define WLAN_FC_GET_TYPE(fc) ((fc) & IEEE80211_FCTL_FTYPE)
411 #define WLAN_FC_GET_STYPE(fc) ((fc) & IEEE80211_FCTL_STYPE)
412 #define WLAN_FC_MORE_DATA(fc) ((fc) & IEEE80211_FCTL_MOREDATA)
458 #define RTLLIB_QOS_HAS_SEQ(fc) \
459 (((fc) & (RTLLIB_FC0_TYPE_MASK | RTLLIB_FC0_SUBTYPE_MASK)) == \
805 u16 fc; local
808 fc
1548 rtllib_get_hdrlen(u16 fc) argument
[all...]
/linux-master/drivers/misc/ibmasm/
H A Dibmasmfs.c78 static int ibmasmfs_fill_super(struct super_block *sb, struct fs_context *fc);
80 static int ibmasmfs_get_tree(struct fs_context *fc) argument
82 return get_tree_single(fc, ibmasmfs_fill_super);
89 static int ibmasmfs_init_fs_context(struct fs_context *fc) argument
91 fc->ops = &ibmasmfs_context_ops;
110 static int ibmasmfs_fill_super(struct super_block *sb, struct fs_context *fc) argument
/linux-master/drivers/infiniband/hw/qib/
H A Dqib_fs.c451 static int qibfs_fill_super(struct super_block *sb, struct fs_context *fc) argument
479 static int qibfs_get_tree(struct fs_context *fc) argument
481 int ret = get_tree_single(fc, qibfs_fill_super);
483 qib_super = fc->root->d_sb;
491 static int qibfs_init_fs_context(struct fs_context *fc) argument
493 fc->ops = &qibfs_context_ops;
/linux-master/fs/isofs/
H A Dinode.c114 static int isofs_reconfigure(struct fs_context *fc) argument
116 sync_filesystem(fc->root->d_sb);
117 if (!(fc->sb_flags & SB_RDONLY))
341 static int isofs_parse_param(struct fs_context *fc, argument
344 struct isofs_options *popt = fc->fs_private;
352 if (fc->purpose == FS_CONTEXT_FOR_RECONFIGURE)
355 opt = fs_parse(fc, isofs_param_spec, param, &result);
582 static int isofs_fill_super(struct super_block *s, struct fs_context *fc) argument
590 struct isofs_options *opt = fc->fs_private;
598 int silent = fc
1532 isofs_get_tree(struct fs_context *fc) argument
1537 isofs_free_fc(struct fs_context *fc) argument
1549 isofs_init_fs_context(struct fs_context *fc) argument
[all...]

Completed in 609 milliseconds

1234567891011>>