Home
last modified time | relevance | path

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

/Linux-v5.4/fs/jfs/
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-v5.4/drivers/mtd/parsers/
Dredboot.c189 struct fis_list *new_fl, **prev; in parse_redboot_partitions() local
201 new_fl = kmalloc(sizeof(struct fis_list), GFP_KERNEL); in parse_redboot_partitions()
203 if (!new_fl) { in parse_redboot_partitions()
207 new_fl->img = &buf[i]; in parse_redboot_partitions()
217 while(*prev && (*prev)->img->flash_base < new_fl->img->flash_base) in parse_redboot_partitions()
219 new_fl->next = *prev; in parse_redboot_partitions()
220 *prev = new_fl; in parse_redboot_partitions()
/Linux-v5.4/fs/
Dlocks.c1038 struct file_lock *new_fl = NULL; in flock_lock_inode() local
1053 new_fl = locks_alloc_lock(); in flock_lock_inode()
1054 if (!new_fl) in flock_lock_inode()
1092 locks_copy_lock(new_fl, request); in flock_lock_inode()
1093 locks_move_blocks(new_fl, request); in flock_lock_inode()
1094 locks_insert_lock_ctx(new_fl, &ctx->flc_flock); in flock_lock_inode()
1095 new_fl = NULL; in flock_lock_inode()
1101 if (new_fl) in flock_lock_inode()
1102 locks_free_lock(new_fl); in flock_lock_inode()
1112 struct file_lock *new_fl = NULL; in posix_lock_inode() local
[all …]
/Linux-v5.4/fs/hfsplus/
Dioctl.c86 unsigned int flags, new_fl = 0; in hfsplus_ioctl_setflags() local
117 new_fl |= S_IMMUTABLE; in hfsplus_ioctl_setflags()
120 new_fl |= S_APPEND; in hfsplus_ioctl_setflags()
122 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND); in hfsplus_ioctl_setflags()
/Linux-v5.4/fs/f2fs/
Dinode.c35 unsigned int new_fl = 0; in f2fs_set_inode_flags() local
38 new_fl |= S_SYNC; in f2fs_set_inode_flags()
40 new_fl |= S_APPEND; in f2fs_set_inode_flags()
42 new_fl |= S_IMMUTABLE; in f2fs_set_inode_flags()
44 new_fl |= S_NOATIME; in f2fs_set_inode_flags()
46 new_fl |= S_DIRSYNC; in f2fs_set_inode_flags()
48 new_fl |= S_ENCRYPTED; in f2fs_set_inode_flags()
50 new_fl |= S_VERITY; in f2fs_set_inode_flags()
52 new_fl |= S_CASEFOLD; in f2fs_set_inode_flags()
53 inode_set_flags(inode, new_fl, in f2fs_set_inode_flags()
/Linux-v5.4/fs/nilfs2/
Dinode.c416 unsigned int new_fl = 0; in nilfs_set_inode_flags() local
419 new_fl |= S_SYNC; in nilfs_set_inode_flags()
421 new_fl |= S_APPEND; in nilfs_set_inode_flags()
423 new_fl |= S_IMMUTABLE; in nilfs_set_inode_flags()
425 new_fl |= S_NOATIME; in nilfs_set_inode_flags()
427 new_fl |= S_DIRSYNC; in nilfs_set_inode_flags()
428 inode_set_flags(inode, new_fl, S_SYNC | S_APPEND | S_IMMUTABLE | in nilfs_set_inode_flags()
/Linux-v5.4/fs/ext4/
Dinode.c4715 unsigned int new_fl = 0; in ext4_set_inode_flags() local
4718 new_fl |= S_SYNC; in ext4_set_inode_flags()
4720 new_fl |= S_APPEND; in ext4_set_inode_flags()
4722 new_fl |= S_IMMUTABLE; in ext4_set_inode_flags()
4724 new_fl |= S_NOATIME; in ext4_set_inode_flags()
4726 new_fl |= S_DIRSYNC; in ext4_set_inode_flags()
4728 new_fl |= S_DAX; in ext4_set_inode_flags()
4730 new_fl |= S_ENCRYPTED; in ext4_set_inode_flags()
4732 new_fl |= S_CASEFOLD; in ext4_set_inode_flags()
4734 new_fl |= S_VERITY; in ext4_set_inode_flags()
[all …]
/Linux-v5.4/fs/btrfs/
Dioctl.c142 unsigned int new_fl = 0; in btrfs_sync_inode_flags_to_i_flags() local
145 new_fl |= S_SYNC; in btrfs_sync_inode_flags_to_i_flags()
147 new_fl |= S_IMMUTABLE; in btrfs_sync_inode_flags_to_i_flags()
149 new_fl |= S_APPEND; in btrfs_sync_inode_flags_to_i_flags()
151 new_fl |= S_NOATIME; in btrfs_sync_inode_flags_to_i_flags()
153 new_fl |= S_DIRSYNC; in btrfs_sync_inode_flags_to_i_flags()
157 new_fl); in btrfs_sync_inode_flags_to_i_flags()