Lines Matching refs:args
40 struct quotactl_args args;
42 args.qc_op = QUOTACTL_STAT;
43 args.u.stat.qc_info = info;
44 return VFS_QUOTACTL(mp, &args);
51 struct quotactl_args args;
53 args.qc_op = QUOTACTL_IDTYPESTAT;
54 args.u.idtypestat.qc_idtype = idtype;
55 args.u.idtypestat.qc_info = info;
56 return VFS_QUOTACTL(mp, &args);
63 struct quotactl_args args;
65 args.qc_op = QUOTACTL_OBJTYPESTAT;
66 args.u.objtypestat.qc_objtype = objtype;
67 args.u.objtypestat.qc_info = info;
68 return VFS_QUOTACTL(mp, &args);
75 struct quotactl_args args;
77 args.qc_op = QUOTACTL_GET;
78 args.u.get.qc_key = key;
79 args.u.get.qc_val = val;
80 return VFS_QUOTACTL(mp, &args);
87 struct quotactl_args args;
89 args.qc_op = QUOTACTL_PUT;
90 args.u.put.qc_key = key;
91 args.u.put.qc_val = val;
92 return VFS_QUOTACTL(mp, &args);
98 struct quotactl_args args;
100 args.qc_op = QUOTACTL_DEL;
101 args.u.del.qc_key = key;
102 return VFS_QUOTACTL(mp, &args);
108 struct quotactl_args args;
110 args.qc_op = QUOTACTL_CURSOROPEN;
111 args.u.cursoropen.qc_cursor = cursor;
112 return VFS_QUOTACTL(mp, &args);
118 struct quotactl_args args;
120 args.qc_op = QUOTACTL_CURSORCLOSE;
121 args.u.cursorclose.qc_cursor = cursor;
122 return VFS_QUOTACTL(mp, &args);
129 struct quotactl_args args;
131 args.qc_op = QUOTACTL_CURSORSKIPIDTYPE;
132 args.u.cursorskipidtype.qc_cursor = cursor;
133 args.u.cursorskipidtype.qc_idtype = idtype;
134 return VFS_QUOTACTL(mp, &args);
142 struct quotactl_args args;
144 args.qc_op = QUOTACTL_CURSORGET;
145 args.u.cursorget.qc_cursor = cursor;
146 args.u.cursorget.qc_keys = keys;
147 args.u.cursorget.qc_vals = vals;
148 args.u.cursorget.qc_maxnum = maxnum;
149 args.u.cursorget.qc_ret = ret;
150 return VFS_QUOTACTL(mp, &args);
157 struct quotactl_args args;
159 args.qc_op = QUOTACTL_CURSORATEND;
160 args.u.cursoratend.qc_cursor = cursor;
161 args.u.cursoratend.qc_ret = ret;
162 return VFS_QUOTACTL(mp, &args);
168 struct quotactl_args args;
170 args.qc_op = QUOTACTL_CURSORREWIND;
171 args.u.cursorrewind.qc_cursor = cursor;
172 return VFS_QUOTACTL(mp, &args);
178 struct quotactl_args args;
180 args.qc_op = QUOTACTL_QUOTAON;
181 args.u.quotaon.qc_idtype = idtype;
182 args.u.quotaon.qc_quotafile = path;
183 return VFS_QUOTACTL(mp, &args);
189 struct quotactl_args args;
191 args.qc_op = QUOTACTL_QUOTAOFF;
192 args.u.quotaoff.qc_idtype = idtype;
193 return VFS_QUOTACTL(mp, &args);