diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2018-01-08 10:51:05 -0800 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-01-08 10:54:46 -0800 |
commit | 0795e004fd4f2723f3dbf09a195cd7ccf3c74c58 (patch) | |
tree | 3b0dc32355d3d1d849d2ae252a32643e6ea1200f /fs/xfs/libxfs/xfs_shared.h | |
parent | 1e1bbd8e7ee0624034e9bf1e91ac11a7aaa2f8a6 (diff) | |
download | linux-0795e004fd4f2723f3dbf09a195cd7ccf3c74c58.tar.gz linux-0795e004fd4f2723f3dbf09a195cd7ccf3c74c58.tar.bz2 linux-0795e004fd4f2723f3dbf09a195cd7ccf3c74c58.zip |
xfs: create structure verifier function for short form symlinks
Create a function to check the structure of short form symlink targets.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_shared.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_shared.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/libxfs/xfs_shared.h b/fs/xfs/libxfs/xfs_shared.h index c6f4eb46fe26..67ccb1ab4d7e 100644 --- a/fs/xfs/libxfs/xfs_shared.h +++ b/fs/xfs/libxfs/xfs_shared.h @@ -143,5 +143,6 @@ bool xfs_symlink_hdr_ok(xfs_ino_t ino, uint32_t offset, uint32_t size, struct xfs_buf *bp); void xfs_symlink_local_to_remote(struct xfs_trans *tp, struct xfs_buf *bp, struct xfs_inode *ip, struct xfs_ifork *ifp); +xfs_failaddr_t xfs_symlink_shortform_verify(struct xfs_inode *ip); #endif /* __XFS_SHARED_H__ */ |