Home
last modified time | relevance | path

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

/linux-6.12.1/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-6.12.1/drivers/mtd/parsers/
Dredboot.c194 struct fis_list *new_fl, **prev; in parse_redboot_partitions() local
206 new_fl = kmalloc(sizeof(struct fis_list), GFP_KERNEL); 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-6.12.1/fs/
Dlocks.c1076 struct file_lock *new_fl = NULL; in flock_lock_inode() local
1091 new_fl = locks_alloc_lock(); in flock_lock_inode()
1092 if (!new_fl) in flock_lock_inode()
1130 locks_copy_lock(new_fl, request); in flock_lock_inode()
1131 locks_move_blocks(new_fl, request); in flock_lock_inode()
1132 locks_insert_lock_ctx(&new_fl->c, &ctx->flc_flock); in flock_lock_inode()
1133 new_fl = NULL; in flock_lock_inode()
1139 if (new_fl) in flock_lock_inode()
1140 locks_free_lock(new_fl); in flock_lock_inode()
1150 struct file_lock *new_fl = NULL; in posix_lock_inode() local
[all …]
/linux-6.12.1/fs/f2fs/
Dinode.c48 unsigned int new_fl = 0; in f2fs_set_inode_flags() local
51 new_fl |= S_SYNC; in f2fs_set_inode_flags()
53 new_fl |= S_APPEND; in f2fs_set_inode_flags()
55 new_fl |= S_IMMUTABLE; in f2fs_set_inode_flags()
57 new_fl |= S_NOATIME; in f2fs_set_inode_flags()
59 new_fl |= S_DIRSYNC; in f2fs_set_inode_flags()
61 new_fl |= S_ENCRYPTED; in f2fs_set_inode_flags()
63 new_fl |= S_VERITY; in f2fs_set_inode_flags()
65 new_fl |= S_CASEFOLD; in f2fs_set_inode_flags()
66 inode_set_flags(inode, new_fl, in f2fs_set_inode_flags()
/linux-6.12.1/fs/nilfs2/
Dinode.c407 unsigned int new_fl = 0; in nilfs_set_inode_flags() local
410 new_fl |= S_SYNC; in nilfs_set_inode_flags()
412 new_fl |= S_APPEND; in nilfs_set_inode_flags()
414 new_fl |= S_IMMUTABLE; in nilfs_set_inode_flags()
416 new_fl |= S_NOATIME; in nilfs_set_inode_flags()
418 new_fl |= S_DIRSYNC; in nilfs_set_inode_flags()
419 inode_set_flags(inode, new_fl, S_SYNC | S_APPEND | S_IMMUTABLE | in nilfs_set_inode_flags()
/linux-6.12.1/fs/hfsplus/
Dinode.c680 unsigned int new_fl = 0; in hfsplus_fileattr_set() local
690 new_fl |= S_IMMUTABLE; in hfsplus_fileattr_set()
693 new_fl |= S_APPEND; in hfsplus_fileattr_set()
695 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND); in hfsplus_fileattr_set()
/linux-6.12.1/fs/ntfs3/
Dfile.c87 unsigned int new_fl = 0; in ntfs_fileattr_set() local
96 new_fl |= S_IMMUTABLE; in ntfs_fileattr_set()
99 new_fl |= S_APPEND; in ntfs_fileattr_set()
110 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND); in ntfs_fileattr_set()
/linux-6.12.1/fs/ext4/
Dinode.c4580 unsigned int new_fl = 0; in ext4_set_inode_flags() local
4585 new_fl |= S_SYNC; in ext4_set_inode_flags()
4587 new_fl |= S_APPEND; in ext4_set_inode_flags()
4589 new_fl |= S_IMMUTABLE; in ext4_set_inode_flags()
4591 new_fl |= S_NOATIME; in ext4_set_inode_flags()
4593 new_fl |= S_DIRSYNC; in ext4_set_inode_flags()
4597 new_fl |= (inode->i_flags & S_DAX); in ext4_set_inode_flags()
4599 new_fl |= S_DAX; in ext4_set_inode_flags()
4602 new_fl |= S_ENCRYPTED; in ext4_set_inode_flags()
4604 new_fl |= S_CASEFOLD; in ext4_set_inode_flags()
[all …]
/linux-6.12.1/fs/btrfs/
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()