diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-04-02 12:24:04 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-30 05:28:32 +0200 |
commit | 77ba78776e90e8de541f13b326e284c74286252f (patch) | |
tree | ea05703a21e255484462b947e5f15ffd781163cd /fs/xfs/xfs_trans.c | |
parent | switch utimes() to fget_light/fput_light (diff) | |
download | linux-77ba78776e90e8de541f13b326e284c74286252f.tar.xz linux-77ba78776e90e8de541f13b326e284c74286252f.zip |
xfs: switch to proper __bitwise type for KM_... flags
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/xfs/xfs_trans.c')
-rw-r--r-- | fs/xfs/xfs_trans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans.c b/fs/xfs/xfs_trans.c index cdf896fcbfa4..fdf324508c5e 100644 --- a/fs/xfs/xfs_trans.c +++ b/fs/xfs/xfs_trans.c @@ -584,7 +584,7 @@ xfs_trans_t * _xfs_trans_alloc( xfs_mount_t *mp, uint type, - uint memflags) + xfs_km_flags_t memflags) { xfs_trans_t *tp; |