Searched refs:new_fl (Results 1 – 8 of 8) sorted by relevance
/linux-4.1.27/fs/jfs/ |
D | jfs_inode.c | 32 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.1.27/drivers/mtd/ |
D | redboot.c | 180 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.1.27/fs/ |
D | locks.c | 867 struct file_lock *new_fl = NULL; in flock_lock_inode() local 882 new_fl = locks_alloc_lock(); in flock_lock_inode() 883 if (!new_fl) in flock_lock_inode() 920 locks_copy_lock(new_fl, request); in flock_lock_inode() 921 locks_insert_lock_ctx(new_fl, &ctx->flc_flock); in flock_lock_inode() 922 new_fl = NULL; in flock_lock_inode() 927 if (new_fl) in flock_lock_inode() 928 locks_free_lock(new_fl); in flock_lock_inode() 936 struct file_lock *new_fl = NULL; in __posix_lock_file() local 958 new_fl = locks_alloc_lock(); in __posix_lock_file() [all …]
|
/linux-4.1.27/fs/hfsplus/ |
D | ioctl.c | 79 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.1.27/fs/f2fs/ |
D | inode.c | 25 unsigned int new_fl = 0; in f2fs_set_inode_flags() local 28 new_fl |= S_SYNC; in f2fs_set_inode_flags() 30 new_fl |= S_APPEND; in f2fs_set_inode_flags() 32 new_fl |= S_IMMUTABLE; in f2fs_set_inode_flags() 34 new_fl |= S_NOATIME; in f2fs_set_inode_flags() 36 new_fl |= S_DIRSYNC; in f2fs_set_inode_flags() 38 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC, new_fl); in f2fs_set_inode_flags()
|
/linux-4.1.27/fs/nilfs2/ |
D | inode.c | 444 unsigned int new_fl = 0; in nilfs_set_inode_flags() local 447 new_fl |= S_SYNC; in nilfs_set_inode_flags() 449 new_fl |= S_APPEND; in nilfs_set_inode_flags() 451 new_fl |= S_IMMUTABLE; in nilfs_set_inode_flags() 453 new_fl |= S_NOATIME; in nilfs_set_inode_flags() 455 new_fl |= S_DIRSYNC; in nilfs_set_inode_flags() 456 inode_set_flags(inode, new_fl, S_SYNC | S_APPEND | S_IMMUTABLE | in nilfs_set_inode_flags()
|
/linux-4.1.27/fs/ext4/ |
D | inode.c | 4021 unsigned int new_fl = 0; in ext4_set_inode_flags() local 4024 new_fl |= S_SYNC; in ext4_set_inode_flags() 4026 new_fl |= S_APPEND; in ext4_set_inode_flags() 4028 new_fl |= S_IMMUTABLE; in ext4_set_inode_flags() 4030 new_fl |= S_NOATIME; in ext4_set_inode_flags() 4032 new_fl |= S_DIRSYNC; in ext4_set_inode_flags() 4034 new_fl |= S_DAX; in ext4_set_inode_flags() 4035 inode_set_flags(inode, new_fl, in ext4_set_inode_flags() 4043 unsigned long old_fl, new_fl; in ext4_get_inode_flags() local 4048 new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| in ext4_get_inode_flags() [all …]
|
/linux-4.1.27/fs/btrfs/ |
D | ioctl.c | 139 unsigned int new_fl = 0; in btrfs_update_iflags() local 142 new_fl |= S_SYNC; in btrfs_update_iflags() 144 new_fl |= S_IMMUTABLE; in btrfs_update_iflags() 146 new_fl |= S_APPEND; in btrfs_update_iflags() 148 new_fl |= S_NOATIME; in btrfs_update_iflags() 150 new_fl |= S_DIRSYNC; in btrfs_update_iflags() 154 new_fl); in btrfs_update_iflags()
|