diff options
author | Dave Chinner <dchinner@redhat.com> | 2014-10-02 01:18:13 +0200 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-10-02 01:18:13 +0200 |
commit | e076b0f3a5c472e77c0a0e163188f2761e8b4fed (patch) | |
tree | 21f845bf245552bdd3a6e34526faf7e01186ca3d /fs/xfs/xfs_trans_inode.c | |
parent | xfs: compat_xfs_bstat does not have forkoff (diff) | |
download | linux-e076b0f3a5c472e77c0a0e163188f2761e8b4fed.tar.xz linux-e076b0f3a5c472e77c0a0e163188f2761e8b4fed.zip |
xfs: kill time.h
The typedef for timespecs and nanotime() are completely unnecessary,
and delay() can be moved to fs/xfs/linux.h, which means this file
can go away.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_trans_inode.c')
-rw-r--r-- | fs/xfs/xfs_trans_inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans_inode.c b/fs/xfs/xfs_trans_inode.c index 50c3f5614288..cdb4d86520e1 100644 --- a/fs/xfs/xfs_trans_inode.c +++ b/fs/xfs/xfs_trans_inode.c @@ -70,7 +70,7 @@ xfs_trans_ichgtime( int flags) { struct inode *inode = VFS_I(ip); - timespec_t tv; + struct timespec tv; ASSERT(tp); ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |