diff options
author | Dave Chinner <david@fromorbit.com> | 2016-01-05 00:08:35 +0300 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-01-05 00:08:35 +0300 |
commit | 7eeabbd4b6b69f3f6cb75730f17804b714bd853b (patch) | |
tree | 9acbd170426728ea53f1d12ebae6c22b100f78de /fs/xfs/libxfs/xfs_alloc.c | |
parent | 609adfc2ed5ba16700f125da0b656248bd9d4316 (diff) | |
parent | a841b64df29b4c7e68ce564d752dfb2042db5404 (diff) | |
download | linux-7eeabbd4b6b69f3f6cb75730f17804b714bd853b.tar.xz |
Merge branch 'xfs-misc-fixes-for-4.5' into for-next
Diffstat (limited to 'fs/xfs/libxfs/xfs_alloc.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_alloc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_alloc.c b/fs/xfs/libxfs/xfs_alloc.c index 3479294c1d58..a708e38b494c 100644 --- a/fs/xfs/libxfs/xfs_alloc.c +++ b/fs/xfs/libxfs/xfs_alloc.c @@ -535,6 +535,7 @@ xfs_agfl_write_verify( } const struct xfs_buf_ops xfs_agfl_buf_ops = { + .name = "xfs_agfl", .verify_read = xfs_agfl_read_verify, .verify_write = xfs_agfl_write_verify, }; @@ -1926,7 +1927,7 @@ xfs_alloc_space_available( * Decide whether to use this allocation group for this allocation. * If so, fix up the btree freelist's size. */ -STATIC int /* error */ +int /* error */ xfs_alloc_fix_freelist( struct xfs_alloc_arg *args, /* allocation argument structure */ int flags) /* XFS_ALLOC_FLAG_... */ @@ -2339,6 +2340,7 @@ xfs_agf_write_verify( } const struct xfs_buf_ops xfs_agf_buf_ops = { + .name = "xfs_agf", .verify_read = xfs_agf_read_verify, .verify_write = xfs_agf_write_verify, }; |