Home
last modified time | relevance | path

Searched refs:fc (Results 1 – 21 of 21) sorted by relevance

/include/linux/
A Dfs_context.h156 struct fs_context *fc),
160 struct fs_context *fc);
189 #define __logfc(fc, l, fmt, ...) logfc((fc)->log.log, NULL, \ argument
201 #define infof(fc, fmt, ...) __logfc(fc, 'i', fmt, ## __VA_ARGS__) argument
203 #define infofc(fc, fmt, ...) __plog((&(fc)->log), 'i', fmt, ## __VA_ARGS__) argument
213 #define warnf(fc, fmt, ...) __logfc(fc, 'w', fmt, ## __VA_ARGS__) argument
215 #define warnfc(fc, fmt, ...) __plog((&(fc)->log), 'w', fmt, ## __VA_ARGS__) argument
225 #define errorf(fc, fmt, ...) __logfc(fc, 'e', fmt, ## __VA_ARGS__) argument
227 #define errorfc(fc, fmt, ...) __plog((&(fc)->log), 'e', fmt, ## __VA_ARGS__) argument
237 #define invalf(fc, fmt, ...) (errorf(fc, fmt, ## __VA_ARGS__), -EINVAL) argument
[all …]
A Dieee802154.h330 static inline int ieee802154_is_data(__le16 fc) in ieee802154_is_data() argument
332 return (fc & cpu_to_le16(IEEE802154_FCTL_FTYPE)) == in ieee802154_is_data()
340 static inline bool ieee802154_is_secen(__le16 fc) in ieee802154_is_secen() argument
342 return fc & cpu_to_le16(IEEE802154_FCTL_SECEN); in ieee802154_is_secen()
349 static inline bool ieee802154_is_ackreq(__le16 fc) in ieee802154_is_ackreq() argument
351 return fc & cpu_to_le16(IEEE802154_FCTL_ACKREQ); in ieee802154_is_ackreq()
358 static inline bool ieee802154_is_intra_pan(__le16 fc) in ieee802154_is_intra_pan() argument
360 return fc & cpu_to_le16(IEEE802154_FCTL_INTRA_PAN); in ieee802154_is_intra_pan()
367 static inline __le16 ieee802154_daddr_mode(__le16 fc) in ieee802154_daddr_mode() argument
369 return fc & cpu_to_le16(IEEE802154_FCTL_DADDR); in ieee802154_daddr_mode()
[all …]
A Dieee80211.h400 return (fc & tmp) == tmp; in ieee80211_has_a4()
848 return (ieee80211_is_nullfunc(fc) || ieee80211_is_qos_nullfunc(fc)); in ieee80211_is_any_nullfunc()
1289 ieee80211_s1g_optional_len(__le16 fc) in ieee80211_s1g_optional_len() argument
1293 if (ieee80211_s1g_has_next_tbtt(fc)) in ieee80211_s1g_optional_len()
1296 if (ieee80211_s1g_has_cssid(fc)) in ieee80211_s1g_optional_len()
1299 if (ieee80211_s1g_has_ano(fc)) in ieee80211_s1g_optional_len()
4591 __le16 fc = mgmt->frame_control; in ieee80211_is_bufferable_mmpdu() local
4597 if (!ieee80211_is_mgmt(fc)) in ieee80211_is_bufferable_mmpdu()
4600 if (ieee80211_is_disassoc(fc) || ieee80211_is_deauth(fc)) in ieee80211_is_bufferable_mmpdu()
4603 if (!ieee80211_is_action(fc)) in ieee80211_is_bufferable_mmpdu()
[all …]
A Dmount.h87 extern struct vfsmount *fc_mount(struct fs_context *fc);
88 extern struct vfsmount *fc_mount_longterm(struct fs_context *fc);
89 extern struct vfsmount *vfs_create_mount(struct fs_context *fc);
A Dpseudo_fs.h14 struct pseudo_fs_context *init_pseudo(struct fs_context *fc,
A Dramfs.h9 extern int ramfs_init_fs_context(struct fs_context *fc);
A Dfs_parser.h71 static inline int fs_parse(struct fs_context *fc, in fs_parse() argument
76 return __fs_parse(&fc->log, desc, param, result); in fs_parse()
79 extern int fs_lookup_param(struct fs_context *fc,
A Dkernfs.h463 int kernfs_get_tree(struct fs_context *fc);
464 void kernfs_free_fs_context(struct fs_context *fc);
581 static inline int kernfs_get_tree(struct fs_context *fc) in kernfs_get_tree() argument
584 static inline void kernfs_free_fs_context(struct fs_context *fc) { } in kernfs_free_fs_context() argument
A Dshmem_fs.h90 extern int shmem_init_fs_context(struct fs_context *fc);
A Dsecurity.h363 int security_fs_context_submount(struct fs_context *fc, struct super_block *reference);
364 int security_fs_context_dup(struct fs_context *fc, struct fs_context *src_fc);
365 int security_fs_context_parse_param(struct fs_context *fc, struct fs_parameter *param);
748 static inline int security_fs_context_submount(struct fs_context *fc, in security_fs_context_submount() argument
753 static inline int security_fs_context_dup(struct fs_context *fc, in security_fs_context_dup() argument
758 static inline int security_fs_context_parse_param(struct fs_context *fc, in security_fs_context_parse_param() argument
A Dlsm_hook_defs.h57 LSM_HOOK(int, 0, fs_context_submount, struct fs_context *fc, struct super_block *reference)
58 LSM_HOOK(int, 0, fs_context_dup, struct fs_context *fc,
60 LSM_HOOK(int, -ENOPARAM, fs_context_parse_param, struct fs_context *fc,
A Dfs.h2731 int set_anon_super_fc(struct super_block *s, struct fs_context *fc);
2734 struct super_block *sget_fc(struct fs_context *fc,
2741 struct super_block *sget_dev(struct fs_context *fc, dev_t dev);
/include/net/
A Dmac802154.h237 __le16 fc; in ieee802154_get_fc_from_skb() local
245 memcpy(&fc, skb_mac_header(skb), IEEE802154_FC_LEN); in ieee802154_get_fc_from_skb()
246 return fc; in ieee802154_get_fc_from_skb()
254 static inline unsigned char *ieee802154_skb_dst_pan(__le16 fc, in ieee802154_skb_dst_pan() argument
259 switch (ieee802154_daddr_mode(fc)) { in ieee802154_skb_dst_pan()
288 switch (ieee802154_saddr_mode(fc)) { in ieee802154_skb_src_pan()
297 if (ieee802154_is_intra_pan(fc)) { in ieee802154_skb_src_pan()
298 src_pan = ieee802154_skb_dst_pan(fc, skb); in ieee802154_skb_src_pan()
302 switch (ieee802154_daddr_mode(fc)) { in ieee802154_skb_src_pan()
346 unsigned char *dst_pan = ieee802154_skb_dst_pan(fc, skb), in ieee802154_skb_is_intra_pan_addressing()
[all …]
A Dieee802154_netdev.h186 struct ieee802154_hdr_fc fc; member
A Dcfg80211.h6897 unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc);
/include/linux/mtd/
A Dsuper.h17 extern int get_tree_mtd(struct fs_context *fc,
19 struct fs_context *fc));
/include/net/phonet/
A Dpep.h150 #define pn_flow_safe(fc) ((fc) >> 1) argument
/include/uapi/linux/
A Dif_hippi.h112 __u8 fc:3; member
118 __u8 fc:3;
A Dif_fddi.h111 __u8 fc; /* frame control */ member
A Dkvm.h394 __u8 fc; member
/include/net/9p/
A Dclient.h228 void p9_fcall_fini(struct p9_fcall *fc);

Completed in 112 milliseconds