Lines Matching defs:name

1335 /*78*/	char	s_volume_name[EXT4_LABEL_MAX];	/* volume name */
1904 #define EXT4_INODE_BIT_FNS(name, field, offset) \
1905 static inline int ext4_test_inode_##name(struct inode *inode, int bit) \
1909 static inline void ext4_set_inode_##name(struct inode *inode, int bit) \
1913 static inline void ext4_clear_inode_##name(struct inode *inode, int bit) \
1919 * found by name. Otherwise, they are very hard to locate. */
1926 * found by name. Otherwise, they are very hard to locate. */
2046 #define EXT4_FEATURE_COMPAT_FUNCS(name, flagname) \
2047 static inline bool ext4_has_feature_##name(struct super_block *sb) \
2052 static inline void ext4_set_feature_##name(struct super_block *sb) \
2058 static inline void ext4_clear_feature_##name(struct super_block *sb) \
2064 #define EXT4_FEATURE_RO_COMPAT_FUNCS(name, flagname) \
2065 static inline bool ext4_has_feature_##name(struct super_block *sb) \
2070 static inline void ext4_set_feature_##name(struct super_block *sb) \
2076 static inline void ext4_clear_feature_##name(struct super_block *sb) \
2082 #define EXT4_FEATURE_INCOMPAT_FUNCS(name, flagname) \
2083 static inline bool ext4_has_feature_##name(struct super_block *sb) \
2088 static inline void ext4_set_feature_##name(struct super_block *sb) \
2094 static inline void ext4_clear_feature_##name(struct super_block *sb) \
2282 * Base length of the ext4 directory entry excluding the name length
2290 char name[EXT4_NAME_LEN]; /* File name */
2296 * followed ext4_dir_entry_2's name[name_len] at the next 4 byte aligned
2315 char name[EXT4_NAME_LEN]; /* File name */
2341 __u8 det_reserved_zero2; /* Zero name length */
2502 #define fname_name(p) ((p)->disk_name.name)
2503 #define fname_usr_name(p) ((p)->usr_fname->name)
2758 fname->disk_name.name = (unsigned char *) iname->name;
2778 kfree(fname->cf_name.name);
2779 fname->cf_name.name = NULL;
2840 extern int ext4fs_dirhash(const struct inode *dir, const char *name, int len,
3267 #define ext4_read_incompat_64bit_val(es, name) \
3269 ? (ext4_fsblk_t)le32_to_cpu(es->name##_hi) << 32 : 0) | \
3270 le32_to_cpu(es->name##_lo))