Lines Matching refs:ddquot
259 char *ddquot;
299 ddquot = buf + sizeof(struct qt_disk_dqdbheader);
301 if (qtree_entry_unused(info, ddquot))
303 ddquot += info->dqi_entry_size;
413 char *ddquot = kmalloc(info->dqi_entry_size, GFP_NOFS);
415 if (!ddquot)
424 kfree(ddquot);
429 info->dqi_ops->mem2disk_dqblk(ddquot, dquot);
431 ret = sb->s_op->quota_write(sb, type, ddquot, info->dqi_entry_size,
441 kfree(ddquot);
583 char *ddquot;
593 ddquot = buf + sizeof(struct qt_disk_dqdbheader);
595 if (info->dqi_ops->is_id(ddquot, dquot))
597 ddquot += info->dqi_entry_size;
660 char *ddquot;
687 ddquot = kmalloc(info->dqi_entry_size, GFP_NOFS);
688 if (!ddquot)
690 ret = sb->s_op->quota_read(sb, type, ddquot, info->dqi_entry_size,
699 kfree(ddquot);
703 info->dqi_ops->disk2mem_dqblk(dquot, ddquot);
710 kfree(ddquot);