Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 125829
b: refs/heads/master
c: e3d4d56
h: refs/heads/master
i:
  125827: 3707ef2
v: v3
  • Loading branch information
Jan Kara authored and Mark Fasheh committed Jan 5, 2009
1 parent 4330758 commit f89baa6
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 32 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1ccd14b9c271c1ac6eec5c5ec5def433100e7248
refs/heads/master: e3d4d56b9715e40ded2a84d0d4fa7f3b6c58983c
53 changes: 34 additions & 19 deletions trunk/fs/quota_v2.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ static int v2_read_file_info(struct super_block *sb, int type)
{
struct v2_disk_dqinfo dinfo;
struct mem_dqinfo *info = sb_dqinfo(sb, type);
struct qtree_mem_dqinfo *qinfo;
ssize_t size;

size = sb->s_op->quota_read(sb, type, (char *)&dinfo,
Expand All @@ -80,22 +81,29 @@ static int v2_read_file_info(struct super_block *sb, int type)
sb->s_id);
return -1;
}
info->dqi_priv = kmalloc(sizeof(struct qtree_mem_dqinfo), GFP_NOFS);
if (!info->dqi_priv) {
printk(KERN_WARNING
"Not enough memory for quota information structure.\n");
return -1;
}
qinfo = info->dqi_priv;
/* limits are stored as unsigned 32-bit data */
info->dqi_maxblimit = 0xffffffff;
info->dqi_maxilimit = 0xffffffff;
info->dqi_bgrace = le32_to_cpu(dinfo.dqi_bgrace);
info->dqi_igrace = le32_to_cpu(dinfo.dqi_igrace);
info->dqi_flags = le32_to_cpu(dinfo.dqi_flags);
info->u.v2_i.i.dqi_sb = sb;
info->u.v2_i.i.dqi_type = type;
info->u.v2_i.i.dqi_blocks = le32_to_cpu(dinfo.dqi_blocks);
info->u.v2_i.i.dqi_free_blk = le32_to_cpu(dinfo.dqi_free_blk);
info->u.v2_i.i.dqi_free_entry = le32_to_cpu(dinfo.dqi_free_entry);
info->u.v2_i.i.dqi_blocksize_bits = V2_DQBLKSIZE_BITS;
info->u.v2_i.i.dqi_usable_bs = 1 << V2_DQBLKSIZE_BITS;
info->u.v2_i.i.dqi_qtree_depth = qtree_depth(&info->u.v2_i.i);
info->u.v2_i.i.dqi_entry_size = sizeof(struct v2_disk_dqblk);
info->u.v2_i.i.dqi_ops = &v2_qtree_ops;
qinfo->dqi_sb = sb;
qinfo->dqi_type = type;
qinfo->dqi_blocks = le32_to_cpu(dinfo.dqi_blocks);
qinfo->dqi_free_blk = le32_to_cpu(dinfo.dqi_free_blk);
qinfo->dqi_free_entry = le32_to_cpu(dinfo.dqi_free_entry);
qinfo->dqi_blocksize_bits = V2_DQBLKSIZE_BITS;
qinfo->dqi_usable_bs = 1 << V2_DQBLKSIZE_BITS;
qinfo->dqi_qtree_depth = qtree_depth(qinfo);
qinfo->dqi_entry_size = sizeof(struct v2_disk_dqblk);
qinfo->dqi_ops = &v2_qtree_ops;
return 0;
}

