aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/ondisk.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/gfs2/ondisk.c')
-rw-r--r--fs/gfs2/ondisk.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/gfs2/ondisk.c b/fs/gfs2/ondisk.c
index cd4cf055c37d..a5b05ea3d4c7 100644
--- a/fs/gfs2/ondisk.c
+++ b/fs/gfs2/ondisk.c
@@ -121,6 +121,16 @@ void gfs2_quota_in(struct gfs2_quota_host *qu, const void *buf)
121 qu->qu_value = be64_to_cpu(str->qu_value); 121 qu->qu_value = be64_to_cpu(str->qu_value);
122} 122}
123 123
124void gfs2_quota_out(const struct gfs2_quota_host *qu, void *buf)
125{
126 struct gfs2_quota *str = buf;
127
128 str->qu_limit = cpu_to_be64(qu->qu_limit);
129 str->qu_warn = cpu_to_be64(qu->qu_warn);
130 str->qu_value = cpu_to_be64(qu->qu_value);
131 memset(&str->qu_reserved, 0, sizeof(str->qu_reserved));
132}
133
124void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf) 134void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
125{ 135{
126 const struct gfs2_dinode_host *di = &ip->i_di; 136 const struct gfs2_dinode_host *di = &ip->i_di;