Home
last modified time | relevance | path

Searched refs:new_fl (Results 1 – 4 of 4) sorted by relevance

/linux/fs/jfs/
H A Djfs_inode.c19 unsigned int new_fl = 0; in jfs_set_inode_flags() local
22 new_fl |= S_IMMUTABLE; in jfs_set_inode_flags()
24 new_fl |= S_APPEND; in jfs_set_inode_flags()
26 new_fl |= S_NOATIME; in jfs_set_inode_flags()
28 new_fl |= S_DIRSYNC; in jfs_set_inode_flags()
30 new_fl |= S_SYNC; in jfs_set_inode_flags()
31 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND | S_NOATIME | in jfs_set_inode_flags()
/linux/drivers/mtd/parsers/
H A Dredboot.c194 struct fis_list *new_fl, **prev; in parse_redboot_partitions() local
206 new_fl = kmalloc_obj(struct fis_list); in parse_redboot_partitions()
208 if (!new_fl) { in parse_redboot_partitions()
212 new_fl->img = &buf[i]; in parse_redboot_partitions()
222 while (*prev && (*prev)->img->flash_base < new_fl->img->flash_base) in parse_redboot_partitions()
224 new_fl->next = *prev; in parse_redboot_partitions()
225 *prev = new_fl; in parse_redboot_partitions()
/linux/fs/ext4/
H A Dinode.c5062 unsigned int new_fl = 0; in ext4_set_inode_flags() local
5067 new_fl |= S_SYNC; in ext4_set_inode_flags()
5069 new_fl |= S_APPEND; in ext4_set_inode_flags()
5071 new_fl |= S_IMMUTABLE; in ext4_set_inode_flags()
5073 new_fl |= S_NOATIME; in ext4_set_inode_flags()
5075 new_fl |= S_DIRSYNC; in ext4_set_inode_flags()
5079 new_fl |= (inode->i_flags & S_DAX); in ext4_set_inode_flags()
5081 new_fl |= S_DAX; in ext4_set_inode_flags()
5084 new_fl |= S_ENCRYPTED; in ext4_set_inode_flags()
5086 new_fl |= S_CASEFOLD; in ext4_set_inode_flags()
[all …]
/linux/fs/btrfs/
H A Dioctl.c172 unsigned int new_fl = 0; in btrfs_sync_inode_flags_to_i_flags() local
175 new_fl |= S_SYNC; in btrfs_sync_inode_flags_to_i_flags()
177 new_fl |= S_IMMUTABLE; in btrfs_sync_inode_flags_to_i_flags()
179 new_fl |= S_APPEND; in btrfs_sync_inode_flags_to_i_flags()
181 new_fl |= S_NOATIME; in btrfs_sync_inode_flags_to_i_flags()
183 new_fl |= S_DIRSYNC; in btrfs_sync_inode_flags_to_i_flags()
185 new_fl |= S_VERITY; in btrfs_sync_inode_flags_to_i_flags()
189 S_VERITY, new_fl); in btrfs_sync_inode_flags_to_i_flags()