Lines Matching refs:fdq
133 struct fs_disk_quota fdq; in quota_getquota() local
139 ret = sb->s_qcop->get_dqblk(sb, type, id, &fdq); in quota_getquota()
142 copy_to_if_dqblk(&idq, &fdq); in quota_getquota()
177 struct fs_disk_quota fdq; in quota_setquota() local
184 copy_from_if_dqblk(&fdq, &idq); in quota_setquota()
185 return sb->s_qcop->set_dqblk(sb, type, id, &fdq); in quota_setquota()
215 struct fs_disk_quota fdq; in quota_setxquota() local
217 if (copy_from_user(&fdq, addr, sizeof(fdq))) in quota_setxquota()
221 return sb->s_qcop->set_dqblk(sb, type, id, &fdq); in quota_setxquota()
227 struct fs_disk_quota fdq; in quota_getxquota() local
232 ret = sb->s_qcop->get_dqblk(sb, type, id, &fdq); in quota_getxquota()
233 if (!ret && copy_to_user(addr, &fdq, sizeof(fdq))) in quota_getxquota()