Home
last modified time | relevance | path

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

/linux-4.4.14/fs/jfs/
Djfs_inode.c32 unsigned int new_fl = 0; in jfs_set_inode_flags() local
35 new_fl |= S_IMMUTABLE; in jfs_set_inode_flags()
37 new_fl |= S_APPEND; in jfs_set_inode_flags()
39 new_fl |= S_NOATIME; in jfs_set_inode_flags()
41 new_fl |= S_DIRSYNC; in jfs_set_inode_flags()
43 new_fl |= S_SYNC; in jfs_set_inode_flags()
44 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND | S_NOATIME | in jfs_set_inode_flags()
/linux-4.4.14/drivers/mtd/
Dredboot.c180 struct fis_list *new_fl, **prev; in parse_redboot_partitions() local
192 new_fl = kmalloc(sizeof(struct fis_list), GFP_KERNEL); in parse_redboot_partitions()
194 if (!new_fl) { in parse_redboot_partitions()
198 new_fl->img = &buf[i]; in parse_redboot_partitions()
208 while(*prev && (*prev)->img->flash_base < new_fl->img->flash_base) in parse_redboot_partitions()
210 new_fl->next = *prev; in parse_redboot_partitions()
211 *prev = new_fl; in parse_redboot_partitions()
/linux-4.4.14/fs/
Dlocks.c871 struct file_lock *new_fl = NULL; in flock_lock_inode() local
886 new_fl = locks_alloc_lock(); in flock_lock_inode()
887 if (!new_fl) in flock_lock_inode()
924 locks_copy_lock(new_fl, request); in flock_lock_inode()
925 locks_insert_lock_ctx(new_fl, &ctx->flc_flock); in flock_lock_inode()
926 new_fl = NULL; in flock_lock_inode()
931 if (new_fl) in flock_lock_inode()
932 locks_free_lock(new_fl); in flock_lock_inode()
940 struct file_lock *new_fl = NULL; in __posix_lock_file() local
962 new_fl = locks_alloc_lock(); in __posix_lock_file()
[all …]
/linux-4.4.14/fs/hfsplus/
Dioctl.c79 unsigned int flags, new_fl = 0; in hfsplus_ioctl_setflags() local
113 new_fl |= S_IMMUTABLE; in hfsplus_ioctl_setflags()
116 new_fl |= S_APPEND; in hfsplus_ioctl_setflags()
118 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND); in hfsplus_ioctl_setflags()
/linux-4.4.14/fs/f2fs/
Dinode.c24 unsigned int new_fl = 0; in f2fs_set_inode_flags() local
27 new_fl |= S_SYNC; in f2fs_set_inode_flags()
29 new_fl |= S_APPEND; in f2fs_set_inode_flags()
31 new_fl |= S_IMMUTABLE; in f2fs_set_inode_flags()
33 new_fl |= S_NOATIME; in f2fs_set_inode_flags()
35 new_fl |= S_DIRSYNC; in f2fs_set_inode_flags()
36 inode_set_flags(inode, new_fl, in f2fs_set_inode_flags()
/linux-4.4.14/fs/nilfs2/
Dinode.c426 unsigned int new_fl = 0; in nilfs_set_inode_flags() local
429 new_fl |= S_SYNC; in nilfs_set_inode_flags()
431 new_fl |= S_APPEND; in nilfs_set_inode_flags()
433 new_fl |= S_IMMUTABLE; in nilfs_set_inode_flags()
435 new_fl |= S_NOATIME; in nilfs_set_inode_flags()
437 new_fl |= S_DIRSYNC; in nilfs_set_inode_flags()
438 inode_set_flags(inode, new_fl, S_SYNC | S_APPEND | S_IMMUTABLE | in nilfs_set_inode_flags()
/linux-4.4.14/fs/ext4/
Dinode.c4063 unsigned int new_fl = 0; in ext4_set_inode_flags() local
4066 new_fl |= S_SYNC; in ext4_set_inode_flags()
4068 new_fl |= S_APPEND; in ext4_set_inode_flags()
4070 new_fl |= S_IMMUTABLE; in ext4_set_inode_flags()
4072 new_fl |= S_NOATIME; in ext4_set_inode_flags()
4074 new_fl |= S_DIRSYNC; in ext4_set_inode_flags()
4076 new_fl |= S_DAX; in ext4_set_inode_flags()
4077 inode_set_flags(inode, new_fl, in ext4_set_inode_flags()
4085 unsigned long old_fl, new_fl; in ext4_get_inode_flags() local
4090 new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| in ext4_get_inode_flags()
[all …]
/linux-4.4.14/fs/btrfs/
Dioctl.c140 unsigned int new_fl = 0; in btrfs_update_iflags() local
143 new_fl |= S_SYNC; in btrfs_update_iflags()
145 new_fl |= S_IMMUTABLE; in btrfs_update_iflags()
147 new_fl |= S_APPEND; in btrfs_update_iflags()
149 new_fl |= S_NOATIME; in btrfs_update_iflags()
151 new_fl |= S_DIRSYNC; in btrfs_update_iflags()
155 new_fl); in btrfs_update_iflags()