Home
last modified time | relevance | path

Searched refs:eofb (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/fs/xfs/
Dxfs_icache.c1193 struct xfs_eofblocks *eofb) in xfs_inode_match_id() argument
1195 if ((eofb->eof_flags & XFS_EOF_FLAGS_UID) && in xfs_inode_match_id()
1196 !uid_eq(VFS_I(ip)->i_uid, eofb->eof_uid)) in xfs_inode_match_id()
1199 if ((eofb->eof_flags & XFS_EOF_FLAGS_GID) && in xfs_inode_match_id()
1200 !gid_eq(VFS_I(ip)->i_gid, eofb->eof_gid)) in xfs_inode_match_id()
1203 if ((eofb->eof_flags & XFS_EOF_FLAGS_PRID) && in xfs_inode_match_id()
1204 xfs_get_projid(ip) != eofb->eof_prid) in xfs_inode_match_id()
1217 struct xfs_eofblocks *eofb) in xfs_inode_match_id_union() argument
1219 if ((eofb->eof_flags & XFS_EOF_FLAGS_UID) && in xfs_inode_match_id_union()
1220 uid_eq(VFS_I(ip)->i_uid, eofb->eof_uid)) in xfs_inode_match_id_union()
[all …]
Dxfs_file.c858 struct xfs_eofblocks eofb = {0}; in xfs_file_buffered_aio_write() local
862 eofb.eof_scan_owner = ip->i_ino; /* for locking */ in xfs_file_buffered_aio_write()
863 eofb.eof_flags = XFS_EOF_FLAGS_SYNC; in xfs_file_buffered_aio_write()
864 xfs_icache_free_eofblocks(ip->i_mount, &eofb); in xfs_file_buffered_aio_write()
Dxfs_ioctl.c1795 struct xfs_fs_eofblocks eofb; in xfs_file_ioctl() local
1804 if (copy_from_user(&eofb, arg, sizeof(eofb))) in xfs_file_ioctl()
1807 error = xfs_fs_eofblocks_from_user(&eofb, &keofb); in xfs_file_ioctl()