diff options
author | Felix Blyakher <felixb@sgi.com> | 2009-06-12 22:28:59 -0400 |
---|---|---|
committer | Felix Blyakher <felixb@sgi.com> | 2009-06-12 22:28:59 -0400 |
commit | fd40261354802b0f05f6f67121235aa002e87069 (patch) | |
tree | 935f23fa1528f6fe5a078383c9343907ea27fbb3 /fs/xfs/linux-2.6 | |
parent | f3ad116588151b3371ae4e092290e4f48e62b8bb (diff) | |
parent | e83f1eb6bfc4004c19a99ee5f5aa65bd3fbecec3 (diff) |
Merge branch 'master' of git://oss.sgi.com/xfs/xfs into for-linus
Diffstat (limited to 'fs/xfs/linux-2.6')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_acl.c | 523 | ||||
-rw-r--r-- | fs/xfs/linux-2.6/xfs_ioctl.c | 25 | ||||
-rw-r--r-- | fs/xfs/linux-2.6/xfs_iops.c | 53 | ||||
-rw-r--r-- | fs/xfs/linux-2.6/xfs_lrw.c | 1 | ||||
-rw-r--r-- | fs/xfs/linux-2.6/xfs_quotaops.c | 4 | ||||
-rw-r--r-- | fs/xfs/linux-2.6/xfs_super.c | 49 | ||||
-rw-r--r-- | fs/xfs/linux-2.6/xfs_sync.c | 479 | ||||
-rw-r--r-- | fs/xfs/linux-2.6/xfs_sync.h | 19 | ||||
-rw-r--r-- | fs/xfs/linux-2.6/xfs_xattr.c | 67 |
9 files changed, 846 insertions, 374 deletions
diff --git a/fs/xfs/linux-2.6/xfs_acl.c b/fs/xfs/linux-2.6/xfs_acl.c new file mode 100644 index 000000000000..1e9d1246eebc --- /dev/null +++ b/fs/xfs/linux-2.6/xfs_acl.c | |||
@@ -0,0 +1,523 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2008, Christoph Hellwig | ||
3 | * All Rights Reserved. | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or | ||
6 | * modify it under the terms of the GNU General Public License as | ||
7 | * published by the Free Software Foundation. | ||
8 | * | ||
9 | * This program is distributed in the hope that it would be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write the Free Software Foundation, | ||
16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
17 | */ | ||
18 | #include "xfs.h" | ||
19 | #include "xfs_acl.h" | ||
20 | #include "xfs_attr.h" | ||
21 | #include "xfs_bmap_btree.h" | ||
22 | #include "xfs_inode.h" | ||
23 | #include "xfs_vnodeops.h" | ||
24 | #include <linux/xattr.h> | ||
25 | #include <linux/posix_acl_xattr.h> | ||
26 | |||
27 | |||
28 | #define XFS_ACL_NOT_CACHED ((void *)-1) | ||
29 | |||
30 | /* | ||
31 | * Locking scheme: | ||
32 | * - all ACL updates are protected by inode->i_mutex, which is taken before | ||
33 | * calling into this file. | ||
34 | * - access and updates to the ip->i_acl and ip->i_default_acl pointers are | ||
35 | * protected by inode->i_lock. | ||
36 | */ | ||
37 | |||
38 | STATIC struct posix_acl * | ||
39 | xfs_acl_from_disk(struct xfs_acl *aclp) | ||
40 | { | ||
41 | struct posix_acl_entry *acl_e; | ||
42 | struct posix_acl *acl; | ||
43 | struct xfs_acl_entry *ace; | ||
44 | int count, i; | ||
45 | |||
46 | count = be32_to_cpu(aclp->acl_cnt); | ||
47 | |||
48 | acl = posix_acl_alloc(count, GFP_KERNEL); | ||
49 | if (!acl) | ||
50 | return ERR_PTR(-ENOMEM); | ||
51 | |||
52 | for (i = 0; i < count; i++) { | ||
53 | acl_e = &acl->a_entries[i]; | ||
54 | ace = &aclp->acl_entry[i]; | ||
55 | |||
56 | /* | ||
57 | * The tag is 32 bits on disk and 16 bits in core. | ||
58 | * | ||
59 | * Because every access to it goes through the core | ||
60 | * format first this is not a problem. | ||
61 | */ | ||
62 | acl_e->e_tag = be32_to_cpu(ace->ae_tag); | ||
63 | acl_e->e_perm = be16_to_cpu(ace->ae_perm); | ||
64 | |||
65 | switch (acl_e->e_tag) { | ||
66 | case ACL_USER: | ||
67 | case ACL_GROUP: | ||
68 | acl_e->e_id = be32_to_cpu(ace->ae_id); | ||
69 | break; | ||
70 | case ACL_USER_OBJ: | ||
71 | case ACL_GROUP_OBJ: | ||
72 | case ACL_MASK: | ||
73 | case ACL_OTHER: | ||
74 | acl_e->e_id = ACL_UNDEFINED_ID; | ||
75 | break; | ||
76 | default: | ||
77 | goto fail; | ||
78 | } | ||
79 | } | ||
80 | return acl; | ||
81 | |||
82 | fail: | ||
83 | posix_acl_release(acl); | ||
84 | return ERR_PTR(-EINVAL); | ||
85 | } | ||
86 | |||
87 | STATIC void | ||
88 | xfs_acl_to_disk(struct xfs_acl *aclp, const struct posix_acl *acl) | ||
89 | { | ||
90 | const struct posix_acl_entry *acl_e; | ||
91 | struct xfs_acl_entry *ace; | ||
92 | int i; | ||
93 | |||
94 | aclp->acl_cnt = cpu_to_be32(acl->a_count); | ||
95 | for (i = 0; i < acl->a_count; i++) { | ||
96 | ace = &aclp->acl_entry[i]; | ||
97 | acl_e = &acl->a_entries[i]; | ||
98 | |||
99 | ace->ae_tag = cpu_to_be32(acl_e->e_tag); | ||
100 | ace->ae_id = cpu_to_be32(acl_e->e_id); | ||
101 | ace->ae_perm = cpu_to_be16(acl_e->e_perm); | ||
102 | } | ||
103 | } | ||
104 | |||
105 | /* | ||
106 | * Update the cached ACL pointer in the inode. | ||
107 | * | ||
108 | * Because we don't hold any locks while reading/writing the attribute | ||
109 | * from/to disk another thread could have raced and updated the cached | ||
110 | * ACL value before us. In that case we release the previous cached value | ||
111 | * and update it with our new value. | ||
112 | */ | ||
113 | STATIC void | ||
114 | xfs_update_cached_acl(struct inode *inode, struct posix_acl **p_acl, | ||
115 | struct posix_acl *acl) | ||
116 | { | ||
117 | spin_lock(&inode->i_lock); | ||
118 | if (*p_acl && *p_acl != XFS_ACL_NOT_CACHED) | ||
119 | posix_acl_release(*p_acl); | ||
120 | *p_acl = posix_acl_dup(acl); | ||
121 | spin_unlock(&inode->i_lock); | ||
122 | } | ||
123 | |||
124 | struct posix_acl * | ||
125 | xfs_get_acl(struct inode *inode, int type) | ||
126 | { | ||
127 | struct xfs_inode *ip = XFS_I(inode); | ||
128 | struct posix_acl *acl = NULL, **p_acl; | ||
129 | struct xfs_acl *xfs_acl; | ||
130 | int len = sizeof(struct xfs_acl); | ||
131 | char *ea_name; | ||
132 | int error; | ||
133 | |||
134 | switch (type) { | ||
135 | case ACL_TYPE_ACCESS: | ||
136 | ea_name = SGI_ACL_FILE; | ||
137 | p_acl = &ip->i_acl; | ||
138 | break; | ||
139 | case ACL_TYPE_DEFAULT: | ||
140 | ea_name = SGI_ACL_DEFAULT; | ||
141 | p_acl = &ip->i_default_acl; | ||
142 | break; | ||
143 | default: | ||
144 | return ERR_PTR(-EINVAL); | ||
145 | } | ||
146 | |||
147 | spin_lock(&inode->i_lock); | ||
148 | if (*p_acl != XFS_ACL_NOT_CACHED) | ||
149 | acl = posix_acl_dup(*p_acl); | ||
150 | spin_unlock(&inode->i_lock); | ||
151 | |||
152 | /* | ||
153 | * If we have a cached ACLs value just return it, not need to | ||
154 | * go out to the disk. | ||
155 | */ | ||
156 | if (acl) | ||
157 | return acl; | ||
158 | |||
159 | xfs_acl = kzalloc(sizeof(struct xfs_acl), GFP_KERNEL); | ||
160 | if (!xfs_acl) | ||
161 | return ERR_PTR(-ENOMEM); | ||
162 | |||
163 | error = -xfs_attr_get(ip, ea_name, (char *)xfs_acl, &len, ATTR_ROOT); | ||
164 | if (error) { | ||
165 | /* | ||
166 | * If the attribute doesn't exist make sure we have a negative | ||
167 | * cache entry, for any other error assume it is transient and | ||
168 | * leave the cache entry as XFS_ACL_NOT_CACHED. | ||
169 | */ | ||
170 | if (error == -ENOATTR) { | ||
171 | acl = NULL; | ||
172 | goto out_update_cache; | ||
173 | } | ||
174 | goto out; | ||
175 | } | ||
176 | |||
177 | acl = xfs_acl_from_disk(xfs_acl); | ||
178 | if (IS_ERR(acl)) | ||
179 | goto out; | ||
180 | |||
181 | out_update_cache: | ||
182 | xfs_update_cached_acl(inode, p_acl, acl); | ||
183 | out: | ||
184 | kfree(xfs_acl); | ||
185 | return acl; | ||
186 | } | ||
187 | |||
188 | STATIC int | ||
189 | xfs_set_acl(struct inode *inode, int type, struct posix_acl *acl) | ||
190 | { | ||
191 | struct xfs_inode *ip = XFS_I(inode); | ||
192 | struct posix_acl **p_acl; | ||
193 | char *ea_name; | ||
194 | int error; | ||
195 | |||
196 | if (S_ISLNK(inode->i_mode)) | ||
197 | return -EOPNOTSUPP; | ||
198 | |||
199 | switch (type) { | ||
200 | case ACL_TYPE_ACCESS: | ||
201 | ea_name = SGI_ACL_FILE; | ||
202 | p_acl = &ip->i_acl; | ||
203 | break; | ||
204 | case ACL_TYPE_DEFAULT: | ||
205 | if (!S_ISDIR(inode->i_mode)) | ||
206 | return acl ? -EACCES : 0; | ||
207 | ea_name = SGI_ACL_DEFAULT; | ||
208 | p_acl = &ip->i_default_acl; | ||
209 | break; | ||
210 | default: | ||
211 | return -EINVAL; | ||
212 | } | ||
213 | |||
214 | if (acl) { | ||
215 | struct xfs_acl *xfs_acl; | ||
216 | int len; | ||
217 | |||
218 | xfs_acl = kzalloc(sizeof(struct xfs_acl), GFP_KERNEL); | ||
219 | if (!xfs_acl) | ||
220 | return -ENOMEM; | ||
221 | |||
222 | xfs_acl_to_disk(xfs_acl, acl); | ||
223 | len = sizeof(struct xfs_acl) - | ||
224 | (sizeof(struct xfs_acl_entry) * | ||
225 | (XFS_ACL_MAX_ENTRIES - acl->a_count)); | ||
226 | |||
227 | error = -xfs_attr_set(ip, ea_name, (char *)xfs_acl, | ||
228 | len, ATTR_ROOT); | ||
229 | |||
230 | kfree(xfs_acl); | ||
231 | } else { | ||
232 | /* | ||
233 | * A NULL ACL argument means we want to remove the ACL. | ||
234 | */ | ||
235 | error = -xfs_attr_remove(ip, ea_name, ATTR_ROOT); | ||
236 | |||
237 | /* | ||
238 | * If the attribute didn't exist to start with that's fine. | ||
239 | */ | ||
240 | if (error == -ENOATTR) | ||
241 | error = 0; | ||
242 | } | ||
243 | |||
244 | if (!error) | ||
245 | xfs_update_cached_acl(inode, p_acl, acl); | ||
246 | return error; | ||
247 | } | ||
248 | |||
249 | int | ||
250 | xfs_check_acl(struct inode *inode, int mask) | ||
251 | { | ||
252 | struct xfs_inode *ip = XFS_I(inode); | ||
253 | struct posix_acl *acl; | ||
254 | int error = -EAGAIN; | ||
255 | |||
256 | xfs_itrace_entry(ip); | ||
257 | |||
258 | /* | ||
259 | * If there is no attribute fork no ACL exists on this inode and | ||
260 | * we can skip the whole exercise. | ||
261 | */ | ||
262 | if (!XFS_IFORK_Q(ip)) | ||
263 | return -EAGAIN; | ||
264 | |||
265 | acl = xfs_get_acl(inode, ACL_TYPE_ACCESS); | ||
266 | if (IS_ERR(acl)) | ||
267 | return PTR_ERR(acl); | ||
268 | if (acl) { | ||
269 | error = posix_acl_permission(inode, acl, mask); | ||
270 | posix_acl_release(acl); | ||
271 | } | ||
272 | |||
273 | return error; | ||
274 | } | ||
275 | |||
276 | static int | ||
277 | xfs_set_mode(struct inode *inode, mode_t mode) | ||
278 | { | ||
279 | int error = 0; | ||
280 | |||
281 | if (mode != inode->i_mode) { | ||
282 | struct iattr iattr; | ||
283 | |||
284 | iattr.ia_valid = ATTR_MODE; | ||
285 | iattr.ia_mode = mode; | ||
286 | |||
287 | error = -xfs_setattr(XFS_I(inode), &iattr, XFS_ATTR_NOACL); | ||
288 | } | ||
289 | |||
290 | return error; | ||
291 | } | ||
292 | |||
293 | static int | ||
294 | xfs_acl_exists(struct inode *inode, char *name) | ||
295 | { | ||
296 | int len = sizeof(struct xfs_acl); | ||
297 | |||
298 | return (xfs_attr_get(XFS_I(inode), name, NULL, &len, | ||
299 | ATTR_ROOT|ATTR_KERNOVAL) == 0); | ||
300 | } | ||
301 | |||
302 | int | ||
303 | posix_acl_access_exists(struct inode *inode) | ||
304 | { | ||
305 | return xfs_acl_exists(inode, SGI_ACL_FILE); | ||
306 | } | ||
307 | |||
308 | int | ||
309 | posix_acl_default_exists(struct inode *inode) | ||
310 | { | ||
311 | if (!S_ISDIR(inode->i_mode)) | ||
312 | return 0; | ||
313 | return xfs_acl_exists(inode, SGI_ACL_DEFAULT); | ||
314 | } | ||
315 | |||
316 | /* | ||
317 | * No need for i_mutex because the inode is not yet exposed to the VFS. | ||
318 | */ | ||
319 | int | ||
320 | xfs_inherit_acl(struct inode *inode, struct posix_acl *default_acl) | ||
321 | { | ||
322 | struct posix_acl *clone; | ||
323 | mode_t mode; | ||
324 | int error = 0, inherit = 0; | ||
325 | |||
326 | if (S_ISDIR(inode->i_mode)) { | ||
327 | error = xfs_set_acl(inode, ACL_TYPE_DEFAULT, default_acl); | ||
328 | if (error) | ||
329 | return error; | ||
330 | } | ||
331 | |||
332 | clone = posix_acl_clone(default_acl, GFP_KERNEL); | ||
333 | if (!clone) | ||
334 | return -ENOMEM; | ||
335 | |||
336 | mode = inode->i_mode; | ||
337 | error = posix_acl_create_masq(clone, &mode); | ||
338 | if (error < 0) | ||
339 | goto out_release_clone; | ||
340 | |||
341 | /* | ||
342 | * If posix_acl_create_masq returns a positive value we need to | ||
343 | * inherit a permission that can't be represented using the Unix | ||
344 | * mode bits and we actually need to set an ACL. | ||
345 | */ | ||
346 | if (error > 0) | ||
347 | inherit = 1; | ||
348 | |||
349 | error = xfs_set_mode(inode, mode); | ||
350 | if (error) | ||
351 | goto out_release_clone; | ||
352 | |||
353 | if (inherit) | ||
354 | error = xfs_set_acl(inode, ACL_TYPE_ACCESS, clone); | ||
355 | |||
356 | out_release_clone: | ||
357 | posix_acl_release(clone); | ||
358 | return error; | ||
359 | } | ||
360 | |||
361 | int | ||
362 | xfs_acl_chmod(struct inode *inode) | ||
363 | { | ||
364 | struct posix_acl *acl, *clone; | ||
365 | int error; | ||
366 | |||
367 | if (S_ISLNK(inode->i_mode)) | ||
368 | return -EOPNOTSUPP; | ||
369 | |||
370 | acl = xfs_get_acl(inode, ACL_TYPE_ACCESS); | ||
371 | if (IS_ERR(acl) || !acl) | ||
372 | return PTR_ERR(acl); | ||
373 | |||
374 | clone = posix_acl_clone(acl, GFP_KERNEL); | ||
375 | posix_acl_release(acl); | ||
376 | if (!clone) | ||
377 | return -ENOMEM; | ||
378 | |||
379 | error = posix_acl_chmod_masq(clone, inode->i_mode); | ||
380 | if (!error) | ||
381 | error = xfs_set_acl(inode, ACL_TYPE_ACCESS, clone); | ||
382 | |||
383 | posix_acl_release(clone); | ||
384 | return error; | ||
385 | } | ||
386 | |||
387 | void | ||
388 | xfs_inode_init_acls(struct xfs_inode *ip) | ||
389 | { | ||
390 | /* | ||
391 | * No need for locking, inode is not live yet. | ||
392 | */ | ||
393 | ip->i_acl = XFS_ACL_NOT_CACHED; | ||
394 | ip->i_default_acl = XFS_ACL_NOT_CACHED; | ||
395 | } | ||
396 | |||
397 | void | ||
398 | xfs_inode_clear_acls(struct xfs_inode *ip) | ||
399 | { | ||
400 | /* | ||
401 | * No need for locking here, the inode is not live anymore | ||
402 | * and just about to be freed. | ||
403 | */ | ||
404 | if (ip->i_acl != XFS_ACL_NOT_CACHED) | ||
405 | posix_acl_release(ip->i_acl); | ||
406 | if (ip->i_default_acl != XFS_ACL_NOT_CACHED) | ||
407 | posix_acl_release(ip->i_default_acl); | ||
408 | } | ||
409 | |||
410 | |||
411 | /* | ||
412 | * System xattr handlers. | ||
413 | * | ||
414 | * Currently Posix ACLs are the only system namespace extended attribute | ||
415 | * handlers supported by XFS, so we just implement the handlers here. | ||
416 | * If we ever support other system extended attributes this will need | ||
417 | * some refactoring. | ||
418 | */ | ||
419 | |||
420 | static int | ||
421 | xfs_decode_acl(const char *name) | ||
422 | { | ||
423 | if (strcmp(name, "posix_acl_access") == 0) | ||
424 | return ACL_TYPE_ACCESS; | ||
425 | else if (strcmp(name, "posix_acl_default") == 0) | ||
426 | return ACL_TYPE_DEFAULT; | ||
427 | return -EINVAL; | ||
428 | } | ||
429 | |||
430 | static int | ||
431 | xfs_xattr_system_get(struct inode *inode, const char *name, | ||
432 | void *value, size_t size) | ||
433 | { | ||
434 | struct posix_acl *acl; | ||
435 | int type, error; | ||
436 | |||
437 | type = xfs_decode_acl(name); | ||
438 | if (type < 0) | ||
439 | return type; | ||
440 | |||
441 | acl = xfs_get_acl(inode, type); | ||
442 | if (IS_ERR(acl)) | ||
443 | return PTR_ERR(acl); | ||
444 | if (acl == NULL) | ||
445 | return -ENODATA; | ||
446 | |||
447 | error = posix_acl_to_xattr(acl, value, size); | ||
448 | posix_acl_release(acl); | ||
449 | |||
450 | return error; | ||
451 | } | ||
452 | |||
453 | static int | ||
454 | xfs_xattr_system_set(struct inode *inode, const char *name, | ||
455 | const void *value, size_t size, int flags) | ||
456 | { | ||
457 | struct posix_acl *acl = NULL; | ||
458 | int error = 0, type; | ||
459 | |||
460 | type = xfs_decode_acl(name); | ||
461 | if (type < 0) | ||
462 | return type; | ||
463 | if (flags & XATTR_CREATE) | ||
464 | return -EINVAL; | ||
465 | if (type == ACL_TYPE_DEFAULT && !S_ISDIR(inode->i_mode)) | ||
466 | return value ? -EACCES : 0; | ||
467 | if ((current_fsuid() != inode->i_uid) && !capable(CAP_FOWNER)) | ||
468 | return -EPERM; | ||
469 | |||
470 | if (!value) | ||
471 | goto set_acl; | ||
472 | |||
473 | acl = posix_acl_from_xattr(value, size); | ||
474 | if (!acl) { | ||
475 | /* | ||
476 | * acl_set_file(3) may request that we set default ACLs with | ||
477 | * zero length -- defend (gracefully) against that here. | ||
478 | */ | ||
479 | goto out; | ||
480 | } | ||
481 | if (IS_ERR(acl)) { | ||
482 | error = PTR_ERR(acl); | ||
483 | goto out; | ||
484 | } | ||
485 | |||
486 | error = posix_acl_valid(acl); | ||
487 | if (error) | ||
488 | goto out_release; | ||
489 | |||
490 | error = -EINVAL; | ||
491 | if (acl->a_count > XFS_ACL_MAX_ENTRIES) | ||
492 | goto out_release; | ||
493 | |||
494 | if (type == ACL_TYPE_ACCESS) { | ||
495 | mode_t mode = inode->i_mode; | ||
496 | error = posix_acl_equiv_mode(acl, &mode); | ||
497 | |||
498 | if (error <= 0) { | ||
499 | posix_acl_release(acl); | ||
500 | acl = NULL; | ||
501 | |||
502 | if (error < 0) | ||
503 | return error; | ||
504 | } | ||
505 | |||
506 | error = xfs_set_mode(inode, mode); | ||
507 | if (error) | ||
508 | goto out_release; | ||
509 | } | ||
510 | |||
511 | set_acl: | ||
512 | error = xfs_set_acl(inode, type, acl); | ||
513 | out_release: | ||
514 | posix_acl_release(acl); | ||
515 | out: | ||
516 | return error; | ||
517 | } | ||
518 | |||
519 | struct xattr_handler xfs_xattr_system_handler = { | ||
520 | .prefix = XATTR_SYSTEM_PREFIX, | ||
521 | .get = xfs_xattr_system_get, | ||
522 | .set = xfs_xattr_system_set, | ||
523 | }; | ||
diff --git a/fs/xfs/linux-2.6/xfs_ioctl.c b/fs/xfs/linux-2.6/xfs_ioctl.c index 34eaab608e6e..5bb523d7f37e 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl.c +++ b/fs/xfs/linux-2.6/xfs_ioctl.c | |||
@@ -41,7 +41,6 @@ | |||
41 | #include "xfs_itable.h" | 41 | #include "xfs_itable.h" |
42 | #include "xfs_error.h" | 42 | #include "xfs_error.h" |
43 | #include "xfs_rw.h" | 43 | #include "xfs_rw.h" |
44 | #include "xfs_acl.h" | ||
45 | #include "xfs_attr.h" | 44 | #include "xfs_attr.h" |
46 | #include "xfs_bmap.h" | 45 | #include "xfs_bmap.h" |
47 | #include "xfs_buf_item.h" | 46 | #include "xfs_buf_item.h" |
@@ -899,7 +898,8 @@ xfs_ioctl_setattr( | |||
899 | struct xfs_mount *mp = ip->i_mount; | 898 | struct xfs_mount *mp = ip->i_mount; |
900 | struct xfs_trans *tp; | 899 | struct xfs_trans *tp; |
901 | unsigned int lock_flags = 0; | 900 | unsigned int lock_flags = 0; |
902 | struct xfs_dquot *udqp = NULL, *gdqp = NULL; | 901 | struct xfs_dquot *udqp = NULL; |
902 | struct xfs_dquot *gdqp = NULL; | ||
903 | struct xfs_dquot *olddquot = NULL; | 903 | struct xfs_dquot *olddquot = NULL; |
904 | int code; | 904 | int code; |
905 | 905 | ||
@@ -919,7 +919,7 @@ xfs_ioctl_setattr( | |||
919 | * because the i_*dquot fields will get updated anyway. | 919 | * because the i_*dquot fields will get updated anyway. |
920 | */ | 920 | */ |
921 | if (XFS_IS_QUOTA_ON(mp) && (mask & FSX_PROJID)) { | 921 | if (XFS_IS_QUOTA_ON(mp) && (mask & FSX_PROJID)) { |
922 | code = XFS_QM_DQVOPALLOC(mp, ip, ip->i_d.di_uid, | 922 | code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid, |
923 | ip->i_d.di_gid, fa->fsx_projid, | 923 | ip->i_d.di_gid, fa->fsx_projid, |
924 | XFS_QMOPT_PQUOTA, &udqp, &gdqp); | 924 | XFS_QMOPT_PQUOTA, &udqp, &gdqp); |
925 | if (code) | 925 | if (code) |
@@ -954,10 +954,11 @@ xfs_ioctl_setattr( | |||
954 | * Do a quota reservation only if projid is actually going to change. | 954 | * Do a quota reservation only if projid is actually going to change. |
955 | */ | 955 | */ |
956 | if (mask & FSX_PROJID) { | 956 | if (mask & FSX_PROJID) { |
957 | if (XFS_IS_PQUOTA_ON(mp) && | 957 | if (XFS_IS_QUOTA_RUNNING(mp) && |
958 | XFS_IS_PQUOTA_ON(mp) && | ||
958 | ip->i_d.di_projid != fa->fsx_projid) { | 959 | ip->i_d.di_projid != fa->fsx_projid) { |
959 | ASSERT(tp); | 960 | ASSERT(tp); |
960 | code = XFS_QM_DQVOPCHOWNRESV(mp, tp, ip, udqp, gdqp, | 961 | code = xfs_qm_vop_chown_reserve(tp, ip, udqp, gdqp, |
961 | capable(CAP_FOWNER) ? | 962 | capable(CAP_FOWNER) ? |
962 | XFS_QMOPT_FORCE_RES : 0); | 963 | XFS_QMOPT_FORCE_RES : 0); |
963 | if (code) /* out of quota */ | 964 | if (code) /* out of quota */ |
@@ -1059,8 +1060,8 @@ xfs_ioctl_setattr( | |||
1059 | * in the transaction. | 1060 | * in the transaction. |
1060 | */ | 1061 | */ |
1061 | if (ip->i_d.di_projid != fa->fsx_projid) { | 1062 | if (ip->i_d.di_projid != fa->fsx_projid) { |
1062 | if (XFS_IS_PQUOTA_ON(mp)) { | 1063 | if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) { |
1063 | olddquot = XFS_QM_DQVOPCHOWN(mp, tp, ip, | 1064 | olddquot = xfs_qm_vop_chown(tp, ip, |
1064 | &ip->i_gdquot, gdqp); | 1065 | &ip->i_gdquot, gdqp); |
1065 | } | 1066 | } |
1066 | ip->i_d.di_projid = fa->fsx_projid; | 1067 | ip->i_d.di_projid = fa->fsx_projid; |
@@ -1106,9 +1107,9 @@ xfs_ioctl_setattr( | |||
1106 | /* | 1107 | /* |
1107 | * Release any dquot(s) the inode had kept before chown. | 1108 | * Release any dquot(s) the inode had kept before chown. |
1108 | */ | 1109 | */ |
1109 | XFS_QM_DQRELE(mp, olddquot); | 1110 | xfs_qm_dqrele(olddquot); |
1110 | XFS_QM_DQRELE(mp, udqp); | 1111 | xfs_qm_dqrele(udqp); |
1111 | XFS_QM_DQRELE(mp, gdqp); | 1112 | xfs_qm_dqrele(gdqp); |
1112 | 1113 | ||
1113 | if (code) | 1114 | if (code) |
1114 | return code; | 1115 | return code; |
@@ -1122,8 +1123,8 @@ xfs_ioctl_setattr( | |||
1122 | return 0; | 1123 | return 0; |
1123 | 1124 | ||
1124 | error_return: | 1125 | error_return: |
1125 | XFS_QM_DQRELE(mp, udqp); | 1126 | xfs_qm_dqrele(udqp); |
1126 | XFS_QM_DQRELE(mp, gdqp); | 1127 | xfs_qm_dqrele(gdqp); |
1127 | xfs_trans_cancel(tp, 0); | 1128 | xfs_trans_cancel(tp, 0); |
1128 | if (lock_flags) | 1129 | if (lock_flags) |
1129 | xfs_iunlock(ip, lock_flags); | 1130 | xfs_iunlock(ip, lock_flags); |
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c index 6075382336d7..58973bb46038 100644 --- a/fs/xfs/linux-2.6/xfs_iops.c +++ b/fs/xfs/linux-2.6/xfs_iops.c | |||
@@ -17,6 +17,7 @@ | |||
17 | */ | 17 | */ |
18 | #include "xfs.h" | 18 | #include "xfs.h" |
19 | #include "xfs_fs.h" | 19 | #include "xfs_fs.h" |
20 | #include "xfs_acl.h" | ||
20 | #include "xfs_bit.h" | 21 | #include "xfs_bit.h" |
21 | #include "xfs_log.h" | 22 | #include "xfs_log.h" |
22 | #include "xfs_inum.h" | 23 | #include "xfs_inum.h" |
@@ -51,6 +52,7 @@ | |||
51 | #include <linux/capability.h> | 52 | #include <linux/capability.h> |
52 | #include <linux/xattr.h> | 53 | #include <linux/xattr.h> |
53 | #include <linux/namei.h> | 54 | #include <linux/namei.h> |
55 | #include <linux/posix_acl.h> | ||
54 | #include <linux/security.h> | 56 | #include <linux/security.h> |
55 | #include <linux/falloc.h> | 57 | #include <linux/falloc.h> |
56 | #include <linux/fiemap.h> | 58 | #include <linux/fiemap.h> |
@@ -202,9 +204,8 @@ xfs_vn_mknod( | |||
202 | { | 204 | { |
203 | struct inode *inode; | 205 | struct inode *inode; |
204 | struct xfs_inode *ip = NULL; | 206 | struct xfs_inode *ip = NULL; |
205 | xfs_acl_t *default_acl = NULL; | 207 | struct posix_acl *default_acl = NULL; |
206 | struct xfs_name name; | 208 | struct xfs_name name; |
207 | int (*test_default_acl)(struct inode *) = _ACL_DEFAULT_EXISTS; | ||
208 | int error; | 209 | int error; |
209 | 210 | ||
210 | /* | 211 | /* |
@@ -219,18 +220,14 @@ xfs_vn_mknod( | |||
219 | rdev = 0; | 220 | rdev = 0; |
220 | } | 221 | } |
221 | 222 | ||
222 | if (test_default_acl && test_default_acl(dir)) { | 223 | if (IS_POSIXACL(dir)) { |
223 | if (!_ACL_ALLOC(default_acl)) { | 224 | default_acl = xfs_get_acl(dir, ACL_TYPE_DEFAULT); |
224 | return -ENOMEM; | 225 | if (IS_ERR(default_acl)) |
225 | } | 226 | return -PTR_ERR(default_acl); |
226 | if (!_ACL_GET_DEFAULT(dir, default_acl)) { | ||
227 | _ACL_FREE(default_acl); | ||
228 | default_acl = NULL; | ||
229 | } | ||
230 | } | ||
231 | 227 | ||
232 | if (IS_POSIXACL(dir) && !default_acl) | 228 | if (!default_acl) |
233 | mode &= ~current_umask(); | 229 | mode &= ~current_umask(); |
230 | } | ||
234 | 231 | ||
235 | xfs_dentry_to_name(&name, dentry); | 232 | xfs_dentry_to_name(&name, dentry); |
236 | error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip, NULL); | 233 | error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip, NULL); |
@@ -244,10 +241,10 @@ xfs_vn_mknod( | |||
244 | goto out_cleanup_inode; | 241 | goto out_cleanup_inode; |
245 | 242 | ||
246 | if (default_acl) { | 243 | if (default_acl) { |
247 | error = _ACL_INHERIT(inode, mode, default_acl); | 244 | error = -xfs_inherit_acl(inode, default_acl); |
248 | if (unlikely(error)) | 245 | if (unlikely(error)) |
249 | goto out_cleanup_inode; | 246 | goto out_cleanup_inode; |
250 | _ACL_FREE(default_acl); | 247 | posix_acl_release(default_acl); |
251 | } | 248 | } |
252 | 249 | ||
253 | 250 | ||
@@ -257,8 +254,7 @@ xfs_vn_mknod( | |||
257 | out_cleanup_inode: | 254 | out_cleanup_inode: |
258 | xfs_cleanup_inode(dir, inode, dentry); | 255 | xfs_cleanup_inode(dir, inode, dentry); |
259 | out_free_acl: | 256 | out_free_acl: |
260 | if (default_acl) | 257 | posix_acl_release(default_acl); |
261 | _ACL_FREE(default_acl); | ||
262 | return -error; | 258 | return -error; |
263 | } | 259 | } |
264 | 260 | ||
@@ -488,26 +484,6 @@ xfs_vn_put_link( | |||
488 | kfree(s); | 484 | kfree(s); |
489 | } | 485 | } |
490 | 486 | ||
491 | #ifdef CONFIG_XFS_POSIX_ACL | ||
492 | STATIC int | ||
493 | xfs_check_acl( | ||
494 | struct inode *inode, | ||
495 | int mask) | ||
496 | { | ||
497 | struct xfs_inode *ip = XFS_I(inode); | ||
498 | int error; | ||
499 | |||
500 | xfs_itrace_entry(ip); | ||
501 | |||
502 | if (XFS_IFORK_Q(ip)) { | ||
503 | error = xfs_acl_iaccess(ip, mask, NULL); | ||
504 | if (error != -1) | ||
505 | return -error; | ||
506 | } | ||
507 | |||
508 | return -EAGAIN; | ||
509 | } | ||
510 | |||
511 | STATIC int | 487 | STATIC int |
512 | xfs_vn_permission( | 488 | xfs_vn_permission( |
513 | struct inode *inode, | 489 | struct inode *inode, |
@@ -515,9 +491,6 @@ xfs_vn_permission( | |||
515 | { | 491 | { |
516 | return generic_permission(inode, mask, xfs_check_acl); | 492 | return generic_permission(inode, mask, xfs_check_acl); |
517 | } | 493 | } |
518 | #else | ||
519 | #define xfs_vn_permission NULL | ||
520 | #endif | ||
521 | 494 | ||
522 | STATIC int | 495 | STATIC int |
523 | xfs_vn_getattr( | 496 | xfs_vn_getattr( |
diff --git a/fs/xfs/linux-2.6/xfs_lrw.c b/fs/xfs/linux-2.6/xfs_lrw.c index 9142192ccbe6..7078974a6eee 100644 --- a/fs/xfs/linux-2.6/xfs_lrw.c +++ b/fs/xfs/linux-2.6/xfs_lrw.c | |||
@@ -42,7 +42,6 @@ | |||
42 | #include "xfs_error.h" | 42 | #include "xfs_error.h" |
43 | #include "xfs_itable.h" | 43 | #include "xfs_itable.h" |
44 | #include "xfs_rw.h" | 44 | #include "xfs_rw.h" |
45 | #include "xfs_acl.h" | ||
46 | #include "xfs_attr.h" | 45 | #include "xfs_attr.h" |
47 | #include "xfs_inode_item.h" | 46 | #include "xfs_inode_item.h" |
48 | #include "xfs_buf_item.h" | 47 | #include "xfs_buf_item.h" |
diff --git a/fs/xfs/linux-2.6/xfs_quotaops.c b/fs/xfs/linux-2.6/xfs_quotaops.c index 94d9a633d3d9..cb6e2cca214f 100644 --- a/fs/xfs/linux-2.6/xfs_quotaops.c +++ b/fs/xfs/linux-2.6/xfs_quotaops.c | |||
@@ -50,9 +50,11 @@ xfs_fs_quota_sync( | |||
50 | { | 50 | { |
51 | struct xfs_mount *mp = XFS_M(sb); | 51 | struct xfs_mount *mp = XFS_M(sb); |
52 | 52 | ||
53 | if (sb->s_flags & MS_RDONLY) | ||
54 | return -EROFS; | ||
53 | if (!XFS_IS_QUOTA_RUNNING(mp)) | 55 | if (!XFS_IS_QUOTA_RUNNING(mp)) |
54 | return -ENOSYS; | 56 | return -ENOSYS; |
55 | return -xfs_sync_inodes(mp, SYNC_DELWRI); | 57 | return -xfs_sync_data(mp, 0); |
56 | } | 58 | } |
57 | 59 | ||
58 | STATIC int | 60 | STATIC int |
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index 08d6bd9a3947..2e09efbca8db 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c | |||
@@ -43,7 +43,6 @@ | |||
43 | #include "xfs_itable.h" | 43 | #include "xfs_itable.h" |
44 | #include "xfs_fsops.h" | 44 | #include "xfs_fsops.h" |
45 | #include "xfs_rw.h" | 45 | #include "xfs_rw.h" |
46 | #include "xfs_acl.h" | ||
47 | #include "xfs_attr.h" | 46 | #include "xfs_attr.h" |
48 | #include "xfs_buf_item.h" | 47 | #include "xfs_buf_item.h" |
49 | #include "xfs_utils.h" | 48 | #include "xfs_utils.h" |
@@ -405,6 +404,14 @@ xfs_parseargs( | |||
405 | return EINVAL; | 404 | return EINVAL; |
406 | } | 405 | } |
407 | 406 | ||
407 | #ifndef CONFIG_XFS_QUOTA | ||
408 | if (XFS_IS_QUOTA_RUNNING(mp)) { | ||
409 | cmn_err(CE_WARN, | ||
410 | "XFS: quota support not available in this kernel."); | ||
411 | return EINVAL; | ||
412 | } | ||
413 | #endif | ||
414 | |||
408 | if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) && | 415 | if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) && |
409 | (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE))) { | 416 | (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE))) { |
410 | cmn_err(CE_WARN, | 417 | cmn_err(CE_WARN, |
@@ -1063,7 +1070,18 @@ xfs_fs_put_super( | |||
1063 | int unmount_event_flags = 0; | 1070 | int unmount_event_flags = 0; |
1064 | 1071 | ||
1065 | xfs_syncd_stop(mp); | 1072 | xfs_syncd_stop(mp); |
1066 | xfs_sync_inodes(mp, SYNC_ATTR|SYNC_DELWRI); | 1073 | |
1074 | if (!(sb->s_flags & MS_RDONLY)) { | ||
1075 | /* | ||
1076 | * XXX(hch): this should be SYNC_WAIT. | ||
1077 | * | ||
1078 | * Or more likely not needed at all because the VFS is already | ||
1079 | * calling ->sync_fs after shutting down all filestem | ||
1080 | * operations and just before calling ->put_super. | ||
1081 | */ | ||
1082 | xfs_sync_data(mp, 0); | ||
1083 | xfs_sync_attr(mp, 0); | ||
1084 | } | ||
1067 | 1085 | ||
1068 | #ifdef HAVE_DMAPI | 1086 | #ifdef HAVE_DMAPI |
1069 | if (mp->m_flags & XFS_MOUNT_DMAPI) { | 1087 | if (mp->m_flags & XFS_MOUNT_DMAPI) { |
@@ -1098,7 +1116,6 @@ xfs_fs_put_super( | |||
1098 | xfs_freesb(mp); | 1116 | xfs_freesb(mp); |
1099 | xfs_icsb_destroy_counters(mp); | 1117 | xfs_icsb_destroy_counters(mp); |
1100 | xfs_close_devices(mp); | 1118 | xfs_close_devices(mp); |
1101 | xfs_qmops_put(mp); | ||
1102 | xfs_dmops_put(mp); | 1119 | xfs_dmops_put(mp); |
1103 | xfs_free_fsname(mp); | 1120 | xfs_free_fsname(mp); |
1104 | kfree(mp); | 1121 | kfree(mp); |
@@ -1158,6 +1175,7 @@ xfs_fs_statfs( | |||
1158 | { | 1175 | { |
1159 | struct xfs_mount *mp = XFS_M(dentry->d_sb); | 1176 | struct xfs_mount *mp = XFS_M(dentry->d_sb); |
1160 | xfs_sb_t *sbp = &mp->m_sb; | 1177 | xfs_sb_t *sbp = &mp->m_sb; |
1178 | struct xfs_inode *ip = XFS_I(dentry->d_inode); | ||
1161 | __uint64_t fakeinos, id; | 1179 | __uint64_t fakeinos, id; |
1162 | xfs_extlen_t lsize; | 1180 | xfs_extlen_t lsize; |
1163 | 1181 | ||
@@ -1186,7 +1204,10 @@ xfs_fs_statfs( | |||
1186 | statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree); | 1204 | statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree); |
1187 | spin_unlock(&mp->m_sb_lock); | 1205 | spin_unlock(&mp->m_sb_lock); |
1188 | 1206 | ||
1189 | XFS_QM_DQSTATVFS(XFS_I(dentry->d_inode), statp); | 1207 | if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) || |
1208 | ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))) == | ||
1209 | (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD)) | ||
1210 | xfs_qm_statvfs(ip, statp); | ||
1190 | return 0; | 1211 | return 0; |
1191 | } | 1212 | } |
1192 | 1213 | ||
@@ -1394,16 +1415,13 @@ xfs_fs_fill_super( | |||
1394 | error = xfs_dmops_get(mp); | 1415 | error = xfs_dmops_get(mp); |
1395 | if (error) | 1416 | if (error) |
1396 | goto out_free_fsname; | 1417 | goto out_free_fsname; |
1397 | error = xfs_qmops_get(mp); | ||
1398 | if (error) | ||
1399 | goto out_put_dmops; | ||
1400 | 1418 | ||
1401 | if (silent) | 1419 | if (silent) |
1402 | flags |= XFS_MFSI_QUIET; | 1420 | flags |= XFS_MFSI_QUIET; |
1403 | 1421 | ||
1404 | error = xfs_open_devices(mp); | 1422 | error = xfs_open_devices(mp); |
1405 | if (error) | 1423 | if (error) |
1406 | goto out_put_qmops; | 1424 | goto out_put_dmops; |
1407 | 1425 | ||
1408 | if (xfs_icsb_init_counters(mp)) | 1426 | if (xfs_icsb_init_counters(mp)) |
1409 | mp->m_flags |= XFS_MOUNT_NO_PERCPU_SB; | 1427 | mp->m_flags |= XFS_MOUNT_NO_PERCPU_SB; |
@@ -1471,8 +1489,6 @@ xfs_fs_fill_super( | |||
1471 | out_destroy_counters: | 1489 | out_destroy_counters: |
1472 | xfs_icsb_destroy_counters(mp); | 1490 | xfs_icsb_destroy_counters(mp); |
1473 | xfs_close_devices(mp); | 1491 | xfs_close_devices(mp); |
1474 | out_put_qmops: | ||
1475 | xfs_qmops_put(mp); | ||
1476 | out_put_dmops: | 1492 | out_put_dmops: |
1477 | xfs_dmops_put(mp); | 1493 | xfs_dmops_put(mp); |
1478 | out_free_fsname: | 1494 | out_free_fsname: |
@@ -1706,18 +1722,8 @@ xfs_init_zones(void) | |||
1706 | if (!xfs_ili_zone) | 1722 | if (!xfs_ili_zone) |
1707 | goto out_destroy_inode_zone; | 1723 | goto out_destroy_inode_zone; |
1708 | 1724 | ||
1709 | #ifdef CONFIG_XFS_POSIX_ACL | ||
1710 | xfs_acl_zone = kmem_zone_init(sizeof(xfs_acl_t), "xfs_acl"); | ||
1711 | if (!xfs_acl_zone) | ||
1712 | goto out_destroy_ili_zone; | ||
1713 | #endif | ||
1714 | |||
1715 | return 0; | 1725 | return 0; |
1716 | 1726 | ||
1717 | #ifdef CONFIG_XFS_POSIX_ACL | ||
1718 | out_destroy_ili_zone: | ||
1719 | #endif | ||
1720 | kmem_zone_destroy(xfs_ili_zone); | ||
1721 | out_destroy_inode_zone: | 1727 | out_destroy_inode_zone: |
1722 | kmem_zone_destroy(xfs_inode_zone); | 1728 | kmem_zone_destroy(xfs_inode_zone); |
1723 | out_destroy_efi_zone: | 1729 | out_destroy_efi_zone: |
@@ -1751,9 +1757,6 @@ xfs_init_zones(void) | |||
1751 | STATIC void | 1757 | STATIC void |
1752 | xfs_destroy_zones(void) | 1758 | xfs_destroy_zones(void) |
1753 | { | 1759 | { |
1754 | #ifdef CONFIG_XFS_POSIX_ACL | ||
1755 | kmem_zone_destroy(xfs_acl_zone); | ||
1756 | #endif | ||
1757 | kmem_zone_destroy(xfs_ili_zone); | 1760 | kmem_zone_destroy(xfs_ili_zone); |
1758 | kmem_zone_destroy(xfs_inode_zone); | 1761 | kmem_zone_destroy(xfs_inode_zone); |
1759 | kmem_zone_destroy(xfs_efi_zone); | 1762 | kmem_zone_destroy(xfs_efi_zone); |
diff --git a/fs/xfs/linux-2.6/xfs_sync.c b/fs/xfs/linux-2.6/xfs_sync.c index f7ba76633c29..b619d6b8ca43 100644 --- a/fs/xfs/linux-2.6/xfs_sync.c +++ b/fs/xfs/linux-2.6/xfs_sync.c | |||
@@ -43,166 +43,267 @@ | |||
43 | #include "xfs_buf_item.h" | 43 | #include "xfs_buf_item.h" |
44 | #include "xfs_inode_item.h" | 44 | #include "xfs_inode_item.h" |
45 | #include "xfs_rw.h" | 45 | #include "xfs_rw.h" |
46 | #include "xfs_quota.h" | ||
46 | 47 | ||
47 | #include <linux/kthread.h> | 48 | #include <linux/kthread.h> |
48 | #include <linux/freezer.h> | 49 | #include <linux/freezer.h> |
49 | 50 | ||
50 | /* | ||
51 | * Sync all the inodes in the given AG according to the | ||
52 | * direction given by the flags. | ||
53 | */ | ||
54 | STATIC int | ||
55 | xfs_sync_inodes_ag( | ||
56 | xfs_mount_t *mp, | ||
57 | int ag, | ||
58 | int flags) | ||
59 | { | ||
60 | xfs_perag_t *pag = &mp->m_perag[ag]; | ||
61 | int nr_found; | ||
62 | uint32_t first_index = 0; | ||
63 | int error = 0; | ||
64 | int last_error = 0; | ||
65 | 51 | ||
66 | do { | 52 | STATIC xfs_inode_t * |
67 | struct inode *inode; | 53 | xfs_inode_ag_lookup( |
68 | xfs_inode_t *ip = NULL; | 54 | struct xfs_mount *mp, |
69 | int lock_flags = XFS_ILOCK_SHARED; | 55 | struct xfs_perag *pag, |
56 | uint32_t *first_index, | ||
57 | int tag) | ||
58 | { | ||
59 | int nr_found; | ||
60 | struct xfs_inode *ip; | ||
70 | 61 | ||
71 | /* | 62 | /* |
72 | * use a gang lookup to find the next inode in the tree | 63 | * use a gang lookup to find the next inode in the tree |
73 | * as the tree is sparse and a gang lookup walks to find | 64 | * as the tree is sparse and a gang lookup walks to find |
74 | * the number of objects requested. | 65 | * the number of objects requested. |
75 | */ | 66 | */ |
76 | read_lock(&pag->pag_ici_lock); | 67 | read_lock(&pag->pag_ici_lock); |
68 | if (tag == XFS_ICI_NO_TAG) { | ||
77 | nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, | 69 | nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, |
78 | (void**)&ip, first_index, 1); | 70 | (void **)&ip, *first_index, 1); |
71 | } else { | ||
72 | nr_found = radix_tree_gang_lookup_tag(&pag->pag_ici_root, | ||
73 | (void **)&ip, *first_index, 1, tag); | ||
74 | } | ||
75 | if (!nr_found) | ||
76 | goto unlock; | ||
79 | 77 | ||
80 | if (!nr_found) { | 78 | /* |
81 | read_unlock(&pag->pag_ici_lock); | 79 | * Update the index for the next lookup. Catch overflows |
82 | break; | 80 | * into the next AG range which can occur if we have inodes |
83 | } | 81 | * in the last block of the AG and we are currently |
82 | * pointing to the last inode. | ||
83 | */ | ||
84 | *first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1); | ||
85 | if (*first_index < XFS_INO_TO_AGINO(mp, ip->i_ino)) | ||
86 | goto unlock; | ||
84 | 87 | ||
85 | /* | 88 | return ip; |
86 | * Update the index for the next lookup. Catch overflows | ||
87 | * into the next AG range which can occur if we have inodes | ||
88 | * in the last block of the AG and we are currently | ||
89 | * pointing to the last inode. | ||
90 | */ | ||
91 | first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1); | ||
92 | if (first_index < XFS_INO_TO_AGINO(mp, ip->i_ino)) { | ||
93 | read_unlock(&pag->pag_ici_lock); | ||
94 | break; | ||
95 | } | ||
96 | 89 | ||
97 | /* nothing to sync during shutdown */ | 90 | unlock: |
98 | if (XFS_FORCED_SHUTDOWN(mp)) { | 91 | read_unlock(&pag->pag_ici_lock); |
99 | read_unlock(&pag->pag_ici_lock); | 92 | return NULL; |
100 | return 0; | 93 | } |
101 | } | ||
102 | 94 | ||
103 | /* | 95 | STATIC int |
104 | * If we can't get a reference on the inode, it must be | 96 | xfs_inode_ag_walk( |
105 | * in reclaim. Leave it for the reclaim code to flush. | 97 | struct xfs_mount *mp, |
106 | */ | 98 | xfs_agnumber_t ag, |
107 | inode = VFS_I(ip); | 99 | int (*execute)(struct xfs_inode *ip, |
108 | if (!igrab(inode)) { | 100 | struct xfs_perag *pag, int flags), |
109 | read_unlock(&pag->pag_ici_lock); | 101 | int flags, |
110 | continue; | 102 | int tag) |
111 | } | 103 | { |
112 | read_unlock(&pag->pag_ici_lock); | 104 | struct xfs_perag *pag = &mp->m_perag[ag]; |
105 | uint32_t first_index; | ||
106 | int last_error = 0; | ||
107 | int skipped; | ||
113 | 108 | ||
114 | /* avoid new or bad inodes */ | 109 | restart: |
115 | if (is_bad_inode(inode) || | 110 | skipped = 0; |
116 | xfs_iflags_test(ip, XFS_INEW)) { | 111 | first_index = 0; |
117 | IRELE(ip); | 112 | do { |
118 | continue; | 113 | int error = 0; |
119 | } | 114 | xfs_inode_t *ip; |
120 | 115 | ||
121 | /* | 116 | ip = xfs_inode_ag_lookup(mp, pag, &first_index, tag); |
122 | * If we have to flush data or wait for I/O completion | 117 | if (!ip) |
123 | * we need to hold the iolock. | 118 | break; |
124 | */ | ||
125 | if (flags & SYNC_DELWRI) { | ||
126 | if (VN_DIRTY(inode)) { | ||
127 | if (flags & SYNC_TRYLOCK) { | ||
128 | if (xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED)) | ||
129 | lock_flags |= XFS_IOLOCK_SHARED; | ||
130 | } else { | ||
131 | xfs_ilock(ip, XFS_IOLOCK_SHARED); | ||
132 | lock_flags |= XFS_IOLOCK_SHARED; | ||
133 | } | ||
134 | if (lock_flags & XFS_IOLOCK_SHARED) { | ||
135 | error = xfs_flush_pages(ip, 0, -1, | ||
136 | (flags & SYNC_WAIT) ? 0 | ||
137 | : XFS_B_ASYNC, | ||
138 | FI_NONE); | ||
139 | } | ||
140 | } | ||
141 | if (VN_CACHED(inode) && (flags & SYNC_IOWAIT)) | ||
142 | xfs_ioend_wait(ip); | ||
143 | } | ||
144 | xfs_ilock(ip, XFS_ILOCK_SHARED); | ||
145 | |||
146 | if ((flags & SYNC_ATTR) && !xfs_inode_clean(ip)) { | ||
147 | if (flags & SYNC_WAIT) { | ||
148 | xfs_iflock(ip); | ||
149 | if (!xfs_inode_clean(ip)) | ||
150 | error = xfs_iflush(ip, XFS_IFLUSH_SYNC); | ||
151 | else | ||
152 | xfs_ifunlock(ip); | ||
153 | } else if (xfs_iflock_nowait(ip)) { | ||
154 | if (!xfs_inode_clean(ip)) | ||
155 | error = xfs_iflush(ip, XFS_IFLUSH_DELWRI); | ||
156 | else | ||
157 | xfs_ifunlock(ip); | ||
158 | } | ||
159 | } | ||
160 | xfs_iput(ip, lock_flags); | ||
161 | 119 | ||
120 | error = execute(ip, pag, flags); | ||
121 | if (error == EAGAIN) { | ||
122 | skipped++; | ||
123 | continue; | ||
124 | } | ||
162 | if (error) | 125 | if (error) |
163 | last_error = error; | 126 | last_error = error; |
164 | /* | 127 | /* |
165 | * bail out if the filesystem is corrupted. | 128 | * bail out if the filesystem is corrupted. |
166 | */ | 129 | */ |
167 | if (error == EFSCORRUPTED) | 130 | if (error == EFSCORRUPTED) |
168 | return XFS_ERROR(error); | 131 | break; |
169 | 132 | ||
170 | } while (nr_found); | 133 | } while (1); |
134 | |||
135 | if (skipped) { | ||
136 | delay(1); | ||
137 | goto restart; | ||
138 | } | ||
171 | 139 | ||
140 | xfs_put_perag(mp, pag); | ||
172 | return last_error; | 141 | return last_error; |
173 | } | 142 | } |
174 | 143 | ||
175 | int | 144 | int |
176 | xfs_sync_inodes( | 145 | xfs_inode_ag_iterator( |
177 | xfs_mount_t *mp, | 146 | struct xfs_mount *mp, |
178 | int flags) | 147 | int (*execute)(struct xfs_inode *ip, |
148 | struct xfs_perag *pag, int flags), | ||
149 | int flags, | ||
150 | int tag) | ||
179 | { | 151 | { |
180 | int error; | 152 | int error = 0; |
181 | int last_error; | 153 | int last_error = 0; |
182 | int i; | 154 | xfs_agnumber_t ag; |
183 | int lflags = XFS_LOG_FORCE; | ||
184 | 155 | ||
185 | if (mp->m_flags & XFS_MOUNT_RDONLY) | 156 | for (ag = 0; ag < mp->m_sb.sb_agcount; ag++) { |
186 | return 0; | 157 | if (!mp->m_perag[ag].pag_ici_init) |
187 | error = 0; | 158 | continue; |
188 | last_error = 0; | 159 | error = xfs_inode_ag_walk(mp, ag, execute, flags, tag); |
160 | if (error) { | ||
161 | last_error = error; | ||
162 | if (error == EFSCORRUPTED) | ||
163 | break; | ||
164 | } | ||
165 | } | ||
166 | return XFS_ERROR(last_error); | ||
167 | } | ||
168 | |||
169 | /* must be called with pag_ici_lock held and releases it */ | ||
170 | int | ||
171 | xfs_sync_inode_valid( | ||
172 | struct xfs_inode *ip, | ||
173 | struct xfs_perag *pag) | ||
174 | { | ||
175 | struct inode *inode = VFS_I(ip); | ||
176 | |||
177 | /* nothing to sync during shutdown */ | ||
178 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) { | ||
179 | read_unlock(&pag->pag_ici_lock); | ||
180 | return EFSCORRUPTED; | ||
181 | } | ||
182 | |||
183 | /* | ||
184 | * If we can't get a reference on the inode, it must be in reclaim. | ||
185 | * Leave it for the reclaim code to flush. Also avoid inodes that | ||
186 | * haven't been fully initialised. | ||
187 | */ | ||
188 | if (!igrab(inode)) { | ||
189 | read_unlock(&pag->pag_ici_lock); | ||
190 | return ENOENT; | ||
191 | } | ||
192 | read_unlock(&pag->pag_ici_lock); | ||
193 | |||
194 | if (is_bad_inode(inode) || xfs_iflags_test(ip, XFS_INEW)) { | ||
195 | IRELE(ip); | ||
196 | return ENOENT; | ||
197 | } | ||
198 | |||
199 | return 0; | ||
200 | } | ||
201 | |||
202 | STATIC int | ||
203 | xfs_sync_inode_data( | ||
204 | struct xfs_inode *ip, | ||
205 | struct xfs_perag *pag, | ||
206 | int flags) | ||
207 | { | ||
208 | struct inode *inode = VFS_I(ip); | ||
209 | struct address_space *mapping = inode->i_mapping; | ||
210 | int error = 0; | ||
211 | |||
212 | error = xfs_sync_inode_valid(ip, pag); | ||
213 | if (error) | ||
214 | return error; | ||
215 | |||
216 | if (!mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) | ||
217 | goto out_wait; | ||
218 | |||
219 | if (!xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED)) { | ||
220 | if (flags & SYNC_TRYLOCK) | ||
221 | goto out_wait; | ||
222 | xfs_ilock(ip, XFS_IOLOCK_SHARED); | ||
223 | } | ||
224 | |||
225 | error = xfs_flush_pages(ip, 0, -1, (flags & SYNC_WAIT) ? | ||
226 | 0 : XFS_B_ASYNC, FI_NONE); | ||
227 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
189 | 228 | ||
229 | out_wait: | ||
190 | if (flags & SYNC_WAIT) | 230 | if (flags & SYNC_WAIT) |
191 | lflags |= XFS_LOG_SYNC; | 231 | xfs_ioend_wait(ip); |
232 | IRELE(ip); | ||
233 | return error; | ||
234 | } | ||
192 | 235 | ||
193 | for (i = 0; i < mp->m_sb.sb_agcount; i++) { | 236 | STATIC int |
194 | if (!mp->m_perag[i].pag_ici_init) | 237 | xfs_sync_inode_attr( |
195 | continue; | 238 | struct xfs_inode *ip, |
196 | error = xfs_sync_inodes_ag(mp, i, flags); | 239 | struct xfs_perag *pag, |
197 | if (error) | 240 | int flags) |
198 | last_error = error; | 241 | { |
199 | if (error == EFSCORRUPTED) | 242 | int error = 0; |
200 | break; | 243 | |
244 | error = xfs_sync_inode_valid(ip, pag); | ||
245 | if (error) | ||
246 | return error; | ||
247 | |||
248 | xfs_ilock(ip, XFS_ILOCK_SHARED); | ||
249 | if (xfs_inode_clean(ip)) | ||
250 | goto out_unlock; | ||
251 | if (!xfs_iflock_nowait(ip)) { | ||
252 | if (!(flags & SYNC_WAIT)) | ||
253 | goto out_unlock; | ||
254 | xfs_iflock(ip); | ||
201 | } | 255 | } |
202 | if (flags & SYNC_DELWRI) | ||
203 | xfs_log_force(mp, 0, lflags); | ||
204 | 256 | ||
205 | return XFS_ERROR(last_error); | 257 | if (xfs_inode_clean(ip)) { |
258 | xfs_ifunlock(ip); | ||
259 | goto out_unlock; | ||
260 | } | ||
261 | |||
262 | error = xfs_iflush(ip, (flags & SYNC_WAIT) ? | ||
263 | XFS_IFLUSH_SYNC : XFS_IFLUSH_DELWRI); | ||
264 | |||
265 | out_unlock: | ||
266 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | ||
267 | IRELE(ip); | ||
268 | return error; | ||
269 | } | ||
270 | |||
271 | /* | ||
272 | * Write out pagecache data for the whole filesystem. | ||
273 | */ | ||
274 | int | ||
275 | xfs_sync_data( | ||
276 | struct xfs_mount *mp, | ||
277 | int flags) | ||
278 | { | ||
279 | int error; | ||
280 | |||
281 | ASSERT((flags & ~(SYNC_TRYLOCK|SYNC_WAIT)) == 0); | ||
282 | |||
283 | error = xfs_inode_ag_iterator(mp, xfs_sync_inode_data, flags, | ||
284 | XFS_ICI_NO_TAG); | ||
285 | if (error) | ||
286 | return XFS_ERROR(error); | ||
287 | |||
288 | xfs_log_force(mp, 0, | ||
289 | (flags & SYNC_WAIT) ? | ||
290 | XFS_LOG_FORCE | XFS_LOG_SYNC : | ||
291 | XFS_LOG_FORCE); | ||
292 | return 0; | ||
293 | } | ||
294 | |||
295 | /* | ||
296 | * Write out inode metadata (attributes) for the whole filesystem. | ||
297 | */ | ||
298 | int | ||
299 | xfs_sync_attr( | ||
300 | struct xfs_mount *mp, | ||
301 | int flags) | ||
302 | { | ||
303 | ASSERT((flags & ~SYNC_WAIT) == 0); | ||
304 | |||
305 | return xfs_inode_ag_iterator(mp, xfs_sync_inode_attr, flags, | ||
306 | XFS_ICI_NO_TAG); | ||
206 | } | 307 | } |
207 | 308 | ||
208 | STATIC int | 309 | STATIC int |
@@ -252,7 +353,7 @@ xfs_sync_fsdata( | |||
252 | * If this is xfssyncd() then only sync the superblock if we can | 353 | * If this is xfssyncd() then only sync the superblock if we can |
253 | * lock it without sleeping and it is not pinned. | 354 | * lock it without sleeping and it is not pinned. |
254 | */ | 355 | */ |
255 | if (flags & SYNC_BDFLUSH) { | 356 | if (flags & SYNC_TRYLOCK) { |
256 | ASSERT(!(flags & SYNC_WAIT)); | 357 | ASSERT(!(flags & SYNC_WAIT)); |
257 | 358 | ||
258 | bp = xfs_getsb(mp, XFS_BUF_TRYLOCK); | 359 | bp = xfs_getsb(mp, XFS_BUF_TRYLOCK); |
@@ -316,13 +417,13 @@ xfs_quiesce_data( | |||
316 | int error; | 417 | int error; |
317 | 418 | ||
318 | /* push non-blocking */ | 419 | /* push non-blocking */ |
319 | xfs_sync_inodes(mp, SYNC_DELWRI|SYNC_BDFLUSH); | 420 | xfs_sync_data(mp, 0); |
320 | XFS_QM_DQSYNC(mp, SYNC_BDFLUSH); | 421 | xfs_qm_sync(mp, SYNC_TRYLOCK); |
321 | xfs_filestream_flush(mp); | 422 | xfs_filestream_flush(mp); |
322 | 423 | ||
323 | /* push and block */ | 424 | /* push and block */ |
324 | xfs_sync_inodes(mp, SYNC_DELWRI|SYNC_WAIT|SYNC_IOWAIT); | 425 | xfs_sync_data(mp, SYNC_WAIT); |
325 | XFS_QM_DQSYNC(mp, SYNC_WAIT); | 426 | xfs_qm_sync(mp, SYNC_WAIT); |
326 | 427 | ||
327 | /* write superblock and hoover up shutdown errors */ | 428 | /* write superblock and hoover up shutdown errors */ |
328 | error = xfs_sync_fsdata(mp, 0); | 429 | error = xfs_sync_fsdata(mp, 0); |
@@ -341,7 +442,7 @@ xfs_quiesce_fs( | |||
341 | int count = 0, pincount; | 442 | int count = 0, pincount; |
342 | 443 | ||
343 | xfs_flush_buftarg(mp->m_ddev_targp, 0); | 444 | xfs_flush_buftarg(mp->m_ddev_targp, 0); |
344 | xfs_reclaim_inodes(mp, 0, XFS_IFLUSH_DELWRI_ELSE_ASYNC); | 445 | xfs_reclaim_inodes(mp, XFS_IFLUSH_DELWRI_ELSE_ASYNC); |
345 | 446 | ||
346 | /* | 447 | /* |
347 | * This loop must run at least twice. The first instance of the loop | 448 | * This loop must run at least twice. The first instance of the loop |
@@ -350,7 +451,7 @@ xfs_quiesce_fs( | |||
350 | * logged before we can write the unmount record. | 451 | * logged before we can write the unmount record. |
351 | */ | 452 | */ |
352 | do { | 453 | do { |
353 | xfs_sync_inodes(mp, SYNC_ATTR|SYNC_WAIT); | 454 | xfs_sync_attr(mp, SYNC_WAIT); |
354 | pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1); | 455 | pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1); |
355 | if (!pincount) { | 456 | if (!pincount) { |
356 | delay(50); | 457 | delay(50); |
@@ -433,8 +534,8 @@ xfs_flush_inodes_work( | |||
433 | void *arg) | 534 | void *arg) |
434 | { | 535 | { |
435 | struct inode *inode = arg; | 536 | struct inode *inode = arg; |
436 | xfs_sync_inodes(mp, SYNC_DELWRI | SYNC_TRYLOCK); | 537 | xfs_sync_data(mp, SYNC_TRYLOCK); |
437 | xfs_sync_inodes(mp, SYNC_DELWRI | SYNC_TRYLOCK | SYNC_IOWAIT); | 538 | xfs_sync_data(mp, SYNC_TRYLOCK | SYNC_WAIT); |
438 | iput(inode); | 539 | iput(inode); |
439 | } | 540 | } |
440 | 541 | ||
@@ -465,10 +566,10 @@ xfs_sync_worker( | |||
465 | 566 | ||
466 | if (!(mp->m_flags & XFS_MOUNT_RDONLY)) { | 567 | if (!(mp->m_flags & XFS_MOUNT_RDONLY)) { |
467 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE); | 568 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE); |
468 | xfs_reclaim_inodes(mp, 0, XFS_IFLUSH_DELWRI_ELSE_ASYNC); | 569 | xfs_reclaim_inodes(mp, XFS_IFLUSH_DELWRI_ELSE_ASYNC); |
469 | /* dgc: errors ignored here */ | 570 | /* dgc: errors ignored here */ |
470 | error = XFS_QM_DQSYNC(mp, SYNC_BDFLUSH); | 571 | error = xfs_qm_sync(mp, SYNC_TRYLOCK); |
471 | error = xfs_sync_fsdata(mp, SYNC_BDFLUSH); | 572 | error = xfs_sync_fsdata(mp, SYNC_TRYLOCK); |
472 | if (xfs_log_need_covered(mp)) | 573 | if (xfs_log_need_covered(mp)) |
473 | error = xfs_commit_dummy_trans(mp, XFS_LOG_FORCE); | 574 | error = xfs_commit_dummy_trans(mp, XFS_LOG_FORCE); |
474 | } | 575 | } |
@@ -569,7 +670,7 @@ xfs_reclaim_inode( | |||
569 | xfs_ifunlock(ip); | 670 | xfs_ifunlock(ip); |
570 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | 671 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
571 | } | 672 | } |
572 | return 1; | 673 | return -EAGAIN; |
573 | } | 674 | } |
574 | __xfs_iflags_set(ip, XFS_IRECLAIM); | 675 | __xfs_iflags_set(ip, XFS_IRECLAIM); |
575 | spin_unlock(&ip->i_flags_lock); | 676 | spin_unlock(&ip->i_flags_lock); |
@@ -654,101 +755,27 @@ xfs_inode_clear_reclaim_tag( | |||
654 | xfs_put_perag(mp, pag); | 755 | xfs_put_perag(mp, pag); |
655 | } | 756 | } |
656 | 757 | ||
657 | 758 | STATIC int | |
658 | STATIC void | 759 | xfs_reclaim_inode_now( |
659 | xfs_reclaim_inodes_ag( | 760 | struct xfs_inode *ip, |
660 | xfs_mount_t *mp, | 761 | struct xfs_perag *pag, |
661 | int ag, | 762 | int flags) |
662 | int noblock, | ||
663 | int mode) | ||
664 | { | 763 | { |
665 | xfs_inode_t *ip = NULL; | 764 | /* ignore if already under reclaim */ |
666 | xfs_perag_t *pag = &mp->m_perag[ag]; | 765 | if (xfs_iflags_test(ip, XFS_IRECLAIM)) { |
667 | int nr_found; | ||
668 | uint32_t first_index; | ||
669 | int skipped; | ||
670 | |||
671 | restart: | ||
672 | first_index = 0; | ||
673 | skipped = 0; | ||
674 | do { | ||
675 | /* | ||
676 | * use a gang lookup to find the next inode in the tree | ||
677 | * as the tree is sparse and a gang lookup walks to find | ||
678 | * the number of objects requested. | ||
679 | */ | ||
680 | read_lock(&pag->pag_ici_lock); | ||
681 | nr_found = radix_tree_gang_lookup_tag(&pag->pag_ici_root, | ||
682 | (void**)&ip, first_index, 1, | ||
683 | XFS_ICI_RECLAIM_TAG); | ||
684 | |||
685 | if (!nr_found) { | ||
686 | read_unlock(&pag->pag_ici_lock); | ||
687 | break; | ||
688 | } | ||
689 | |||
690 | /* | ||
691 | * Update the index for the next lookup. Catch overflows | ||
692 | * into the next AG range which can occur if we have inodes | ||
693 | * in the last block of the AG and we are currently | ||
694 | * pointing to the last inode. | ||
695 | */ | ||
696 | first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1); | ||
697 | if (first_index < XFS_INO_TO_AGINO(mp, ip->i_ino)) { | ||
698 | read_unlock(&pag->pag_ici_lock); | ||
699 | break; | ||
700 | } | ||
701 | |||
702 | /* ignore if already under reclaim */ | ||
703 | if (xfs_iflags_test(ip, XFS_IRECLAIM)) { | ||
704 | read_unlock(&pag->pag_ici_lock); | ||
705 | continue; | ||
706 | } | ||
707 | |||
708 | if (noblock) { | ||
709 | if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) { | ||
710 | read_unlock(&pag->pag_ici_lock); | ||
711 | continue; | ||
712 | } | ||
713 | if (xfs_ipincount(ip) || | ||
714 | !xfs_iflock_nowait(ip)) { | ||
715 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
716 | read_unlock(&pag->pag_ici_lock); | ||
717 | continue; | ||
718 | } | ||
719 | } | ||
720 | read_unlock(&pag->pag_ici_lock); | 766 | read_unlock(&pag->pag_ici_lock); |
721 | 767 | return 0; | |
722 | /* | ||
723 | * hmmm - this is an inode already in reclaim. Do | ||
724 | * we even bother catching it here? | ||
725 | */ | ||
726 | if (xfs_reclaim_inode(ip, noblock, mode)) | ||
727 | skipped++; | ||
728 | } while (nr_found); | ||
729 | |||
730 | if (skipped) { | ||
731 | delay(1); | ||
732 | goto restart; | ||
733 | } | 768 | } |
734 | return; | 769 | read_unlock(&pag->pag_ici_lock); |
735 | 770 | ||
771 | return xfs_reclaim_inode(ip, 0, flags); | ||
736 | } | 772 | } |
737 | 773 | ||
738 | int | 774 | int |
739 | xfs_reclaim_inodes( | 775 | xfs_reclaim_inodes( |
740 | xfs_mount_t *mp, | 776 | xfs_mount_t *mp, |
741 | int noblock, | ||
742 | int mode) | 777 | int mode) |
743 | { | 778 | { |
744 | int i; | 779 | return xfs_inode_ag_iterator(mp, xfs_reclaim_inode_now, mode, |
745 | 780 | XFS_ICI_RECLAIM_TAG); | |
746 | for (i = 0; i < mp->m_sb.sb_agcount; i++) { | ||
747 | if (!mp->m_perag[i].pag_ici_init) | ||
748 | continue; | ||
749 | xfs_reclaim_inodes_ag(mp, i, noblock, mode); | ||
750 | } | ||
751 | return 0; | ||
752 | } | 781 | } |
753 | |||
754 | |||
diff --git a/fs/xfs/linux-2.6/xfs_sync.h b/fs/xfs/linux-2.6/xfs_sync.h index 308d5bf6dfbd..2a10301c99c7 100644 --- a/fs/xfs/linux-2.6/xfs_sync.h +++ b/fs/xfs/linux-2.6/xfs_sync.h | |||
@@ -29,17 +29,14 @@ typedef struct xfs_sync_work { | |||
29 | struct completion *w_completion; | 29 | struct completion *w_completion; |
30 | } xfs_sync_work_t; | 30 | } xfs_sync_work_t; |
31 | 31 | ||
32 | #define SYNC_ATTR 0x0001 /* sync attributes */ | 32 | #define SYNC_WAIT 0x0001 /* wait for i/o to complete */ |
33 | #define SYNC_DELWRI 0x0002 /* look at delayed writes */ | 33 | #define SYNC_TRYLOCK 0x0002 /* only try to lock inodes */ |
34 | #define SYNC_WAIT 0x0004 /* wait for i/o to complete */ | ||
35 | #define SYNC_BDFLUSH 0x0008 /* BDFLUSH is calling -- don't block */ | ||
36 | #define SYNC_IOWAIT 0x0010 /* wait for all I/O to complete */ | ||
37 | #define SYNC_TRYLOCK 0x0020 /* only try to lock inodes */ | ||
38 | 34 | ||
39 | int xfs_syncd_init(struct xfs_mount *mp); | 35 | int xfs_syncd_init(struct xfs_mount *mp); |
40 | void xfs_syncd_stop(struct xfs_mount *mp); | 36 | void xfs_syncd_stop(struct xfs_mount *mp); |
41 | 37 | ||
42 | int xfs_sync_inodes(struct xfs_mount *mp, int flags); | 38 | int xfs_sync_attr(struct xfs_mount *mp, int flags); |
39 | int xfs_sync_data(struct xfs_mount *mp, int flags); | ||
43 | int xfs_sync_fsdata(struct xfs_mount *mp, int flags); | 40 | int xfs_sync_fsdata(struct xfs_mount *mp, int flags); |
44 | 41 | ||
45 | int xfs_quiesce_data(struct xfs_mount *mp); | 42 | int xfs_quiesce_data(struct xfs_mount *mp); |
@@ -48,10 +45,16 @@ void xfs_quiesce_attr(struct xfs_mount *mp); | |||
48 | void xfs_flush_inodes(struct xfs_inode *ip); | 45 | void xfs_flush_inodes(struct xfs_inode *ip); |
49 | 46 | ||
50 | int xfs_reclaim_inode(struct xfs_inode *ip, int locked, int sync_mode); | 47 | int xfs_reclaim_inode(struct xfs_inode *ip, int locked, int sync_mode); |
51 | int xfs_reclaim_inodes(struct xfs_mount *mp, int noblock, int mode); | 48 | int xfs_reclaim_inodes(struct xfs_mount *mp, int mode); |
52 | 49 | ||
53 | void xfs_inode_set_reclaim_tag(struct xfs_inode *ip); | 50 | void xfs_inode_set_reclaim_tag(struct xfs_inode *ip); |
54 | void xfs_inode_clear_reclaim_tag(struct xfs_inode *ip); | 51 | void xfs_inode_clear_reclaim_tag(struct xfs_inode *ip); |
55 | void __xfs_inode_clear_reclaim_tag(struct xfs_mount *mp, struct xfs_perag *pag, | 52 | void __xfs_inode_clear_reclaim_tag(struct xfs_mount *mp, struct xfs_perag *pag, |
56 | struct xfs_inode *ip); | 53 | struct xfs_inode *ip); |
54 | |||
55 | int xfs_sync_inode_valid(struct xfs_inode *ip, struct xfs_perag *pag); | ||
56 | int xfs_inode_ag_iterator(struct xfs_mount *mp, | ||
57 | int (*execute)(struct xfs_inode *ip, struct xfs_perag *pag, int flags), | ||
58 | int flags, int tag); | ||
59 | |||
57 | #endif | 60 | #endif |
diff --git a/fs/xfs/linux-2.6/xfs_xattr.c b/fs/xfs/linux-2.6/xfs_xattr.c index 964621fde6ed..497c7fb75cc1 100644 --- a/fs/xfs/linux-2.6/xfs_xattr.c +++ b/fs/xfs/linux-2.6/xfs_xattr.c | |||
@@ -29,67 +29,6 @@ | |||
29 | #include <linux/xattr.h> | 29 | #include <linux/xattr.h> |
30 | 30 | ||
31 | 31 | ||
32 | /* | ||
33 | * ACL handling. Should eventually be moved into xfs_acl.c | ||
34 | */ | ||
35 | |||
36 | static int | ||
37 | xfs_decode_acl(const char *name) | ||
38 | { | ||
39 | if (strcmp(name, "posix_acl_access") == 0) | ||
40 | return _ACL_TYPE_ACCESS; | ||
41 | else if (strcmp(name, "posix_acl_default") == 0) | ||
42 | return _ACL_TYPE_DEFAULT; | ||
43 | return -EINVAL; | ||
44 | } | ||
45 | |||
46 | /* | ||
47 | * Get system extended attributes which at the moment only | ||
48 | * includes Posix ACLs. | ||
49 | */ | ||
50 | static int | ||
51 | xfs_xattr_system_get(struct inode *inode, const char *name, | ||
52 | void *buffer, size_t size) | ||
53 | { | ||
54 | int acl; | ||
55 | |||
56 | acl = xfs_decode_acl(name); | ||
57 | if (acl < 0) | ||
58 | return acl; | ||
59 | |||
60 | return xfs_acl_vget(inode, buffer, size, acl); | ||
61 | } | ||
62 | |||
63 | static int | ||
64 | xfs_xattr_system_set(struct inode *inode, const char *name, | ||
65 | const void *value, size_t size, int flags) | ||
66 | { | ||
67 | int acl; | ||
68 | |||
69 | acl = xfs_decode_acl(name); | ||
70 | if (acl < 0) | ||
71 | return acl; | ||
72 | if (flags & XATTR_CREATE) | ||
73 | return -EINVAL; | ||
74 | |||
75 | if (!value) | ||
76 | return xfs_acl_vremove(inode, acl); | ||
77 | |||
78 | return xfs_acl_vset(inode, (void *)value, size, acl); | ||
79 | } | ||
80 | |||
81 | static struct xattr_handler xfs_xattr_system_handler = { | ||
82 | .prefix = XATTR_SYSTEM_PREFIX, | ||
83 | .get = xfs_xattr_system_get, | ||
84 | .set = xfs_xattr_system_set, | ||
85 | }; | ||
86 | |||
87 | |||
88 | /* | ||
89 | * Real xattr handling. The only difference between the namespaces is | ||
90 | * a flag passed to the low-level attr code. | ||
91 | */ | ||
92 | |||
93 | static int | 32 | static int |
94 | __xfs_xattr_get(struct inode *inode, const char *name, | 33 | __xfs_xattr_get(struct inode *inode, const char *name, |
95 | void *value, size_t size, int xflags) | 34 | void *value, size_t size, int xflags) |
@@ -199,7 +138,9 @@ struct xattr_handler *xfs_xattr_handlers[] = { | |||
199 | &xfs_xattr_user_handler, | 138 | &xfs_xattr_user_handler, |
200 | &xfs_xattr_trusted_handler, | 139 | &xfs_xattr_trusted_handler, |
201 | &xfs_xattr_security_handler, | 140 | &xfs_xattr_security_handler, |
141 | #ifdef CONFIG_XFS_POSIX_ACL | ||
202 | &xfs_xattr_system_handler, | 142 | &xfs_xattr_system_handler, |
143 | #endif | ||
203 | NULL | 144 | NULL |
204 | }; | 145 | }; |
205 | 146 | ||
@@ -310,7 +251,7 @@ xfs_vn_listxattr(struct dentry *dentry, char *data, size_t size) | |||
310 | /* | 251 | /* |
311 | * Then add the two synthetic ACL attributes. | 252 | * Then add the two synthetic ACL attributes. |
312 | */ | 253 | */ |
313 | if (xfs_acl_vhasacl_access(inode)) { | 254 | if (posix_acl_access_exists(inode)) { |
314 | error = list_one_attr(POSIX_ACL_XATTR_ACCESS, | 255 | error = list_one_attr(POSIX_ACL_XATTR_ACCESS, |
315 | strlen(POSIX_ACL_XATTR_ACCESS) + 1, | 256 | strlen(POSIX_ACL_XATTR_ACCESS) + 1, |
316 | data, size, &context.count); | 257 | data, size, &context.count); |
@@ -318,7 +259,7 @@ xfs_vn_listxattr(struct dentry *dentry, char *data, size_t size) | |||
318 | return error; | 259 | return error; |
319 | } | 260 | } |
320 | 261 | ||
321 | if (xfs_acl_vhasacl_default(inode)) { | 262 | if (posix_acl_default_exists(inode)) { |
322 | error = list_one_attr(POSIX_ACL_XATTR_DEFAULT, | 263 | error = list_one_attr(POSIX_ACL_XATTR_DEFAULT, |
323 | strlen(POSIX_ACL_XATTR_DEFAULT) + 1, | 264 | strlen(POSIX_ACL_XATTR_DEFAULT) + 1, |
324 | data, size, &context.count); | 265 | data, size, &context.count); |