aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/quota/xfs_dquot_item.c
diff options
context:
space:
mode:
authorTim Shimmin <tes@sgi.com>2006-03-14 13:25:02 +1100
committerNathan Scott <nathans@sgi.com>2006-03-14 13:25:02 +1100
commitfcce0f1f9ae8d49fd27d418428034a505816d395 (patch)
tree4a41335c1ec4a9092e7ea4010f259b6c7dd84185 /fs/xfs/quota/xfs_dquot_item.c
parent[XFS] UUID endianess fix. uu_timelow is a 32bit field and needs to be (diff)
downloadlinux-dev-fcce0f1f9ae8d49fd27d418428034a505816d395.tar.xz
linux-dev-fcce0f1f9ae8d49fd27d418428034a505816d395.zip
[XFS] forgot a couple of calls to XLOG_VEC_SET_TYPE when porting from irix
to linux. SGI-PV: 931456 SGI-Modid: xfs-linux-melb:xfs-kern:25238a Signed-off-by: Tim Shimmin <tes@sgi.com> Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/quota/xfs_dquot_item.c')
-rw-r--r--fs/xfs/quota/xfs_dquot_item.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/quota/xfs_dquot_item.c b/fs/xfs/quota/xfs_dquot_item.c
index 2ec6b441849c..e4e5f05b841b 100644
--- a/fs/xfs/quota/xfs_dquot_item.c
+++ b/fs/xfs/quota/xfs_dquot_item.c
@@ -79,9 +79,11 @@ xfs_qm_dquot_logitem_format(
logvec->i_addr = (xfs_caddr_t)&logitem->qli_format;
logvec->i_len = sizeof(xfs_dq_logformat_t);
+ XLOG_VEC_SET_TYPE(logvec, XLOG_REG_TYPE_QFORMAT);
logvec++;
logvec->i_addr = (xfs_caddr_t)&logitem->qli_dquot->q_core;
logvec->i_len = sizeof(xfs_disk_dquot_t);
+ XLOG_VEC_SET_TYPE(logvec, XLOG_REG_TYPE_DQUOT);
ASSERT(2 == logitem->qli_item.li_desc->lid_size);
logitem->qli_format.qlf_size = 2;