diff options
author | Dave Chinner <david@fromorbit.com> | 2015-02-02 00:03:18 +0100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2015-02-02 00:03:18 +0100 |
commit | 3fd1b0d158b6b98d9561e2f7f9c6970d95cf71d6 (patch) | |
tree | 3a32490a8db83ca2ed6da6701af20e3cd6adff2c /fs/xfs/xfs_inode.h | |
parent | Merge branch 'xfs-buf-type-fixes' into for-next (diff) | |
parent | xfs: don't allocate an ioend for direct I/O completions (diff) | |
download | linux-3fd1b0d158b6b98d9561e2f7f9c6970d95cf71d6.tar.xz linux-3fd1b0d158b6b98d9561e2f7f9c6970d95cf71d6.zip |
Merge branch 'xfs-misc-fixes-for-3.20-3' into for-next
Diffstat (limited to 'fs/xfs/xfs_inode.h')
-rw-r--r-- | fs/xfs/xfs_inode.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h index f7722960b69c..86cd6b39bed7 100644 --- a/fs/xfs/xfs_inode.h +++ b/fs/xfs/xfs_inode.h @@ -377,6 +377,15 @@ int xfs_droplink(struct xfs_trans *, struct xfs_inode *); int xfs_bumplink(struct xfs_trans *, struct xfs_inode *); /* from xfs_file.c */ +enum xfs_prealloc_flags { + XFS_PREALLOC_SET = (1 << 1), + XFS_PREALLOC_CLEAR = (1 << 2), + XFS_PREALLOC_SYNC = (1 << 3), + XFS_PREALLOC_INVISIBLE = (1 << 4), +}; + +int xfs_update_prealloc_flags(struct xfs_inode *, + enum xfs_prealloc_flags); int xfs_zero_eof(struct xfs_inode *, xfs_off_t, xfs_fsize_t); int xfs_iozero(struct xfs_inode *, loff_t, size_t); |