Expand All @@ -104,6 +112,7 @@ static int v2_write_file_info(struct super_block *sb, int type)
{
struct v2_disk_dqinfo dinfo;
struct mem_dqinfo *info = sb_dqinfo(sb, type);
struct qtree_mem_dqinfo *qinfo = info->dqi_priv;
ssize_t size;

spin_lock(&dq_data_lock);
Expand All @@ -112,9 +121,9 @@ static int v2_write_file_info(struct super_block *sb, int type)
dinfo.dqi_igrace = cpu_to_le32(info->dqi_igrace);
dinfo.dqi_flags = cpu_to_le32(info->dqi_flags & DQF_MASK);
spin_unlock(&dq_data_lock);
dinfo.dqi_blocks = cpu_to_le32(info->u.v2_i.i.dqi_blocks);
dinfo.dqi_free_blk = cpu_to_le32(info->u.v2_i.i.dqi_free_blk);
dinfo.dqi_free_entry = cpu_to_le32(info->u.v2_i.i.dqi_free_entry);
dinfo.dqi_blocks = cpu_to_le32(qinfo->dqi_blocks);
dinfo.dqi_free_blk = cpu_to_le32(qinfo->dqi_free_blk);
dinfo.dqi_free_entry = cpu_to_le32(qinfo->dqi_free_entry);
size = sb->s_op->quota_write(sb, type, (char *)&dinfo,
sizeof(struct v2_disk_dqinfo), V2_DQINFOOFF);
if (size != sizeof(struct v2_disk_dqinfo)) {
Expand Down Expand Up @@ -150,7 +159,7 @@ static void v2_mem2diskdqb(void *dp, struct dquot *dquot)
struct v2_disk_dqblk *d = dp;
struct mem_dqblk *m = &dquot->dq_dqb;
struct qtree_mem_dqinfo *info =
&sb_dqinfo(dquot->dq_sb, dquot->dq_type)->u.v2_i.i;
sb_dqinfo(dquot->dq_sb, dquot->dq_type)->dqi_priv;

d->dqb_ihardlimit = cpu_to_le32(m->dqb_ihardlimit);
d->dqb_isoftlimit = cpu_to_le32(m->dqb_isoftlimit);
Expand All @@ -169,7 +178,7 @@ static int v2_is_id(void *dp, struct dquot *dquot)
{
struct v2_disk_dqblk *d = dp;
struct qtree_mem_dqinfo *info =
&sb_dqinfo(dquot->dq_sb, dquot->dq_type)->u.v2_i.i;
sb_dqinfo(dquot->dq_sb, dquot->dq_type)->dqi_priv;

if (qtree_entry_unused(info, dp))
return 0;
Expand All @@ -178,24 +187,30 @@ static int v2_is_id(void *dp, struct dquot *dquot)

static int v2_read_dquot(struct dquot *dquot)
{
return qtree_read_dquot(&sb_dqinfo(dquot->dq_sb, dquot->dq_type)->u.v2_i.i, dquot);
return qtree_read_dquot(sb_dqinfo(dquot->dq_sb, dquot->dq_type)->dqi_priv, dquot);
}

static int v2_write_dquot(struct dquot *dquot)
{
return qtree_write_dquot(&sb_dqinfo(dquot->dq_sb, dquot->dq_type)->u.v2_i.i, dquot);
return qtree_write_dquot(sb_dqinfo(dquot->dq_sb, dquot->dq_type)->dqi_priv, dquot);
}

static int v2_release_dquot(struct dquot *dquot)
{
return qtree_release_dquot(&sb_dqinfo(dquot->dq_sb, dquot->dq_type)->u.v2_i.i, dquot);
return qtree_release_dquot(sb_dqinfo(dquot->dq_sb, dquot->dq_type)->dqi_priv, dquot);
}

static int v2_free_file_info(struct super_block *sb, int type)
{
kfree(sb_dqinfo(sb, type)->dqi_priv);
return 0;
}

static struct quota_format_ops v2_format_ops = {
.check_quota_file = v2_check_quota_file,
.read_file_info = v2_read_file_info,
.write_file_info = v2_write_file_info,
.free_file_info = NULL,
.free_file_info = v2_free_file_info,
.read_dqblk = v2_read_dquot,
.commit_dqblk = v2_write_dquot,
.release_dqblk = v2_release_dquot,
Expand Down
4 changes: 0 additions & 4 deletions trunk/include/linux/dqblk_v1.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,4 @@
#define V1_DEL_ALLOC 0
#define V1_DEL_REWRITE 2

/* Special information about quotafile */
struct v1_mem_dqinfo {
};

#endif /* _LINUX_DQBLK_V1_H */
4 changes: 0 additions & 4 deletions trunk/include/linux/dqblk_v2.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,4 @@
#define V2_DEL_ALLOC QTREE_DEL_ALLOC
#define V2_DEL_REWRITE QTREE_DEL_REWRITE

struct v2_mem_dqinfo {
struct qtree_mem_dqinfo i;
};

#endif /* _LINUX_DQBLK_V2_H */
5 changes: 1 addition & 4 deletions trunk/include/linux/quota.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,7 @@ struct mem_dqinfo {
unsigned int dqi_igrace;
qsize_t dqi_maxblimit;
qsize_t dqi_maxilimit;
union {
struct v1_mem_dqinfo v1_i;
struct v2_mem_dqinfo v2_i;
} u;
void *dqi_priv;
};

struct super_block;
Expand Down

0 comments on commit f89baa6

Please sign in to comment.