diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-08-12 12:49:43 +0200 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-08-12 23:46:08 +0200 |
commit | c5c249b42464cbcda3ac5cbdc114f6a6d5b0b7ac (patch) | |
tree | 26870433ba4e8a002497260f94394391b00d782e /fs/xfs/xfs_inode_fork.c | |
parent | xfs: create xfs_bmap_util.[ch] (diff) | |
download | linux-c5c249b42464cbcda3ac5cbdc114f6a6d5b0b7ac.tar.xz linux-c5c249b42464cbcda3ac5cbdc114f6a6d5b0b7ac.zip |
xfs: minor cleanups
These come from syncing the shared userspace and kernel code. Small
whitespace and trivial cleanups.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_inode_fork.c')
-rw-r--r-- | fs/xfs/xfs_inode_fork.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_inode_fork.c b/fs/xfs/xfs_inode_fork.c index 8b8ba0234371..f06570bb36bd 100644 --- a/fs/xfs/xfs_inode_fork.c +++ b/fs/xfs/xfs_inode_fork.c @@ -780,8 +780,8 @@ xfs_iextents_copy( } /* Translate to on disk format */ - put_unaligned(cpu_to_be64(ep->l0), &dp->l0); - put_unaligned(cpu_to_be64(ep->l1), &dp->l1); + put_unaligned_be64(ep->l0, &dp->l0); + put_unaligned_be64(ep->l1, &dp->l1); dp++; copied++; } |