aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/xfs/libxfs/xfs_inode_buf.c
diff options
context:
space:
mode:
authorDave Chinner <david@fromorbit.com>2016-01-05 08:08:35 +1100
committerDave Chinner <david@fromorbit.com>2016-01-05 08:08:35 +1100
commit7eeabbd4b6b69f3f6cb75730f17804b714bd853b (patch)
tree9acbd170426728ea53f1d12ebae6c22b100f78de /fs/xfs/libxfs/xfs_inode_buf.c
parentxfs: debug mode log record crc error injection (diff)
parentXFS: Use a signed return type for suffix_kstrtoint() (diff)
downloadwireguard-linux-7eeabbd4b6b69f3f6cb75730f17804b714bd853b.tar.xz
wireguard-linux-7eeabbd4b6b69f3f6cb75730f17804b714bd853b.zip
Merge branch 'xfs-misc-fixes-for-4.5' into for-next
Diffstat (limited to 'fs/xfs/libxfs/xfs_inode_buf.c')
-rw-r--r--fs/xfs/libxfs/xfs_inode_buf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/libxfs/xfs_inode_buf.c b/fs/xfs/libxfs/xfs_inode_buf.c
index 268c00f4f83a..1b8d98a915c4 100644
--- a/fs/xfs/libxfs/xfs_inode_buf.c
+++ b/fs/xfs/libxfs/xfs_inode_buf.c
@@ -132,11 +132,13 @@ xfs_inode_buf_write_verify(
}
const struct xfs_buf_ops xfs_inode_buf_ops = {
+ .name = "xfs_inode",
.verify_read = xfs_inode_buf_read_verify,
.verify_write = xfs_inode_buf_write_verify,
};
const struct xfs_buf_ops xfs_inode_buf_ra_ops = {
+ .name = "xxfs_inode_ra",
.verify_read = xfs_inode_buf_readahead_verify,
.verify_write = xfs_inode_buf_write_verify,
};