Searched refs:new_fl (Results 1 – 8 of 8) sorted by relevance
/linux-6.1.9/fs/jfs/ |
D | jfs_inode.c | 19 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.1.9/drivers/mtd/parsers/ |
D | redboot.c | 194 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.1.9/fs/ |
D | locks.c | 1008 struct file_lock *new_fl = NULL; in flock_lock_inode() local 1023 new_fl = locks_alloc_lock(); in flock_lock_inode() 1024 if (!new_fl) in flock_lock_inode() 1062 locks_copy_lock(new_fl, request); in flock_lock_inode() 1063 locks_move_blocks(new_fl, request); in flock_lock_inode() 1064 locks_insert_lock_ctx(new_fl, &ctx->flc_flock); in flock_lock_inode() 1065 new_fl = NULL; in flock_lock_inode() 1071 if (new_fl) in flock_lock_inode() 1072 locks_free_lock(new_fl); in flock_lock_inode() 1082 struct file_lock *new_fl = NULL; in posix_lock_inode() local [all …]
|
/linux-6.1.9/fs/f2fs/ |
D | inode.c | 39 unsigned int new_fl = 0; in f2fs_set_inode_flags() local 42 new_fl |= S_SYNC; in f2fs_set_inode_flags() 44 new_fl |= S_APPEND; in f2fs_set_inode_flags() 46 new_fl |= S_IMMUTABLE; in f2fs_set_inode_flags() 48 new_fl |= S_NOATIME; in f2fs_set_inode_flags() 50 new_fl |= S_DIRSYNC; in f2fs_set_inode_flags() 52 new_fl |= S_ENCRYPTED; in f2fs_set_inode_flags() 54 new_fl |= S_VERITY; in f2fs_set_inode_flags() 56 new_fl |= S_CASEFOLD; in f2fs_set_inode_flags() 57 inode_set_flags(inode, new_fl, in f2fs_set_inode_flags()
|
/linux-6.1.9/fs/nilfs2/ |
D | inode.c | 425 unsigned int new_fl = 0; in nilfs_set_inode_flags() local 428 new_fl |= S_SYNC; in nilfs_set_inode_flags() 430 new_fl |= S_APPEND; in nilfs_set_inode_flags() 432 new_fl |= S_IMMUTABLE; in nilfs_set_inode_flags() 434 new_fl |= S_NOATIME; in nilfs_set_inode_flags() 436 new_fl |= S_DIRSYNC; in nilfs_set_inode_flags() 437 inode_set_flags(inode, new_fl, S_SYNC | S_APPEND | S_IMMUTABLE | in nilfs_set_inode_flags()
|
/linux-6.1.9/fs/hfsplus/ |
D | inode.c | 663 unsigned int new_fl = 0; in hfsplus_fileattr_set() local 673 new_fl |= S_IMMUTABLE; in hfsplus_fileattr_set() 676 new_fl |= S_APPEND; in hfsplus_fileattr_set() 678 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND); in hfsplus_fileattr_set()
|
/linux-6.1.9/fs/ext4/ |
D | inode.c | 4667 unsigned int new_fl = 0; in ext4_set_inode_flags() local 4672 new_fl |= S_SYNC; in ext4_set_inode_flags() 4674 new_fl |= S_APPEND; in ext4_set_inode_flags() 4676 new_fl |= S_IMMUTABLE; in ext4_set_inode_flags() 4678 new_fl |= S_NOATIME; in ext4_set_inode_flags() 4680 new_fl |= S_DIRSYNC; in ext4_set_inode_flags() 4684 new_fl |= (inode->i_flags & S_DAX); in ext4_set_inode_flags() 4686 new_fl |= S_DAX; in ext4_set_inode_flags() 4689 new_fl |= S_ENCRYPTED; in ext4_set_inode_flags() 4691 new_fl |= S_CASEFOLD; in ext4_set_inode_flags() [all …]
|
/linux-6.1.9/fs/btrfs/ |
D | ioctl.c | 165 unsigned int new_fl = 0; in btrfs_sync_inode_flags_to_i_flags() local 168 new_fl |= S_SYNC; in btrfs_sync_inode_flags_to_i_flags() 170 new_fl |= S_IMMUTABLE; in btrfs_sync_inode_flags_to_i_flags() 172 new_fl |= S_APPEND; in btrfs_sync_inode_flags_to_i_flags() 174 new_fl |= S_NOATIME; in btrfs_sync_inode_flags_to_i_flags() 176 new_fl |= S_DIRSYNC; in btrfs_sync_inode_flags_to_i_flags() 178 new_fl |= S_VERITY; in btrfs_sync_inode_flags_to_i_flags() 182 S_VERITY, new_fl); in btrfs_sync_inode_flags_to_i_flags()
|