Home
last modified time | relevance | path

Searched refs:new_fl (Results 1 – 5 of 5) 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/
H A Dlocks.c1135 struct file_lock *new_fl = NULL; in flock_lock_inode() local
1150 new_fl = locks_alloc_lock(); in flock_lock_inode()
1151 if (!new_fl) in flock_lock_inode()
1189 locks_copy_lock(new_fl, request); in flock_lock_inode()
1190 locks_move_blocks(new_fl, request); in flock_lock_inode()
1191 locks_insert_lock_ctx(&new_fl->c, &ctx->flc_flock); in flock_lock_inode()
1192 new_fl = NULL; in flock_lock_inode()
1198 if (new_fl) in flock_lock_inode()
1199 locks_free_lock(new_fl); in flock_lock_inode()
1209 struct file_lock *new_fl = NULL; in posix_lock_inode() local
[all …]
/linux/fs/nilfs2/
H A Dinode.c386 unsigned int new_fl = 0; in nilfs_set_inode_flags() local
389 new_fl |= S_SYNC; in nilfs_set_inode_flags()
391 new_fl |= S_APPEND; in nilfs_set_inode_flags()
393 new_fl |= S_IMMUTABLE; in nilfs_set_inode_flags()
395 new_fl |= S_NOATIME; in nilfs_set_inode_flags()
397 new_fl |= S_DIRSYNC; in nilfs_set_inode_flags()
398 inode_set_flags(inode, new_fl, S_SYNC | S_APPEND | S_IMMUTABLE | in nilfs_set_inode_flags()
/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()