diff options
Diffstat (limited to 'fs')
89 files changed, 1595 insertions, 1293 deletions
diff --git a/fs/afs/dir.c b/fs/afs/dir.c index 20c106f24927..1b0b19550015 100644 --- a/fs/afs/dir.c +++ b/fs/afs/dir.c | |||
| @@ -584,11 +584,11 @@ static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry, | |||
| 584 | 584 | ||
| 585 | success: | 585 | success: |
| 586 | d_add(dentry, inode); | 586 | d_add(dentry, inode); |
| 587 | _leave(" = 0 { vn=%u u=%u } -> { ino=%lu v=%llu }", | 587 | _leave(" = 0 { vn=%u u=%u } -> { ino=%lu v=%u }", |
| 588 | fid.vnode, | 588 | fid.vnode, |
| 589 | fid.unique, | 589 | fid.unique, |
| 590 | dentry->d_inode->i_ino, | 590 | dentry->d_inode->i_ino, |
| 591 | (unsigned long long)dentry->d_inode->i_version); | 591 | dentry->d_inode->i_generation); |
| 592 | 592 | ||
| 593 | return NULL; | 593 | return NULL; |
| 594 | } | 594 | } |
| @@ -671,10 +671,10 @@ static int afs_d_revalidate(struct dentry *dentry, struct nameidata *nd) | |||
| 671 | * been deleted and replaced, and the original vnode ID has | 671 | * been deleted and replaced, and the original vnode ID has |
| 672 | * been reused */ | 672 | * been reused */ |
| 673 | if (fid.unique != vnode->fid.unique) { | 673 | if (fid.unique != vnode->fid.unique) { |
| 674 | _debug("%s: file deleted (uq %u -> %u I:%llu)", | 674 | _debug("%s: file deleted (uq %u -> %u I:%u)", |
| 675 | dentry->d_name.name, fid.unique, | 675 | dentry->d_name.name, fid.unique, |
| 676 | vnode->fid.unique, | 676 | vnode->fid.unique, |
| 677 | (unsigned long long)dentry->d_inode->i_version); | 677 | dentry->d_inode->i_generation); |
| 678 | spin_lock(&vnode->lock); | 678 | spin_lock(&vnode->lock); |
| 679 | set_bit(AFS_VNODE_DELETED, &vnode->flags); | 679 | set_bit(AFS_VNODE_DELETED, &vnode->flags); |
| 680 | spin_unlock(&vnode->lock); | 680 | spin_unlock(&vnode->lock); |
diff --git a/fs/afs/fsclient.c b/fs/afs/fsclient.c index 4bd0218473a9..346e3289abd7 100644 --- a/fs/afs/fsclient.c +++ b/fs/afs/fsclient.c | |||
| @@ -89,7 +89,7 @@ static void xdr_decode_AFSFetchStatus(const __be32 **_bp, | |||
| 89 | i_size_write(&vnode->vfs_inode, size); | 89 | i_size_write(&vnode->vfs_inode, size); |
| 90 | vnode->vfs_inode.i_uid = status->owner; | 90 | vnode->vfs_inode.i_uid = status->owner; |
| 91 | vnode->vfs_inode.i_gid = status->group; | 91 | vnode->vfs_inode.i_gid = status->group; |
| 92 | vnode->vfs_inode.i_version = vnode->fid.unique; | 92 | vnode->vfs_inode.i_generation = vnode->fid.unique; |
| 93 | vnode->vfs_inode.i_nlink = status->nlink; | 93 | vnode->vfs_inode.i_nlink = status->nlink; |
| 94 | 94 | ||
| 95 | mode = vnode->vfs_inode.i_mode; | 95 | mode = vnode->vfs_inode.i_mode; |
| @@ -102,6 +102,7 @@ static void xdr_decode_AFSFetchStatus(const __be32 **_bp, | |||
| 102 | vnode->vfs_inode.i_ctime.tv_sec = status->mtime_server; | 102 | vnode->vfs_inode.i_ctime.tv_sec = status->mtime_server; |
| 103 | vnode->vfs_inode.i_mtime = vnode->vfs_inode.i_ctime; | 103 | vnode->vfs_inode.i_mtime = vnode->vfs_inode.i_ctime; |
| 104 | vnode->vfs_inode.i_atime = vnode->vfs_inode.i_ctime; | 104 | vnode->vfs_inode.i_atime = vnode->vfs_inode.i_ctime; |
| 105 | vnode->vfs_inode.i_version = data_version; | ||
| 105 | } | 106 | } |
| 106 | 107 | ||
| 107 | expected_version = status->data_version; | 108 | expected_version = status->data_version; |
diff --git a/fs/afs/inode.c b/fs/afs/inode.c index db66c5201474..0fdab6e03d87 100644 --- a/fs/afs/inode.c +++ b/fs/afs/inode.c | |||
| @@ -75,7 +75,8 @@ static int afs_inode_map_status(struct afs_vnode *vnode, struct key *key) | |||
| 75 | inode->i_ctime.tv_nsec = 0; | 75 | inode->i_ctime.tv_nsec = 0; |
| 76 | inode->i_atime = inode->i_mtime = inode->i_ctime; | 76 | inode->i_atime = inode->i_mtime = inode->i_ctime; |
| 77 | inode->i_blocks = 0; | 77 | inode->i_blocks = 0; |
| 78 | inode->i_version = vnode->fid.unique; | 78 | inode->i_generation = vnode->fid.unique; |
| 79 | inode->i_version = vnode->status.data_version; | ||
| 79 | inode->i_mapping->a_ops = &afs_fs_aops; | 80 | inode->i_mapping->a_ops = &afs_fs_aops; |
| 80 | 81 | ||
| 81 | /* check to see whether a symbolic link is really a mountpoint */ | 82 | /* check to see whether a symbolic link is really a mountpoint */ |
| @@ -100,7 +101,7 @@ static int afs_iget5_test(struct inode *inode, void *opaque) | |||
| 100 | struct afs_iget_data *data = opaque; | 101 | struct afs_iget_data *data = opaque; |
| 101 | 102 | ||
| 102 | return inode->i_ino == data->fid.vnode && | 103 | return inode->i_ino == data->fid.vnode && |
| 103 | inode->i_version == data->fid.unique; | 104 | inode->i_generation == data->fid.unique; |
| 104 | } | 105 | } |
| 105 | 106 | ||
| 106 | /* | 107 | /* |
| @@ -122,7 +123,7 @@ static int afs_iget5_set(struct inode *inode, void *opaque) | |||
| 122 | struct afs_vnode *vnode = AFS_FS_I(inode); | 123 | struct afs_vnode *vnode = AFS_FS_I(inode); |
| 123 | 124 | ||
| 124 | inode->i_ino = data->fid.vnode; | 125 | inode->i_ino = data->fid.vnode; |
| 125 | inode->i_version = data->fid.unique; | 126 | inode->i_generation = data->fid.unique; |
| 126 | vnode->fid = data->fid; | 127 | vnode->fid = data->fid; |
| 127 | vnode->volume = data->volume; | 128 | vnode->volume = data->volume; |
| 128 | 129 | ||
| @@ -380,8 +381,7 @@ int afs_getattr(struct vfsmount *mnt, struct dentry *dentry, | |||
| 380 | 381 | ||
| 381 | inode = dentry->d_inode; | 382 | inode = dentry->d_inode; |
| 382 | 383 | ||
| 383 | _enter("{ ino=%lu v=%llu }", inode->i_ino, | 384 | _enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation); |
| 384 | (unsigned long long)inode->i_version); | ||
| 385 | 385 | ||
| 386 | generic_fillattr(inode, stat); | 386 | generic_fillattr(inode, stat); |
| 387 | return 0; | 387 | return 0; |
diff --git a/fs/afs/super.c b/fs/afs/super.c index fb240e8766d6..356dcf0929e8 100644 --- a/fs/afs/super.c +++ b/fs/afs/super.c | |||
| @@ -31,8 +31,8 @@ | |||
| 31 | static void afs_i_init_once(void *foo); | 31 | static void afs_i_init_once(void *foo); |
| 32 | static struct dentry *afs_mount(struct file_system_type *fs_type, | 32 | static struct dentry *afs_mount(struct file_system_type *fs_type, |
| 33 | int flags, const char *dev_name, void *data); | 33 | int flags, const char *dev_name, void *data); |
| 34 | static void afs_kill_super(struct super_block *sb); | ||
| 34 | static struct inode *afs_alloc_inode(struct super_block *sb); | 35 | static struct inode *afs_alloc_inode(struct super_block *sb); |
| 35 | static void afs_put_super(struct super_block *sb); | ||
| 36 | static void afs_destroy_inode(struct inode *inode); | 36 | static void afs_destroy_inode(struct inode *inode); |
| 37 | static int afs_statfs(struct dentry *dentry, struct kstatfs *buf); | 37 | static int afs_statfs(struct dentry *dentry, struct kstatfs *buf); |
| 38 | 38 | ||
| @@ -40,7 +40,7 @@ struct file_system_type afs_fs_type = { | |||
| 40 | .owner = THIS_MODULE, | 40 | .owner = THIS_MODULE, |
| 41 | .name = "afs", | 41 | .name = "afs", |
| 42 | .mount = afs_mount, | 42 | .mount = afs_mount, |
| 43 | .kill_sb = kill_anon_super, | 43 | .kill_sb = afs_kill_super, |
| 44 | .fs_flags = 0, | 44 | .fs_flags = 0, |
| 45 | }; | 45 | }; |
| 46 | 46 | ||
| @@ -50,7 +50,6 @@ static const struct super_operations afs_super_ops = { | |||
| 50 | .drop_inode = afs_drop_inode, | 50 | .drop_inode = afs_drop_inode, |
| 51 | .destroy_inode = afs_destroy_inode, | 51 | .destroy_inode = afs_destroy_inode, |
| 52 | .evict_inode = afs_evict_inode, | 52 | .evict_inode = afs_evict_inode, |
| 53 | .put_super = afs_put_super, | ||
| 54 | .show_options = generic_show_options, | 53 | .show_options = generic_show_options, |
| 55 | }; | 54 | }; |
| 56 | 55 | ||
| @@ -282,19 +281,25 @@ static int afs_parse_device_name(struct afs_mount_params *params, | |||
| 282 | */ | 281 | */ |
| 283 | static int afs_test_super(struct super_block *sb, void *data) | 282 | static int afs_test_super(struct super_block *sb, void *data) |
| 284 | { | 283 | { |
| 285 | struct afs_mount_params *params = data; | 284 | struct afs_super_info *as1 = data; |
| 286 | struct afs_super_info *as = sb->s_fs_info; | 285 | struct afs_super_info *as = sb->s_fs_info; |
| 287 | 286 | ||
| 288 | return as->volume == params->volume; | 287 | return as->volume == as1->volume; |
| 288 | } | ||
| 289 | |||
| 290 | static int afs_set_super(struct super_block *sb, void *data) | ||
| 291 | { | ||
| 292 | sb->s_fs_info = data; | ||
| 293 | return set_anon_super(sb, NULL); | ||
| 289 | } | 294 | } |
| 290 | 295 | ||
| 291 | /* | 296 | /* |
| 292 | * fill in the superblock | 297 | * fill in the superblock |
| 293 | */ | 298 | */ |
| 294 | static int afs_fill_super(struct super_block *sb, void *data) | 299 | static int afs_fill_super(struct super_block *sb, |
| 300 | struct afs_mount_params *params) | ||
| 295 | { | 301 | { |
| 296 | struct afs_mount_params *params = data; | 302 | struct afs_super_info *as = sb->s_fs_info; |
| 297 | struct afs_super_info *as = NULL; | ||
| 298 | struct afs_fid fid; | 303 | struct afs_fid fid; |
| 299 | struct dentry *root = NULL; | 304 | struct dentry *root = NULL; |
| 300 | struct inode *inode = NULL; | 305 | struct inode *inode = NULL; |
| @@ -302,23 +307,13 @@ static int afs_fill_super(struct super_block *sb, void *data) | |||
| 302 | 307 | ||
| 303 | _enter(""); | 308 | _enter(""); |
| 304 | 309 | ||
| 305 | /* allocate a superblock info record */ | ||
| 306 | as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL); | ||
| 307 | if (!as) { | ||
| 308 | _leave(" = -ENOMEM"); | ||
| 309 | return -ENOMEM; | ||
| 310 | } | ||
| 311 | |||
| 312 | afs_get_volume(params->volume); | ||
| 313 | as->volume = params->volume; | ||
| 314 | |||
| 315 | /* fill in the superblock */ | 310 | /* fill in the superblock */ |
| 316 | sb->s_blocksize = PAGE_CACHE_SIZE; | 311 | sb->s_blocksize = PAGE_CACHE_SIZE; |
| 317 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; | 312 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; |
| 318 | sb->s_magic = AFS_FS_MAGIC; | 313 | sb->s_magic = AFS_FS_MAGIC; |
| 319 | sb->s_op = &afs_super_ops; | 314 | sb->s_op = &afs_super_ops; |
| 320 | sb->s_fs_info = as; | ||
| 321 | sb->s_bdi = &as->volume->bdi; | 315 | sb->s_bdi = &as->volume->bdi; |
| 316 | strlcpy(sb->s_id, as->volume->vlocation->vldb.name, sizeof(sb->s_id)); | ||
| 322 | 317 | ||
| 323 | /* allocate the root inode and dentry */ | 318 | /* allocate the root inode and dentry */ |
| 324 | fid.vid = as->volume->vid; | 319 | fid.vid = as->volume->vid; |
| @@ -326,7 +321,7 @@ static int afs_fill_super(struct super_block *sb, void *data) | |||
| 326 | fid.unique = 1; | 321 | fid.unique = 1; |
| 327 | inode = afs_iget(sb, params->key, &fid, NULL, NULL); | 322 | inode = afs_iget(sb, params->key, &fid, NULL, NULL); |
| 328 | if (IS_ERR(inode)) | 323 | if (IS_ERR(inode)) |
| 329 | goto error_inode; | 324 | return PTR_ERR(inode); |
| 330 | 325 | ||
| 331 | if (params->autocell) | 326 | if (params->autocell) |
| 332 | set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags); | 327 | set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags); |
| @@ -342,16 +337,8 @@ static int afs_fill_super(struct super_block *sb, void *data) | |||
| 342 | _leave(" = 0"); | 337 | _leave(" = 0"); |
| 343 | return 0; | 338 | return 0; |
| 344 | 339 | ||
| 345 | error_inode: | ||
| 346 | ret = PTR_ERR(inode); | ||
| 347 | inode = NULL; | ||
| 348 | error: | 340 | error: |
| 349 | iput(inode); | 341 | iput(inode); |
| 350 | afs_put_volume(as->volume); | ||
| 351 | kfree(as); | ||
| 352 | |||
| 353 | sb->s_fs_info = NULL; | ||
| 354 | |||
| 355 | _leave(" = %d", ret); | 342 | _leave(" = %d", ret); |
| 356 | return ret; | 343 | return ret; |
| 357 | } | 344 | } |
| @@ -367,6 +354,7 @@ static struct dentry *afs_mount(struct file_system_type *fs_type, | |||
| 367 | struct afs_volume *vol; | 354 | struct afs_volume *vol; |
| 368 | struct key *key; | 355 | struct key *key; |
| 369 | char *new_opts = kstrdup(options, GFP_KERNEL); | 356 | char *new_opts = kstrdup(options, GFP_KERNEL); |
| 357 | struct afs_super_info *as; | ||
| 370 | int ret; | 358 | int ret; |
| 371 | 359 | ||
| 372 | _enter(",,%s,%p", dev_name, options); | 360 | _enter(",,%s,%p", dev_name, options); |
| @@ -399,12 +387,22 @@ static struct dentry *afs_mount(struct file_system_type *fs_type, | |||
| 399 | ret = PTR_ERR(vol); | 387 | ret = PTR_ERR(vol); |
| 400 | goto error; | 388 | goto error; |
| 401 | } | 389 | } |
| 402 | params.volume = vol; | 390 | |
| 391 | /* allocate a superblock info record */ | ||
| 392 | as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL); | ||
| 393 | if (!as) { | ||
| 394 | ret = -ENOMEM; | ||
| 395 | afs_put_volume(vol); | ||
| 396 | goto error; | ||
| 397 | } | ||
| 398 | as->volume = vol; | ||
| 403 | 399 | ||
| 404 | /* allocate a deviceless superblock */ | 400 | /* allocate a deviceless superblock */ |
| 405 | sb = sget(fs_type, afs_test_super, set_anon_super, ¶ms); | 401 | sb = sget(fs_type, afs_test_super, afs_set_super, as); |
| 406 | if (IS_ERR(sb)) { | 402 | if (IS_ERR(sb)) { |
| 407 | ret = PTR_ERR(sb); | 403 | ret = PTR_ERR(sb); |
| 404 | afs_put_volume(vol); | ||
| 405 | kfree(as); | ||
| 408 | goto error; | 406 | goto error; |
| 409 | } | 407 | } |
| 410 | 408 | ||
| @@ -422,16 +420,16 @@ static struct dentry *afs_mount(struct file_system_type *fs_type, | |||
| 422 | } else { | 420 | } else { |
| 423 | _debug("reuse"); | 421 | _debug("reuse"); |
| 424 | ASSERTCMP(sb->s_flags, &, MS_ACTIVE); | 422 | ASSERTCMP(sb->s_flags, &, MS_ACTIVE); |
| 423 | afs_put_volume(vol); | ||
| 424 | kfree(as); | ||
| 425 | } | 425 | } |
| 426 | 426 | ||
| 427 | afs_put_volume(params.volume); | ||
| 428 | afs_put_cell(params.cell); | 427 | afs_put_cell(params.cell); |
| 429 | kfree(new_opts); | 428 | kfree(new_opts); |
| 430 | _leave(" = 0 [%p]", sb); | 429 | _leave(" = 0 [%p]", sb); |
| 431 | return dget(sb->s_root); | 430 | return dget(sb->s_root); |
| 432 | 431 | ||
| 433 | error: | 432 | error: |
| 434 | afs_put_volume(params.volume); | ||
| 435 | afs_put_cell(params.cell); | 433 | afs_put_cell(params.cell); |
| 436 | key_put(params.key); | 434 | key_put(params.key); |
| 437 | kfree(new_opts); | 435 | kfree(new_opts); |
| @@ -439,18 +437,12 @@ error: | |||
| 439 | return ERR_PTR(ret); | 437 | return ERR_PTR(ret); |
| 440 | } | 438 | } |
| 441 | 439 | ||
| 442 | /* | 440 | static void afs_kill_super(struct super_block *sb) |
| 443 | * finish the unmounting process on the superblock | ||
| 444 | */ | ||
| 445 | static void afs_put_super(struct super_block *sb) | ||
| 446 | { | 441 | { |
| 447 | struct afs_super_info *as = sb->s_fs_info; | 442 | struct afs_super_info *as = sb->s_fs_info; |
| 448 | 443 | kill_anon_super(sb); | |
| 449 | _enter(""); | ||
| 450 | |||
| 451 | afs_put_volume(as->volume); | 444 | afs_put_volume(as->volume); |
| 452 | 445 | kfree(as); | |
| 453 | _leave(""); | ||
| 454 | } | 446 | } |
| 455 | 447 | ||
| 456 | /* | 448 | /* |
diff --git a/fs/afs/write.c b/fs/afs/write.c index 789b3afb3423..b806285ff853 100644 --- a/fs/afs/write.c +++ b/fs/afs/write.c | |||
| @@ -84,23 +84,21 @@ void afs_put_writeback(struct afs_writeback *wb) | |||
| 84 | * partly or wholly fill a page that's under preparation for writing | 84 | * partly or wholly fill a page that's under preparation for writing |
| 85 | */ | 85 | */ |
| 86 | static int afs_fill_page(struct afs_vnode *vnode, struct key *key, | 86 | static int afs_fill_page(struct afs_vnode *vnode, struct key *key, |
| 87 | loff_t pos, unsigned len, struct page *page) | 87 | loff_t pos, struct page *page) |
| 88 | { | 88 | { |
| 89 | loff_t i_size; | 89 | loff_t i_size; |
| 90 | unsigned eof; | ||
| 91 | int ret; | 90 | int ret; |
| 91 | int len; | ||
| 92 | 92 | ||
| 93 | _enter(",,%llu,%u", (unsigned long long)pos, len); | 93 | _enter(",,%llu", (unsigned long long)pos); |
| 94 | |||
| 95 | ASSERTCMP(len, <=, PAGE_CACHE_SIZE); | ||
| 96 | 94 | ||
| 97 | i_size = i_size_read(&vnode->vfs_inode); | 95 | i_size = i_size_read(&vnode->vfs_inode); |
| 98 | if (pos + len > i_size) | 96 | if (pos + PAGE_CACHE_SIZE > i_size) |
| 99 | eof = i_size; | 97 | len = i_size - pos; |
| 100 | else | 98 | else |
| 101 | eof = PAGE_CACHE_SIZE; | 99 | len = PAGE_CACHE_SIZE; |
| 102 | 100 | ||
| 103 | ret = afs_vnode_fetch_data(vnode, key, 0, eof, page); | 101 | ret = afs_vnode_fetch_data(vnode, key, pos, len, page); |
| 104 | if (ret < 0) { | 102 | if (ret < 0) { |
| 105 | if (ret == -ENOENT) { | 103 | if (ret == -ENOENT) { |
| 106 | _debug("got NOENT from server" | 104 | _debug("got NOENT from server" |
| @@ -153,9 +151,8 @@ int afs_write_begin(struct file *file, struct address_space *mapping, | |||
| 153 | *pagep = page; | 151 | *pagep = page; |
| 154 | /* page won't leak in error case: it eventually gets cleaned off LRU */ | 152 | /* page won't leak in error case: it eventually gets cleaned off LRU */ |
| 155 | 153 | ||
| 156 | if (!PageUptodate(page)) { | 154 | if (!PageUptodate(page) && len != PAGE_CACHE_SIZE) { |
| 157 | _debug("not up to date"); | 155 | ret = afs_fill_page(vnode, key, index << PAGE_CACHE_SHIFT, page); |
| 158 | ret = afs_fill_page(vnode, key, pos, len, page); | ||
| 159 | if (ret < 0) { | 156 | if (ret < 0) { |
| 160 | kfree(candidate); | 157 | kfree(candidate); |
| 161 | _leave(" = %d [prep]", ret); | 158 | _leave(" = %d [prep]", ret); |
diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c index 87d95a8cddbc..f55ae23b137e 100644 --- a/fs/autofs4/root.c +++ b/fs/autofs4/root.c | |||
| @@ -583,8 +583,6 @@ static int autofs4_dir_unlink(struct inode *dir, struct dentry *dentry) | |||
| 583 | if (!autofs4_oz_mode(sbi) && !capable(CAP_SYS_ADMIN)) | 583 | if (!autofs4_oz_mode(sbi) && !capable(CAP_SYS_ADMIN)) |
| 584 | return -EACCES; | 584 | return -EACCES; |
| 585 | 585 | ||
| 586 | dentry_unhash(dentry); | ||
| 587 | |||
| 588 | if (atomic_dec_and_test(&ino->count)) { | 586 | if (atomic_dec_and_test(&ino->count)) { |
| 589 | p_ino = autofs4_dentry_ino(dentry->d_parent); | 587 | p_ino = autofs4_dentry_ino(dentry->d_parent); |
| 590 | if (p_ino && dentry->d_parent != dentry) | 588 | if (p_ino && dentry->d_parent != dentry) |
diff --git a/fs/bad_inode.c b/fs/bad_inode.c index 9ad2369d9e35..bfcb18feb1df 100644 --- a/fs/bad_inode.c +++ b/fs/bad_inode.c | |||
| @@ -231,9 +231,6 @@ static int bad_inode_readlink(struct dentry *dentry, char __user *buffer, | |||
| 231 | 231 | ||
| 232 | static int bad_inode_permission(struct inode *inode, int mask, unsigned int flags) | 232 | static int bad_inode_permission(struct inode *inode, int mask, unsigned int flags) |
| 233 | { | 233 | { |
| 234 | if (flags & IPERM_FLAG_RCU) | ||
| 235 | return -ECHILD; | ||
| 236 | |||
| 237 | return -EIO; | 234 | return -EIO; |
| 238 | } | 235 | } |
| 239 | 236 | ||
diff --git a/fs/block_dev.c b/fs/block_dev.c index 1f2b19978333..1a2421f908f0 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c | |||
| @@ -1272,8 +1272,8 @@ int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder) | |||
| 1272 | * individual writeable reference is too fragile given the | 1272 | * individual writeable reference is too fragile given the |
| 1273 | * way @mode is used in blkdev_get/put(). | 1273 | * way @mode is used in blkdev_get/put(). |
| 1274 | */ | 1274 | */ |
| 1275 | if ((disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE) && | 1275 | if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder && |
| 1276 | !res && (mode & FMODE_WRITE) && !bdev->bd_write_holder) { | 1276 | (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) { |
| 1277 | bdev->bd_write_holder = true; | 1277 | bdev->bd_write_holder = true; |
| 1278 | disk_block_events(disk); | 1278 | disk_block_events(disk); |
| 1279 | } | 1279 | } |
diff --git a/fs/btrfs/btrfs_inode.h b/fs/btrfs/btrfs_inode.h index 93b1aa932014..52d7eca8c7bf 100644 --- a/fs/btrfs/btrfs_inode.h +++ b/fs/btrfs/btrfs_inode.h | |||
| @@ -121,9 +121,6 @@ struct btrfs_inode { | |||
| 121 | */ | 121 | */ |
| 122 | u64 index_cnt; | 122 | u64 index_cnt; |
| 123 | 123 | ||
| 124 | /* the start of block group preferred for allocations. */ | ||
| 125 | u64 block_group; | ||
| 126 | |||
| 127 | /* the fsync log has some corner cases that mean we have to check | 124 | /* the fsync log has some corner cases that mean we have to check |
| 128 | * directories to see if any unlinks have been done before | 125 | * directories to see if any unlinks have been done before |
| 129 | * the directory was logged. See tree-log.c for all the | 126 | * the directory was logged. See tree-log.c for all the |
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index b0e18d986e0a..2e667868e0d2 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c | |||
| @@ -43,8 +43,6 @@ struct btrfs_path *btrfs_alloc_path(void) | |||
| 43 | { | 43 | { |
| 44 | struct btrfs_path *path; | 44 | struct btrfs_path *path; |
| 45 | path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS); | 45 | path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS); |
| 46 | if (path) | ||
| 47 | path->reada = 1; | ||
| 48 | return path; | 46 | return path; |
| 49 | } | 47 | } |
| 50 | 48 | ||
| @@ -1224,11 +1222,13 @@ static void reada_for_search(struct btrfs_root *root, | |||
| 1224 | u64 search; | 1222 | u64 search; |
| 1225 | u64 target; | 1223 | u64 target; |
| 1226 | u64 nread = 0; | 1224 | u64 nread = 0; |
| 1225 | u64 gen; | ||
| 1227 | int direction = path->reada; | 1226 | int direction = path->reada; |
| 1228 | struct extent_buffer *eb; | 1227 | struct extent_buffer *eb; |
| 1229 | u32 nr; | 1228 | u32 nr; |
| 1230 | u32 blocksize; | 1229 | u32 blocksize; |
| 1231 | u32 nscan = 0; | 1230 | u32 nscan = 0; |
| 1231 | bool map = true; | ||
| 1232 | 1232 | ||
| 1233 | if (level != 1) | 1233 | if (level != 1) |
| 1234 | return; | 1234 | return; |
| @@ -1250,7 +1250,19 @@ static void reada_for_search(struct btrfs_root *root, | |||
| 1250 | 1250 | ||
| 1251 | nritems = btrfs_header_nritems(node); | 1251 | nritems = btrfs_header_nritems(node); |
| 1252 | nr = slot; | 1252 | nr = slot; |
| 1253 | if (node->map_token || path->skip_locking) | ||
| 1254 | map = false; | ||
| 1255 | |||
| 1253 | while (1) { | 1256 | while (1) { |
| 1257 | if (map && !node->map_token) { | ||
| 1258 | unsigned long offset = btrfs_node_key_ptr_offset(nr); | ||
| 1259 | map_private_extent_buffer(node, offset, | ||
| 1260 | sizeof(struct btrfs_key_ptr), | ||
| 1261 | &node->map_token, | ||
| 1262 | &node->kaddr, | ||
| 1263 | &node->map_start, | ||
| 1264 | &node->map_len, KM_USER1); | ||
| 1265 | } | ||
| 1254 | if (direction < 0) { | 1266 | if (direction < 0) { |
| 1255 | if (nr == 0) | 1267 | if (nr == 0) |
| 1256 | break; | 1268 | break; |
| @@ -1268,14 +1280,23 @@ static void reada_for_search(struct btrfs_root *root, | |||
| 1268 | search = btrfs_node_blockptr(node, nr); | 1280 | search = btrfs_node_blockptr(node, nr); |
| 1269 | if ((search <= target && target - search <= 65536) || | 1281 | if ((search <= target && target - search <= 65536) || |
| 1270 | (search > target && search - target <= 65536)) { | 1282 | (search > target && search - target <= 65536)) { |
| 1271 | readahead_tree_block(root, search, blocksize, | 1283 | gen = btrfs_node_ptr_generation(node, nr); |
| 1272 | btrfs_node_ptr_generation(node, nr)); | 1284 | if (map && node->map_token) { |
| 1285 | unmap_extent_buffer(node, node->map_token, | ||
| 1286 | KM_USER1); | ||
| 1287 | node->map_token = NULL; | ||
| 1288 | } | ||
| 1289 | readahead_tree_block(root, search, blocksize, gen); | ||
| 1273 | nread += blocksize; | 1290 | nread += blocksize; |
| 1274 | } | 1291 | } |
| 1275 | nscan++; | 1292 | nscan++; |
| 1276 | if ((nread > 65536 || nscan > 32)) | 1293 | if ((nread > 65536 || nscan > 32)) |
| 1277 | break; | 1294 | break; |
| 1278 | } | 1295 | } |
| 1296 | if (map && node->map_token) { | ||
| 1297 | unmap_extent_buffer(node, node->map_token, KM_USER1); | ||
| 1298 | node->map_token = NULL; | ||
| 1299 | } | ||
| 1279 | } | 1300 | } |
| 1280 | 1301 | ||
| 1281 | /* | 1302 | /* |
| @@ -1648,9 +1669,6 @@ again: | |||
| 1648 | } | 1669 | } |
| 1649 | cow_done: | 1670 | cow_done: |
| 1650 | BUG_ON(!cow && ins_len); | 1671 | BUG_ON(!cow && ins_len); |
| 1651 | if (level != btrfs_header_level(b)) | ||
| 1652 | WARN_ON(1); | ||
| 1653 | level = btrfs_header_level(b); | ||
| 1654 | 1672 | ||
| 1655 | p->nodes[level] = b; | 1673 | p->nodes[level] = b; |
| 1656 | if (!p->skip_locking) | 1674 | if (!p->skip_locking) |
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 6c093fa98f61..300628795fdb 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h | |||
| @@ -930,7 +930,6 @@ struct btrfs_fs_info { | |||
| 930 | * is required instead of the faster short fsync log commits | 930 | * is required instead of the faster short fsync log commits |
| 931 | */ | 931 | */ |
| 932 | u64 last_trans_log_full_commit; | 932 | u64 last_trans_log_full_commit; |
| 933 | u64 open_ioctl_trans; | ||
| 934 | unsigned long mount_opt:20; | 933 | unsigned long mount_opt:20; |
| 935 | unsigned long compress_type:4; | 934 | unsigned long compress_type:4; |
| 936 | u64 max_inline; | 935 | u64 max_inline; |
| @@ -947,7 +946,6 @@ struct btrfs_fs_info { | |||
| 947 | struct super_block *sb; | 946 | struct super_block *sb; |
| 948 | struct inode *btree_inode; | 947 | struct inode *btree_inode; |
| 949 | struct backing_dev_info bdi; | 948 | struct backing_dev_info bdi; |
| 950 | struct mutex trans_mutex; | ||
| 951 | struct mutex tree_log_mutex; | 949 | struct mutex tree_log_mutex; |
| 952 | struct mutex transaction_kthread_mutex; | 950 | struct mutex transaction_kthread_mutex; |
| 953 | struct mutex cleaner_mutex; | 951 | struct mutex cleaner_mutex; |
| @@ -968,6 +966,13 @@ struct btrfs_fs_info { | |||
| 968 | struct rw_semaphore subvol_sem; | 966 | struct rw_semaphore subvol_sem; |
| 969 | struct srcu_struct subvol_srcu; | 967 | struct srcu_struct subvol_srcu; |
| 970 | 968 | ||
| 969 | spinlock_t trans_lock; | ||
| 970 | /* | ||
| 971 | * the reloc mutex goes with the trans lock, it is taken | ||
| 972 | * during commit to protect us from the relocation code | ||
| 973 | */ | ||
| 974 | struct mutex reloc_mutex; | ||
| 975 | |||
| 971 | struct list_head trans_list; | 976 | struct list_head trans_list; |
| 972 | struct list_head hashers; | 977 | struct list_head hashers; |
| 973 | struct list_head dead_roots; | 978 | struct list_head dead_roots; |
| @@ -980,6 +985,7 @@ struct btrfs_fs_info { | |||
| 980 | atomic_t async_submit_draining; | 985 | atomic_t async_submit_draining; |
| 981 | atomic_t nr_async_bios; | 986 | atomic_t nr_async_bios; |
| 982 | atomic_t async_delalloc_pages; | 987 | atomic_t async_delalloc_pages; |
| 988 | atomic_t open_ioctl_trans; | ||
| 983 | 989 | ||
| 984 | /* | 990 | /* |
| 985 | * this is used by the balancing code to wait for all the pending | 991 | * this is used by the balancing code to wait for all the pending |
| @@ -1044,6 +1050,7 @@ struct btrfs_fs_info { | |||
| 1044 | int closing; | 1050 | int closing; |
| 1045 | int log_root_recovering; | 1051 | int log_root_recovering; |
| 1046 | int enospc_unlink; | 1052 | int enospc_unlink; |
| 1053 | int trans_no_join; | ||
| 1047 | 1054 | ||
| 1048 | u64 total_pinned; | 1055 | u64 total_pinned; |
| 1049 | 1056 | ||
| @@ -1065,7 +1072,6 @@ struct btrfs_fs_info { | |||
| 1065 | struct reloc_control *reloc_ctl; | 1072 | struct reloc_control *reloc_ctl; |
| 1066 | 1073 | ||
| 1067 | spinlock_t delalloc_lock; | 1074 | spinlock_t delalloc_lock; |
| 1068 | spinlock_t new_trans_lock; | ||
| 1069 | u64 delalloc_bytes; | 1075 | u64 delalloc_bytes; |
| 1070 | 1076 | ||
| 1071 | /* data_alloc_cluster is only used in ssd mode */ | 1077 | /* data_alloc_cluster is only used in ssd mode */ |
| @@ -1172,6 +1178,14 @@ struct btrfs_root { | |||
| 1172 | u32 type; | 1178 | u32 type; |
| 1173 | 1179 | ||
| 1174 | u64 highest_objectid; | 1180 | u64 highest_objectid; |
| 1181 | |||
| 1182 | /* btrfs_record_root_in_trans is a multi-step process, | ||
| 1183 | * and it can race with the balancing code. But the | ||
| 1184 | * race is very small, and only the first time the root | ||
| 1185 | * is added to each transaction. So in_trans_setup | ||
| 1186 | * is used to tell us when more checks are required | ||
| 1187 | */ | ||
| 1188 | unsigned long in_trans_setup; | ||
| 1175 | int ref_cows; | 1189 | int ref_cows; |
| 1176 | int track_dirty; | 1190 | int track_dirty; |
| 1177 | int in_radix; | 1191 | int in_radix; |
| @@ -1181,7 +1195,6 @@ struct btrfs_root { | |||
| 1181 | struct btrfs_key defrag_max; | 1195 | struct btrfs_key defrag_max; |
| 1182 | int defrag_running; | 1196 | int defrag_running; |
| 1183 | char *name; | 1197 | char *name; |
| 1184 | int in_sysfs; | ||
| 1185 | 1198 | ||
| 1186 | /* the dirty list is only used by non-reference counted roots */ | 1199 | /* the dirty list is only used by non-reference counted roots */ |
| 1187 | struct list_head dirty_list; | 1200 | struct list_head dirty_list; |
| @@ -1340,6 +1353,7 @@ struct btrfs_ioctl_defrag_range_args { | |||
| 1340 | #define BTRFS_MOUNT_USER_SUBVOL_RM_ALLOWED (1 << 14) | 1353 | #define BTRFS_MOUNT_USER_SUBVOL_RM_ALLOWED (1 << 14) |
| 1341 | #define BTRFS_MOUNT_ENOSPC_DEBUG (1 << 15) | 1354 | #define BTRFS_MOUNT_ENOSPC_DEBUG (1 << 15) |
| 1342 | #define BTRFS_MOUNT_AUTO_DEFRAG (1 << 16) | 1355 | #define BTRFS_MOUNT_AUTO_DEFRAG (1 << 16) |
| 1356 | #define BTRFS_MOUNT_INODE_MAP_CACHE (1 << 17) | ||
| 1343 | 1357 | ||
| 1344 | #define btrfs_clear_opt(o, opt) ((o) &= ~BTRFS_MOUNT_##opt) | 1358 | #define btrfs_clear_opt(o, opt) ((o) &= ~BTRFS_MOUNT_##opt) |
| 1345 | #define btrfs_set_opt(o, opt) ((o) |= BTRFS_MOUNT_##opt) | 1359 | #define btrfs_set_opt(o, opt) ((o) |= BTRFS_MOUNT_##opt) |
| @@ -2238,6 +2252,9 @@ int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv, | |||
| 2238 | void btrfs_block_rsv_release(struct btrfs_root *root, | 2252 | void btrfs_block_rsv_release(struct btrfs_root *root, |
| 2239 | struct btrfs_block_rsv *block_rsv, | 2253 | struct btrfs_block_rsv *block_rsv, |
| 2240 | u64 num_bytes); | 2254 | u64 num_bytes); |
| 2255 | int btrfs_truncate_reserve_metadata(struct btrfs_trans_handle *trans, | ||
| 2256 | struct btrfs_root *root, | ||
| 2257 | struct btrfs_block_rsv *rsv); | ||
| 2241 | int btrfs_set_block_group_ro(struct btrfs_root *root, | 2258 | int btrfs_set_block_group_ro(struct btrfs_root *root, |
| 2242 | struct btrfs_block_group_cache *cache); | 2259 | struct btrfs_block_group_cache *cache); |
| 2243 | int btrfs_set_block_group_rw(struct btrfs_root *root, | 2260 | int btrfs_set_block_group_rw(struct btrfs_root *root, |
| @@ -2350,6 +2367,15 @@ int btrfs_drop_subtree(struct btrfs_trans_handle *trans, | |||
| 2350 | struct btrfs_root *root, | 2367 | struct btrfs_root *root, |
| 2351 | struct extent_buffer *node, | 2368 | struct extent_buffer *node, |
| 2352 | struct extent_buffer *parent); | 2369 | struct extent_buffer *parent); |
| 2370 | static inline int btrfs_fs_closing(struct btrfs_fs_info *fs_info) | ||
| 2371 | { | ||
| 2372 | /* | ||
| 2373 | * Get synced with close_ctree() | ||
| 2374 | */ | ||
| 2375 | smp_mb(); | ||
| 2376 | return fs_info->closing; | ||
| 2377 | } | ||
| 2378 | |||
| 2353 | /* root-item.c */ | 2379 | /* root-item.c */ |
| 2354 | int btrfs_find_root_ref(struct btrfs_root *tree_root, | 2380 | int btrfs_find_root_ref(struct btrfs_root *tree_root, |
| 2355 | struct btrfs_path *path, | 2381 | struct btrfs_path *path, |
| @@ -2512,8 +2538,7 @@ int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end, | |||
| 2512 | int btrfs_writepages(struct address_space *mapping, | 2538 | int btrfs_writepages(struct address_space *mapping, |
| 2513 | struct writeback_control *wbc); | 2539 | struct writeback_control *wbc); |
| 2514 | int btrfs_create_subvol_root(struct btrfs_trans_handle *trans, | 2540 | int btrfs_create_subvol_root(struct btrfs_trans_handle *trans, |
| 2515 | struct btrfs_root *new_root, | 2541 | struct btrfs_root *new_root, u64 new_dirid); |
| 2516 | u64 new_dirid, u64 alloc_hint); | ||
| 2517 | int btrfs_merge_bio_hook(struct page *page, unsigned long offset, | 2542 | int btrfs_merge_bio_hook(struct page *page, unsigned long offset, |
| 2518 | size_t size, struct bio *bio, unsigned long bio_flags); | 2543 | size_t size, struct bio *bio, unsigned long bio_flags); |
| 2519 | 2544 | ||
diff --git a/fs/btrfs/delayed-inode.c b/fs/btrfs/delayed-inode.c index 01e29503a54b..f1cbd028f7b3 100644 --- a/fs/btrfs/delayed-inode.c +++ b/fs/btrfs/delayed-inode.c | |||
| @@ -297,7 +297,6 @@ struct btrfs_delayed_item *btrfs_alloc_delayed_item(u32 data_len) | |||
| 297 | item->data_len = data_len; | 297 | item->data_len = data_len; |
| 298 | item->ins_or_del = 0; | 298 | item->ins_or_del = 0; |
| 299 | item->bytes_reserved = 0; | 299 | item->bytes_reserved = 0; |
| 300 | item->block_rsv = NULL; | ||
| 301 | item->delayed_node = NULL; | 300 | item->delayed_node = NULL; |
| 302 | atomic_set(&item->refs, 1); | 301 | atomic_set(&item->refs, 1); |
| 303 | } | 302 | } |
| @@ -593,10 +592,8 @@ static int btrfs_delayed_item_reserve_metadata(struct btrfs_trans_handle *trans, | |||
| 593 | 592 | ||
| 594 | num_bytes = btrfs_calc_trans_metadata_size(root, 1); | 593 | num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 595 | ret = btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes); | 594 | ret = btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes); |
| 596 | if (!ret) { | 595 | if (!ret) |
| 597 | item->bytes_reserved = num_bytes; | 596 | item->bytes_reserved = num_bytes; |
| 598 | item->block_rsv = dst_rsv; | ||
| 599 | } | ||
| 600 | 597 | ||
| 601 | return ret; | 598 | return ret; |
| 602 | } | 599 | } |
| @@ -604,10 +601,13 @@ static int btrfs_delayed_item_reserve_metadata(struct btrfs_trans_handle *trans, | |||
| 604 | static void btrfs_delayed_item_release_metadata(struct btrfs_root *root, | 601 | static void btrfs_delayed_item_release_metadata(struct btrfs_root *root, |
| 605 | struct btrfs_delayed_item *item) | 602 | struct btrfs_delayed_item *item) |
| 606 | { | 603 | { |
| 604 | struct btrfs_block_rsv *rsv; | ||
| 605 | |||
| 607 | if (!item->bytes_reserved) | 606 | if (!item->bytes_reserved) |
| 608 | return; | 607 | return; |
| 609 | 608 | ||
| 610 | btrfs_block_rsv_release(root, item->block_rsv, | 609 | rsv = &root->fs_info->global_block_rsv; |
| 610 | btrfs_block_rsv_release(root, rsv, | ||
| 611 | item->bytes_reserved); | 611 | item->bytes_reserved); |
| 612 | } | 612 | } |
| 613 | 613 | ||
| @@ -678,6 +678,7 @@ static int btrfs_batch_insert_items(struct btrfs_trans_handle *trans, | |||
| 678 | INIT_LIST_HEAD(&head); | 678 | INIT_LIST_HEAD(&head); |
| 679 | 679 | ||
| 680 | next = item; | 680 | next = item; |
| 681 | nitems = 0; | ||
| 681 | 682 | ||
| 682 | /* | 683 | /* |
| 683 | * count the number of the continuous items that we can insert in batch | 684 | * count the number of the continuous items that we can insert in batch |
| @@ -1013,6 +1014,7 @@ int btrfs_run_delayed_items(struct btrfs_trans_handle *trans, | |||
| 1013 | struct btrfs_delayed_root *delayed_root; | 1014 | struct btrfs_delayed_root *delayed_root; |
| 1014 | struct btrfs_delayed_node *curr_node, *prev_node; | 1015 | struct btrfs_delayed_node *curr_node, *prev_node; |
| 1015 | struct btrfs_path *path; | 1016 | struct btrfs_path *path; |
| 1017 | struct btrfs_block_rsv *block_rsv; | ||
| 1016 | int ret = 0; | 1018 | int ret = 0; |
| 1017 | 1019 | ||
| 1018 | path = btrfs_alloc_path(); | 1020 | path = btrfs_alloc_path(); |
| @@ -1020,6 +1022,9 @@ int btrfs_run_delayed_items(struct btrfs_trans_handle *trans, | |||
| 1020 | return -ENOMEM; | 1022 | return -ENOMEM; |
| 1021 | path->leave_spinning = 1; | 1023 | path->leave_spinning = 1; |
| 1022 | 1024 | ||
| 1025 | block_rsv = trans->block_rsv; | ||
| 1026 | trans->block_rsv = &root->fs_info->global_block_rsv; | ||
| 1027 | |||
| 1023 | delayed_root = btrfs_get_delayed_root(root); | 1028 | delayed_root = btrfs_get_delayed_root(root); |
| 1024 | 1029 | ||
| 1025 | curr_node = btrfs_first_delayed_node(delayed_root); | 1030 | curr_node = btrfs_first_delayed_node(delayed_root); |
| @@ -1044,6 +1049,7 @@ int btrfs_run_delayed_items(struct btrfs_trans_handle *trans, | |||
| 1044 | } | 1049 | } |
| 1045 | 1050 | ||
| 1046 | btrfs_free_path(path); | 1051 | btrfs_free_path(path); |
| 1052 | trans->block_rsv = block_rsv; | ||
| 1047 | return ret; | 1053 | return ret; |
| 1048 | } | 1054 | } |
| 1049 | 1055 | ||
| @@ -1051,6 +1057,7 @@ static int __btrfs_commit_inode_delayed_items(struct btrfs_trans_handle *trans, | |||
| 1051 | struct btrfs_delayed_node *node) | 1057 | struct btrfs_delayed_node *node) |
| 1052 | { | 1058 | { |
| 1053 | struct btrfs_path *path; | 1059 | struct btrfs_path *path; |
| 1060 | struct btrfs_block_rsv *block_rsv; | ||
| 1054 | int ret; | 1061 | int ret; |
| 1055 | 1062 | ||
| 1056 | path = btrfs_alloc_path(); | 1063 | path = btrfs_alloc_path(); |
| @@ -1058,6 +1065,9 @@ static int __btrfs_commit_inode_delayed_items(struct btrfs_trans_handle *trans, | |||
| 1058 | return -ENOMEM; | 1065 | return -ENOMEM; |
| 1059 | path->leave_spinning = 1; | 1066 | path->leave_spinning = 1; |
| 1060 | 1067 | ||
| 1068 | block_rsv = trans->block_rsv; | ||
| 1069 | trans->block_rsv = &node->root->fs_info->global_block_rsv; | ||
| 1070 | |||
| 1061 | ret = btrfs_insert_delayed_items(trans, path, node->root, node); | 1071 | ret = btrfs_insert_delayed_items(trans, path, node->root, node); |
| 1062 | if (!ret) | 1072 | if (!ret) |
| 1063 | ret = btrfs_delete_delayed_items(trans, path, node->root, node); | 1073 | ret = btrfs_delete_delayed_items(trans, path, node->root, node); |
| @@ -1065,6 +1075,7 @@ static int __btrfs_commit_inode_delayed_items(struct btrfs_trans_handle *trans, | |||
| 1065 | ret = btrfs_update_delayed_inode(trans, node->root, path, node); | 1075 | ret = btrfs_update_delayed_inode(trans, node->root, path, node); |
| 1066 | btrfs_free_path(path); | 1076 | btrfs_free_path(path); |
| 1067 | 1077 | ||
| 1078 | trans->block_rsv = block_rsv; | ||
| 1068 | return ret; | 1079 | return ret; |
| 1069 | } | 1080 | } |
| 1070 | 1081 | ||
| @@ -1115,6 +1126,7 @@ static void btrfs_async_run_delayed_node_done(struct btrfs_work *work) | |||
| 1115 | struct btrfs_path *path; | 1126 | struct btrfs_path *path; |
| 1116 | struct btrfs_delayed_node *delayed_node = NULL; | 1127 | struct btrfs_delayed_node *delayed_node = NULL; |
| 1117 | struct btrfs_root *root; | 1128 | struct btrfs_root *root; |
| 1129 | struct btrfs_block_rsv *block_rsv; | ||
| 1118 | unsigned long nr = 0; | 1130 | unsigned long nr = 0; |
| 1119 | int need_requeue = 0; | 1131 | int need_requeue = 0; |
| 1120 | int ret; | 1132 | int ret; |
| @@ -1129,10 +1141,13 @@ static void btrfs_async_run_delayed_node_done(struct btrfs_work *work) | |||
| 1129 | delayed_node = async_node->delayed_node; | 1141 | delayed_node = async_node->delayed_node; |
| 1130 | root = delayed_node->root; | 1142 | root = delayed_node->root; |
| 1131 | 1143 | ||
| 1132 | trans = btrfs_join_transaction(root, 0); | 1144 | trans = btrfs_join_transaction(root); |
| 1133 | if (IS_ERR(trans)) | 1145 | if (IS_ERR(trans)) |
| 1134 | goto free_path; | 1146 | goto free_path; |
| 1135 | 1147 | ||
| 1148 | block_rsv = trans->block_rsv; | ||
| 1149 | trans->block_rsv = &root->fs_info->global_block_rsv; | ||
| 1150 | |||
| 1136 | ret = btrfs_insert_delayed_items(trans, path, root, delayed_node); | 1151 | ret = btrfs_insert_delayed_items(trans, path, root, delayed_node); |
| 1137 | if (!ret) | 1152 | if (!ret) |
| 1138 | ret = btrfs_delete_delayed_items(trans, path, root, | 1153 | ret = btrfs_delete_delayed_items(trans, path, root, |
| @@ -1175,6 +1190,7 @@ static void btrfs_async_run_delayed_node_done(struct btrfs_work *work) | |||
| 1175 | 1190 | ||
| 1176 | nr = trans->blocks_used; | 1191 | nr = trans->blocks_used; |
| 1177 | 1192 | ||
| 1193 | trans->block_rsv = block_rsv; | ||
| 1178 | btrfs_end_transaction_dmeta(trans, root); | 1194 | btrfs_end_transaction_dmeta(trans, root); |
| 1179 | __btrfs_btree_balance_dirty(root, nr); | 1195 | __btrfs_btree_balance_dirty(root, nr); |
| 1180 | free_path: | 1196 | free_path: |
| @@ -1221,6 +1237,13 @@ again: | |||
| 1221 | return 0; | 1237 | return 0; |
| 1222 | } | 1238 | } |
| 1223 | 1239 | ||
| 1240 | void btrfs_assert_delayed_root_empty(struct btrfs_root *root) | ||
| 1241 | { | ||
| 1242 | struct btrfs_delayed_root *delayed_root; | ||
| 1243 | delayed_root = btrfs_get_delayed_root(root); | ||
| 1244 | WARN_ON(btrfs_first_delayed_node(delayed_root)); | ||
| 1245 | } | ||
| 1246 | |||
| 1224 | void btrfs_balance_delayed_items(struct btrfs_root *root) | 1247 | void btrfs_balance_delayed_items(struct btrfs_root *root) |
| 1225 | { | 1248 | { |
| 1226 | struct btrfs_delayed_root *delayed_root; | 1249 | struct btrfs_delayed_root *delayed_root; |
| @@ -1572,8 +1595,7 @@ static void fill_stack_inode_item(struct btrfs_trans_handle *trans, | |||
| 1572 | btrfs_set_stack_inode_transid(inode_item, trans->transid); | 1595 | btrfs_set_stack_inode_transid(inode_item, trans->transid); |
| 1573 | btrfs_set_stack_inode_rdev(inode_item, inode->i_rdev); | 1596 | btrfs_set_stack_inode_rdev(inode_item, inode->i_rdev); |
| 1574 | btrfs_set_stack_inode_flags(inode_item, BTRFS_I(inode)->flags); | 1597 | btrfs_set_stack_inode_flags(inode_item, BTRFS_I(inode)->flags); |
| 1575 | btrfs_set_stack_inode_block_group(inode_item, | 1598 | btrfs_set_stack_inode_block_group(inode_item, 0); |
| 1576 | BTRFS_I(inode)->block_group); | ||
| 1577 | 1599 | ||
| 1578 | btrfs_set_stack_timespec_sec(btrfs_inode_atime(inode_item), | 1600 | btrfs_set_stack_timespec_sec(btrfs_inode_atime(inode_item), |
| 1579 | inode->i_atime.tv_sec); | 1601 | inode->i_atime.tv_sec); |
| @@ -1595,7 +1617,7 @@ int btrfs_delayed_update_inode(struct btrfs_trans_handle *trans, | |||
| 1595 | struct btrfs_root *root, struct inode *inode) | 1617 | struct btrfs_root *root, struct inode *inode) |
| 1596 | { | 1618 | { |
| 1597 | struct btrfs_delayed_node *delayed_node; | 1619 | struct btrfs_delayed_node *delayed_node; |
| 1598 | int ret; | 1620 | int ret = 0; |
| 1599 | 1621 | ||
| 1600 | delayed_node = btrfs_get_or_create_delayed_node(inode); | 1622 | delayed_node = btrfs_get_or_create_delayed_node(inode); |
| 1601 | if (IS_ERR(delayed_node)) | 1623 | if (IS_ERR(delayed_node)) |
diff --git a/fs/btrfs/delayed-inode.h b/fs/btrfs/delayed-inode.h index eb7d240aa648..d1a6a2915c66 100644 --- a/fs/btrfs/delayed-inode.h +++ b/fs/btrfs/delayed-inode.h | |||
| @@ -75,7 +75,6 @@ struct btrfs_delayed_item { | |||
| 75 | struct list_head tree_list; /* used for batch insert/delete items */ | 75 | struct list_head tree_list; /* used for batch insert/delete items */ |
| 76 | struct list_head readdir_list; /* used for readdir items */ | 76 | struct list_head readdir_list; /* used for readdir items */ |
| 77 | u64 bytes_reserved; | 77 | u64 bytes_reserved; |
| 78 | struct btrfs_block_rsv *block_rsv; | ||
| 79 | struct btrfs_delayed_node *delayed_node; | 78 | struct btrfs_delayed_node *delayed_node; |
| 80 | atomic_t refs; | 79 | atomic_t refs; |
| 81 | int ins_or_del; | 80 | int ins_or_del; |
| @@ -138,4 +137,8 @@ int btrfs_readdir_delayed_dir_index(struct file *filp, void *dirent, | |||
| 138 | /* for init */ | 137 | /* for init */ |
| 139 | int __init btrfs_delayed_inode_init(void); | 138 | int __init btrfs_delayed_inode_init(void); |
| 140 | void btrfs_delayed_inode_exit(void); | 139 | void btrfs_delayed_inode_exit(void); |
| 140 | |||
| 141 | /* for debugging */ | ||
| 142 | void btrfs_assert_delayed_root_empty(struct btrfs_root *root); | ||
| 143 | |||
| 141 | #endif | 144 | #endif |
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 98b6a71decba..1ac8db5dc0a3 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c | |||
| @@ -1044,7 +1044,6 @@ static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize, | |||
| 1044 | root->last_trans = 0; | 1044 | root->last_trans = 0; |
| 1045 | root->highest_objectid = 0; | 1045 | root->highest_objectid = 0; |
| 1046 | root->name = NULL; | 1046 | root->name = NULL; |
| 1047 | root->in_sysfs = 0; | ||
| 1048 | root->inode_tree = RB_ROOT; | 1047 | root->inode_tree = RB_ROOT; |
| 1049 | INIT_RADIX_TREE(&root->delayed_nodes_tree, GFP_ATOMIC); | 1048 | INIT_RADIX_TREE(&root->delayed_nodes_tree, GFP_ATOMIC); |
| 1050 | root->block_rsv = NULL; | 1049 | root->block_rsv = NULL; |
| @@ -1300,19 +1299,21 @@ again: | |||
| 1300 | return root; | 1299 | return root; |
| 1301 | 1300 | ||
| 1302 | root->free_ino_ctl = kzalloc(sizeof(*root->free_ino_ctl), GFP_NOFS); | 1301 | root->free_ino_ctl = kzalloc(sizeof(*root->free_ino_ctl), GFP_NOFS); |
| 1303 | if (!root->free_ino_ctl) | ||
| 1304 | goto fail; | ||
| 1305 | root->free_ino_pinned = kzalloc(sizeof(*root->free_ino_pinned), | 1302 | root->free_ino_pinned = kzalloc(sizeof(*root->free_ino_pinned), |
| 1306 | GFP_NOFS); | 1303 | GFP_NOFS); |
| 1307 | if (!root->free_ino_pinned) | 1304 | if (!root->free_ino_pinned || !root->free_ino_ctl) { |
| 1305 | ret = -ENOMEM; | ||
| 1308 | goto fail; | 1306 | goto fail; |
| 1307 | } | ||
| 1309 | 1308 | ||
| 1310 | btrfs_init_free_ino_ctl(root); | 1309 | btrfs_init_free_ino_ctl(root); |
| 1311 | mutex_init(&root->fs_commit_mutex); | 1310 | mutex_init(&root->fs_commit_mutex); |
| 1312 | spin_lock_init(&root->cache_lock); | 1311 | spin_lock_init(&root->cache_lock); |
| 1313 | init_waitqueue_head(&root->cache_wait); | 1312 | init_waitqueue_head(&root->cache_wait); |
| 1314 | 1313 | ||
| 1315 | set_anon_super(&root->anon_super, NULL); | 1314 | ret = set_anon_super(&root->anon_super, NULL); |
| 1315 | if (ret) | ||
| 1316 | goto fail; | ||
| 1316 | 1317 | ||
| 1317 | if (btrfs_root_refs(&root->root_item) == 0) { | 1318 | if (btrfs_root_refs(&root->root_item) == 0) { |
| 1318 | ret = -ENOENT; | 1319 | ret = -ENOENT; |
| @@ -1505,24 +1506,24 @@ static int transaction_kthread(void *arg) | |||
| 1505 | vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE); | 1506 | vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE); |
| 1506 | mutex_lock(&root->fs_info->transaction_kthread_mutex); | 1507 | mutex_lock(&root->fs_info->transaction_kthread_mutex); |
| 1507 | 1508 | ||
| 1508 | spin_lock(&root->fs_info->new_trans_lock); | 1509 | spin_lock(&root->fs_info->trans_lock); |
| 1509 | cur = root->fs_info->running_transaction; | 1510 | cur = root->fs_info->running_transaction; |
| 1510 | if (!cur) { | 1511 | if (!cur) { |
| 1511 | spin_unlock(&root->fs_info->new_trans_lock); | 1512 | spin_unlock(&root->fs_info->trans_lock); |
| 1512 | goto sleep; | 1513 | goto sleep; |
| 1513 | } | 1514 | } |
| 1514 | 1515 | ||
| 1515 | now = get_seconds(); | 1516 | now = get_seconds(); |
| 1516 | if (!cur->blocked && | 1517 | if (!cur->blocked && |
| 1517 | (now < cur->start_time || now - cur->start_time < 30)) { | 1518 | (now < cur->start_time || now - cur->start_time < 30)) { |
| 1518 | spin_unlock(&root->fs_info->new_trans_lock); | 1519 | spin_unlock(&root->fs_info->trans_lock); |
| 1519 | delay = HZ * 5; | 1520 | delay = HZ * 5; |
| 1520 | goto sleep; | 1521 | goto sleep; |
| 1521 | } | 1522 | } |
| 1522 | transid = cur->transid; | 1523 | transid = cur->transid; |
| 1523 | spin_unlock(&root->fs_info->new_trans_lock); | 1524 | spin_unlock(&root->fs_info->trans_lock); |
| 1524 | 1525 | ||
| 1525 | trans = btrfs_join_transaction(root, 1); | 1526 | trans = btrfs_join_transaction(root); |
| 1526 | BUG_ON(IS_ERR(trans)); | 1527 | BUG_ON(IS_ERR(trans)); |
| 1527 | if (transid == trans->transid) { | 1528 | if (transid == trans->transid) { |
| 1528 | ret = btrfs_commit_transaction(trans, root); | 1529 | ret = btrfs_commit_transaction(trans, root); |
| @@ -1613,11 +1614,12 @@ struct btrfs_root *open_ctree(struct super_block *sb, | |||
| 1613 | INIT_LIST_HEAD(&fs_info->ordered_operations); | 1614 | INIT_LIST_HEAD(&fs_info->ordered_operations); |
| 1614 | INIT_LIST_HEAD(&fs_info->caching_block_groups); | 1615 | INIT_LIST_HEAD(&fs_info->caching_block_groups); |
| 1615 | spin_lock_init(&fs_info->delalloc_lock); | 1616 | spin_lock_init(&fs_info->delalloc_lock); |
| 1616 | spin_lock_init(&fs_info->new_trans_lock); | 1617 | spin_lock_init(&fs_info->trans_lock); |
| 1617 | spin_lock_init(&fs_info->ref_cache_lock); | 1618 | spin_lock_init(&fs_info->ref_cache_lock); |
| 1618 | spin_lock_init(&fs_info->fs_roots_radix_lock); | 1619 | spin_lock_init(&fs_info->fs_roots_radix_lock); |
| 1619 | spin_lock_init(&fs_info->delayed_iput_lock); | 1620 | spin_lock_init(&fs_info->delayed_iput_lock); |
| 1620 | spin_lock_init(&fs_info->defrag_inodes_lock); | 1621 | spin_lock_init(&fs_info->defrag_inodes_lock); |
| 1622 | mutex_init(&fs_info->reloc_mutex); | ||
| 1621 | 1623 | ||
| 1622 | init_completion(&fs_info->kobj_unregister); | 1624 | init_completion(&fs_info->kobj_unregister); |
| 1623 | fs_info->tree_root = tree_root; | 1625 | fs_info->tree_root = tree_root; |
| @@ -1645,6 +1647,7 @@ struct btrfs_root *open_ctree(struct super_block *sb, | |||
| 1645 | fs_info->max_inline = 8192 * 1024; | 1647 | fs_info->max_inline = 8192 * 1024; |
| 1646 | fs_info->metadata_ratio = 0; | 1648 | fs_info->metadata_ratio = 0; |
| 1647 | fs_info->defrag_inodes = RB_ROOT; | 1649 | fs_info->defrag_inodes = RB_ROOT; |
| 1650 | fs_info->trans_no_join = 0; | ||
| 1648 | 1651 | ||
| 1649 | fs_info->thread_pool_size = min_t(unsigned long, | 1652 | fs_info->thread_pool_size = min_t(unsigned long, |
| 1650 | num_online_cpus() + 2, 8); | 1653 | num_online_cpus() + 2, 8); |
| @@ -1667,8 +1670,6 @@ struct btrfs_root *open_ctree(struct super_block *sb, | |||
| 1667 | init_waitqueue_head(&fs_info->scrub_pause_wait); | 1670 | init_waitqueue_head(&fs_info->scrub_pause_wait); |
| 1668 | init_rwsem(&fs_info->scrub_super_lock); | 1671 | init_rwsem(&fs_info->scrub_super_lock); |
| 1669 | fs_info->scrub_workers_refcnt = 0; | 1672 | fs_info->scrub_workers_refcnt = 0; |
| 1670 | btrfs_init_workers(&fs_info->scrub_workers, "scrub", | ||
| 1671 | fs_info->thread_pool_size, &fs_info->generic_worker); | ||
| 1672 | 1673 | ||
| 1673 | sb->s_blocksize = 4096; | 1674 | sb->s_blocksize = 4096; |
| 1674 | sb->s_blocksize_bits = blksize_bits(4096); | 1675 | sb->s_blocksize_bits = blksize_bits(4096); |
| @@ -1709,7 +1710,6 @@ struct btrfs_root *open_ctree(struct super_block *sb, | |||
| 1709 | fs_info->do_barriers = 1; | 1710 | fs_info->do_barriers = 1; |
| 1710 | 1711 | ||
| 1711 | 1712 | ||
| 1712 | mutex_init(&fs_info->trans_mutex); | ||
| 1713 | mutex_init(&fs_info->ordered_operations_mutex); | 1713 | mutex_init(&fs_info->ordered_operations_mutex); |
| 1714 | mutex_init(&fs_info->tree_log_mutex); | 1714 | mutex_init(&fs_info->tree_log_mutex); |
| 1715 | mutex_init(&fs_info->chunk_mutex); | 1715 | mutex_init(&fs_info->chunk_mutex); |
| @@ -2479,13 +2479,13 @@ int btrfs_commit_super(struct btrfs_root *root) | |||
| 2479 | down_write(&root->fs_info->cleanup_work_sem); | 2479 | down_write(&root->fs_info->cleanup_work_sem); |
| 2480 | up_write(&root->fs_info->cleanup_work_sem); | 2480 | up_write(&root->fs_info->cleanup_work_sem); |
| 2481 | 2481 | ||
| 2482 | trans = btrfs_join_transaction(root, 1); | 2482 | trans = btrfs_join_transaction(root); |
| 2483 | if (IS_ERR(trans)) | 2483 | if (IS_ERR(trans)) |
| 2484 | return PTR_ERR(trans); | 2484 | return PTR_ERR(trans); |
| 2485 | ret = btrfs_commit_transaction(trans, root); | 2485 | ret = btrfs_commit_transaction(trans, root); |
| 2486 | BUG_ON(ret); | 2486 | BUG_ON(ret); |
| 2487 | /* run commit again to drop the original snapshot */ | 2487 | /* run commit again to drop the original snapshot */ |
| 2488 | trans = btrfs_join_transaction(root, 1); | 2488 | trans = btrfs_join_transaction(root); |
| 2489 | if (IS_ERR(trans)) | 2489 | if (IS_ERR(trans)) |
| 2490 | return PTR_ERR(trans); | 2490 | return PTR_ERR(trans); |
| 2491 | btrfs_commit_transaction(trans, root); | 2491 | btrfs_commit_transaction(trans, root); |
| @@ -2911,9 +2911,8 @@ static int btrfs_destroy_delalloc_inodes(struct btrfs_root *root) | |||
| 2911 | 2911 | ||
| 2912 | INIT_LIST_HEAD(&splice); | 2912 | INIT_LIST_HEAD(&splice); |
| 2913 | 2913 | ||
| 2914 | list_splice_init(&root->fs_info->delalloc_inodes, &splice); | ||
| 2915 | |||
| 2916 | spin_lock(&root->fs_info->delalloc_lock); | 2914 | spin_lock(&root->fs_info->delalloc_lock); |
| 2915 | list_splice_init(&root->fs_info->delalloc_inodes, &splice); | ||
| 2917 | 2916 | ||
| 2918 | while (!list_empty(&splice)) { | 2917 | while (!list_empty(&splice)) { |
| 2919 | btrfs_inode = list_entry(splice.next, struct btrfs_inode, | 2918 | btrfs_inode = list_entry(splice.next, struct btrfs_inode, |
| @@ -3024,10 +3023,13 @@ static int btrfs_cleanup_transaction(struct btrfs_root *root) | |||
| 3024 | 3023 | ||
| 3025 | WARN_ON(1); | 3024 | WARN_ON(1); |
| 3026 | 3025 | ||
| 3027 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 3028 | mutex_lock(&root->fs_info->transaction_kthread_mutex); | 3026 | mutex_lock(&root->fs_info->transaction_kthread_mutex); |
| 3029 | 3027 | ||
| 3028 | spin_lock(&root->fs_info->trans_lock); | ||
| 3030 | list_splice_init(&root->fs_info->trans_list, &list); | 3029 | list_splice_init(&root->fs_info->trans_list, &list); |
| 3030 | root->fs_info->trans_no_join = 1; | ||
| 3031 | spin_unlock(&root->fs_info->trans_lock); | ||
| 3032 | |||
| 3031 | while (!list_empty(&list)) { | 3033 | while (!list_empty(&list)) { |
| 3032 | t = list_entry(list.next, struct btrfs_transaction, list); | 3034 | t = list_entry(list.next, struct btrfs_transaction, list); |
| 3033 | if (!t) | 3035 | if (!t) |
| @@ -3052,23 +3054,18 @@ static int btrfs_cleanup_transaction(struct btrfs_root *root) | |||
| 3052 | t->blocked = 0; | 3054 | t->blocked = 0; |
| 3053 | if (waitqueue_active(&root->fs_info->transaction_wait)) | 3055 | if (waitqueue_active(&root->fs_info->transaction_wait)) |
| 3054 | wake_up(&root->fs_info->transaction_wait); | 3056 | wake_up(&root->fs_info->transaction_wait); |
| 3055 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 3056 | 3057 | ||
| 3057 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 3058 | t->commit_done = 1; | 3058 | t->commit_done = 1; |
| 3059 | if (waitqueue_active(&t->commit_wait)) | 3059 | if (waitqueue_active(&t->commit_wait)) |
| 3060 | wake_up(&t->commit_wait); | 3060 | wake_up(&t->commit_wait); |
| 3061 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 3062 | |||
| 3063 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 3064 | 3061 | ||
| 3065 | btrfs_destroy_pending_snapshots(t); | 3062 | btrfs_destroy_pending_snapshots(t); |
| 3066 | 3063 | ||
| 3067 | btrfs_destroy_delalloc_inodes(root); | 3064 | btrfs_destroy_delalloc_inodes(root); |
| 3068 | 3065 | ||
| 3069 | spin_lock(&root->fs_info->new_trans_lock); | 3066 | spin_lock(&root->fs_info->trans_lock); |
| 3070 | root->fs_info->running_transaction = NULL; | 3067 | root->fs_info->running_transaction = NULL; |
| 3071 | spin_unlock(&root->fs_info->new_trans_lock); | 3068 | spin_unlock(&root->fs_info->trans_lock); |
| 3072 | 3069 | ||
| 3073 | btrfs_destroy_marked_extents(root, &t->dirty_pages, | 3070 | btrfs_destroy_marked_extents(root, &t->dirty_pages, |
| 3074 | EXTENT_DIRTY); | 3071 | EXTENT_DIRTY); |
| @@ -3082,8 +3079,10 @@ static int btrfs_cleanup_transaction(struct btrfs_root *root) | |||
| 3082 | kmem_cache_free(btrfs_transaction_cachep, t); | 3079 | kmem_cache_free(btrfs_transaction_cachep, t); |
| 3083 | } | 3080 | } |
| 3084 | 3081 | ||
| 3082 | spin_lock(&root->fs_info->trans_lock); | ||
| 3083 | root->fs_info->trans_no_join = 0; | ||
| 3084 | spin_unlock(&root->fs_info->trans_lock); | ||
| 3085 | mutex_unlock(&root->fs_info->transaction_kthread_mutex); | 3085 | mutex_unlock(&root->fs_info->transaction_kthread_mutex); |
| 3086 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 3087 | 3086 | ||
| 3088 | return 0; | 3087 | return 0; |
| 3089 | } | 3088 | } |
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index 169bd62ce776..1f61bf5b4960 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c | |||
| @@ -348,7 +348,7 @@ static int caching_kthread(void *data) | |||
| 348 | */ | 348 | */ |
| 349 | path->skip_locking = 1; | 349 | path->skip_locking = 1; |
| 350 | path->search_commit_root = 1; | 350 | path->search_commit_root = 1; |
| 351 | path->reada = 2; | 351 | path->reada = 1; |
| 352 | 352 | ||
| 353 | key.objectid = last; | 353 | key.objectid = last; |
| 354 | key.offset = 0; | 354 | key.offset = 0; |
| @@ -366,8 +366,7 @@ again: | |||
| 366 | nritems = btrfs_header_nritems(leaf); | 366 | nritems = btrfs_header_nritems(leaf); |
| 367 | 367 | ||
| 368 | while (1) { | 368 | while (1) { |
| 369 | smp_mb(); | 369 | if (btrfs_fs_closing(fs_info) > 1) { |
| 370 | if (fs_info->closing > 1) { | ||
| 371 | last = (u64)-1; | 370 | last = (u64)-1; |
| 372 | break; | 371 | break; |
| 373 | } | 372 | } |
| @@ -379,15 +378,18 @@ again: | |||
| 379 | if (ret) | 378 | if (ret) |
| 380 | break; | 379 | break; |
| 381 | 380 | ||
| 382 | caching_ctl->progress = last; | 381 | if (need_resched() || |
| 383 | btrfs_release_path(path); | 382 | btrfs_next_leaf(extent_root, path)) { |
| 384 | up_read(&fs_info->extent_commit_sem); | 383 | caching_ctl->progress = last; |
| 385 | mutex_unlock(&caching_ctl->mutex); | 384 | btrfs_release_path(path); |
| 386 | if (btrfs_transaction_in_commit(fs_info)) | 385 | up_read(&fs_info->extent_commit_sem); |
| 387 | schedule_timeout(1); | 386 | mutex_unlock(&caching_ctl->mutex); |
| 388 | else | ||
| 389 | cond_resched(); | 387 | cond_resched(); |
| 390 | goto again; | 388 | goto again; |
| 389 | } | ||
| 390 | leaf = path->nodes[0]; | ||
| 391 | nritems = btrfs_header_nritems(leaf); | ||
| 392 | continue; | ||
| 391 | } | 393 | } |
| 392 | 394 | ||
| 393 | if (key.objectid < block_group->key.objectid) { | 395 | if (key.objectid < block_group->key.objectid) { |
| @@ -3065,7 +3067,7 @@ again: | |||
| 3065 | spin_unlock(&data_sinfo->lock); | 3067 | spin_unlock(&data_sinfo->lock); |
| 3066 | alloc: | 3068 | alloc: |
| 3067 | alloc_target = btrfs_get_alloc_profile(root, 1); | 3069 | alloc_target = btrfs_get_alloc_profile(root, 1); |
| 3068 | trans = btrfs_join_transaction(root, 1); | 3070 | trans = btrfs_join_transaction(root); |
| 3069 | if (IS_ERR(trans)) | 3071 | if (IS_ERR(trans)) |
| 3070 | return PTR_ERR(trans); | 3072 | return PTR_ERR(trans); |
| 3071 | 3073 | ||
| @@ -3087,13 +3089,21 @@ alloc: | |||
| 3087 | } | 3089 | } |
| 3088 | goto again; | 3090 | goto again; |
| 3089 | } | 3091 | } |
| 3092 | |||
| 3093 | /* | ||
| 3094 | * If we have less pinned bytes than we want to allocate then | ||
| 3095 | * don't bother committing the transaction, it won't help us. | ||
| 3096 | */ | ||
| 3097 | if (data_sinfo->bytes_pinned < bytes) | ||
| 3098 | committed = 1; | ||
| 3090 | spin_unlock(&data_sinfo->lock); | 3099 | spin_unlock(&data_sinfo->lock); |
| 3091 | 3100 | ||
| 3092 | /* commit the current transaction and try again */ | 3101 | /* commit the current transaction and try again */ |
| 3093 | commit_trans: | 3102 | commit_trans: |
| 3094 | if (!committed && !root->fs_info->open_ioctl_trans) { | 3103 | if (!committed && |
| 3104 | !atomic_read(&root->fs_info->open_ioctl_trans)) { | ||
| 3095 | committed = 1; | 3105 | committed = 1; |
| 3096 | trans = btrfs_join_transaction(root, 1); | 3106 | trans = btrfs_join_transaction(root); |
| 3097 | if (IS_ERR(trans)) | 3107 | if (IS_ERR(trans)) |
| 3098 | return PTR_ERR(trans); | 3108 | return PTR_ERR(trans); |
| 3099 | ret = btrfs_commit_transaction(trans, root); | 3109 | ret = btrfs_commit_transaction(trans, root); |
| @@ -3304,10 +3314,6 @@ static int shrink_delalloc(struct btrfs_trans_handle *trans, | |||
| 3304 | if (reserved == 0) | 3314 | if (reserved == 0) |
| 3305 | return 0; | 3315 | return 0; |
| 3306 | 3316 | ||
| 3307 | /* nothing to shrink - nothing to reclaim */ | ||
| 3308 | if (root->fs_info->delalloc_bytes == 0) | ||
| 3309 | return 0; | ||
| 3310 | |||
| 3311 | max_reclaim = min(reserved, to_reclaim); | 3317 | max_reclaim = min(reserved, to_reclaim); |
| 3312 | 3318 | ||
| 3313 | while (loops < 1024) { | 3319 | while (loops < 1024) { |
| @@ -3472,7 +3478,7 @@ again: | |||
| 3472 | goto out; | 3478 | goto out; |
| 3473 | 3479 | ||
| 3474 | ret = -ENOSPC; | 3480 | ret = -ENOSPC; |
| 3475 | trans = btrfs_join_transaction(root, 1); | 3481 | trans = btrfs_join_transaction(root); |
| 3476 | if (IS_ERR(trans)) | 3482 | if (IS_ERR(trans)) |
| 3477 | goto out; | 3483 | goto out; |
| 3478 | ret = btrfs_commit_transaction(trans, root); | 3484 | ret = btrfs_commit_transaction(trans, root); |
| @@ -3699,7 +3705,7 @@ int btrfs_block_rsv_check(struct btrfs_trans_handle *trans, | |||
| 3699 | if (trans) | 3705 | if (trans) |
| 3700 | return -EAGAIN; | 3706 | return -EAGAIN; |
| 3701 | 3707 | ||
| 3702 | trans = btrfs_join_transaction(root, 1); | 3708 | trans = btrfs_join_transaction(root); |
| 3703 | BUG_ON(IS_ERR(trans)); | 3709 | BUG_ON(IS_ERR(trans)); |
| 3704 | ret = btrfs_commit_transaction(trans, root); | 3710 | ret = btrfs_commit_transaction(trans, root); |
| 3705 | return 0; | 3711 | return 0; |
| @@ -3837,6 +3843,37 @@ static void release_global_block_rsv(struct btrfs_fs_info *fs_info) | |||
| 3837 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); | 3843 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
| 3838 | } | 3844 | } |
| 3839 | 3845 | ||
| 3846 | int btrfs_truncate_reserve_metadata(struct btrfs_trans_handle *trans, | ||
| 3847 | struct btrfs_root *root, | ||
| 3848 | struct btrfs_block_rsv *rsv) | ||
| 3849 | { | ||
| 3850 | struct btrfs_block_rsv *trans_rsv = &root->fs_info->trans_block_rsv; | ||
| 3851 | u64 num_bytes; | ||
| 3852 | int ret; | ||
| 3853 | |||
| 3854 | /* | ||
| 3855 | * Truncate should be freeing data, but give us 2 items just in case it | ||
| 3856 | * needs to use some space. We may want to be smarter about this in the | ||
| 3857 | * future. | ||
| 3858 | */ | ||
| 3859 | num_bytes = btrfs_calc_trans_metadata_size(root, 2); | ||
| 3860 | |||
| 3861 | /* We already have enough bytes, just return */ | ||
| 3862 | if (rsv->reserved >= num_bytes) | ||
| 3863 | return 0; | ||
| 3864 | |||
| 3865 | num_bytes -= rsv->reserved; | ||
| 3866 | |||
| 3867 | /* | ||
| 3868 | * You should have reserved enough space before hand to do this, so this | ||
| 3869 | * should not fail. | ||
| 3870 | */ | ||
| 3871 | ret = block_rsv_migrate_bytes(trans_rsv, rsv, num_bytes); | ||
| 3872 | BUG_ON(ret); | ||
| 3873 | |||
| 3874 | return 0; | ||
| 3875 | } | ||
| 3876 | |||
| 3840 | int btrfs_trans_reserve_metadata(struct btrfs_trans_handle *trans, | 3877 | int btrfs_trans_reserve_metadata(struct btrfs_trans_handle *trans, |
| 3841 | struct btrfs_root *root, | 3878 | struct btrfs_root *root, |
| 3842 | int num_items) | 3879 | int num_items) |
| @@ -3877,23 +3914,18 @@ int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, | |||
| 3877 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; | 3914 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 3878 | 3915 | ||
| 3879 | /* | 3916 | /* |
| 3880 | * one for deleting orphan item, one for updating inode and | 3917 | * We need to hold space in order to delete our orphan item once we've |
| 3881 | * two for calling btrfs_truncate_inode_items. | 3918 | * added it, so this takes the reservation so we can release it later |
| 3882 | * | 3919 | * when we are truly done with the orphan item. |
| 3883 | * btrfs_truncate_inode_items is a delete operation, it frees | ||
| 3884 | * more space than it uses in most cases. So two units of | ||
| 3885 | * metadata space should be enough for calling it many times. | ||
| 3886 | * If all of the metadata space is used, we can commit | ||
| 3887 | * transaction and use space it freed. | ||
| 3888 | */ | 3920 | */ |
| 3889 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 4); | 3921 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 3890 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); | 3922 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 3891 | } | 3923 | } |
| 3892 | 3924 | ||
| 3893 | void btrfs_orphan_release_metadata(struct inode *inode) | 3925 | void btrfs_orphan_release_metadata(struct inode *inode) |
| 3894 | { | 3926 | { |
| 3895 | struct btrfs_root *root = BTRFS_I(inode)->root; | 3927 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 3896 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 4); | 3928 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 3897 | btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes); | 3929 | btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes); |
| 3898 | } | 3930 | } |
| 3899 | 3931 | ||
| @@ -4987,6 +5019,15 @@ have_block_group: | |||
| 4987 | if (unlikely(block_group->ro)) | 5019 | if (unlikely(block_group->ro)) |
| 4988 | goto loop; | 5020 | goto loop; |
| 4989 | 5021 | ||
| 5022 | spin_lock(&block_group->free_space_ctl->tree_lock); | ||
| 5023 | if (cached && | ||
| 5024 | block_group->free_space_ctl->free_space < | ||
| 5025 | num_bytes + empty_size) { | ||
| 5026 | spin_unlock(&block_group->free_space_ctl->tree_lock); | ||
| 5027 | goto loop; | ||
| 5028 | } | ||
| 5029 | spin_unlock(&block_group->free_space_ctl->tree_lock); | ||
| 5030 | |||
| 4990 | /* | 5031 | /* |
| 4991 | * Ok we want to try and use the cluster allocator, so lets look | 5032 | * Ok we want to try and use the cluster allocator, so lets look |
| 4992 | * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will | 5033 | * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will |
| @@ -5150,6 +5191,7 @@ checks: | |||
| 5150 | btrfs_add_free_space(block_group, offset, | 5191 | btrfs_add_free_space(block_group, offset, |
| 5151 | search_start - offset); | 5192 | search_start - offset); |
| 5152 | BUG_ON(offset > search_start); | 5193 | BUG_ON(offset > search_start); |
| 5194 | btrfs_put_block_group(block_group); | ||
| 5153 | break; | 5195 | break; |
| 5154 | loop: | 5196 | loop: |
| 5155 | failed_cluster_refill = false; | 5197 | failed_cluster_refill = false; |
| @@ -5172,9 +5214,7 @@ loop: | |||
| 5172 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try | 5214 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 5173 | * again | 5215 | * again |
| 5174 | */ | 5216 | */ |
| 5175 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE && | 5217 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
| 5176 | (found_uncached_bg || empty_size || empty_cluster || | ||
| 5177 | allowed_chunk_alloc)) { | ||
| 5178 | index = 0; | 5218 | index = 0; |
| 5179 | if (loop == LOOP_FIND_IDEAL && found_uncached_bg) { | 5219 | if (loop == LOOP_FIND_IDEAL && found_uncached_bg) { |
| 5180 | found_uncached_bg = false; | 5220 | found_uncached_bg = false; |
| @@ -5214,42 +5254,39 @@ loop: | |||
| 5214 | goto search; | 5254 | goto search; |
| 5215 | } | 5255 | } |
| 5216 | 5256 | ||
| 5217 | if (loop < LOOP_CACHING_WAIT) { | 5257 | loop++; |
| 5218 | loop++; | ||
| 5219 | goto search; | ||
| 5220 | } | ||
| 5221 | 5258 | ||
| 5222 | if (loop == LOOP_ALLOC_CHUNK) { | 5259 | if (loop == LOOP_ALLOC_CHUNK) { |
| 5223 | empty_size = 0; | 5260 | if (allowed_chunk_alloc) { |
| 5224 | empty_cluster = 0; | 5261 | ret = do_chunk_alloc(trans, root, num_bytes + |
| 5225 | } | 5262 | 2 * 1024 * 1024, data, |
| 5263 | CHUNK_ALLOC_LIMITED); | ||
| 5264 | allowed_chunk_alloc = 0; | ||
| 5265 | if (ret == 1) | ||
| 5266 | done_chunk_alloc = 1; | ||
| 5267 | } else if (!done_chunk_alloc && | ||
| 5268 | space_info->force_alloc == | ||
| 5269 | CHUNK_ALLOC_NO_FORCE) { | ||
| 5270 | space_info->force_alloc = CHUNK_ALLOC_LIMITED; | ||
| 5271 | } | ||
| 5226 | 5272 | ||
| 5227 | if (allowed_chunk_alloc) { | 5273 | /* |
| 5228 | ret = do_chunk_alloc(trans, root, num_bytes + | 5274 | * We didn't allocate a chunk, go ahead and drop the |
| 5229 | 2 * 1024 * 1024, data, | 5275 | * empty size and loop again. |
| 5230 | CHUNK_ALLOC_LIMITED); | 5276 | */ |
| 5231 | allowed_chunk_alloc = 0; | 5277 | if (!done_chunk_alloc) |
| 5232 | done_chunk_alloc = 1; | 5278 | loop = LOOP_NO_EMPTY_SIZE; |
| 5233 | } else if (!done_chunk_alloc && | ||
| 5234 | space_info->force_alloc == CHUNK_ALLOC_NO_FORCE) { | ||
| 5235 | space_info->force_alloc = CHUNK_ALLOC_LIMITED; | ||
| 5236 | } | 5279 | } |
| 5237 | 5280 | ||
| 5238 | if (loop < LOOP_NO_EMPTY_SIZE) { | 5281 | if (loop == LOOP_NO_EMPTY_SIZE) { |
| 5239 | loop++; | 5282 | empty_size = 0; |
| 5240 | goto search; | 5283 | empty_cluster = 0; |
| 5241 | } | 5284 | } |
| 5242 | ret = -ENOSPC; | 5285 | |
| 5286 | goto search; | ||
| 5243 | } else if (!ins->objectid) { | 5287 | } else if (!ins->objectid) { |
| 5244 | ret = -ENOSPC; | 5288 | ret = -ENOSPC; |
| 5245 | } | 5289 | } else if (ins->objectid) { |
| 5246 | |||
| 5247 | /* we found what we needed */ | ||
| 5248 | if (ins->objectid) { | ||
| 5249 | if (!(data & BTRFS_BLOCK_GROUP_DATA)) | ||
| 5250 | trans->block_group = block_group->key.objectid; | ||
| 5251 | |||
| 5252 | btrfs_put_block_group(block_group); | ||
| 5253 | ret = 0; | 5290 | ret = 0; |
| 5254 | } | 5291 | } |
| 5255 | 5292 | ||
| @@ -6526,7 +6563,7 @@ int btrfs_set_block_group_ro(struct btrfs_root *root, | |||
| 6526 | 6563 | ||
| 6527 | BUG_ON(cache->ro); | 6564 | BUG_ON(cache->ro); |
| 6528 | 6565 | ||
| 6529 | trans = btrfs_join_transaction(root, 1); | 6566 | trans = btrfs_join_transaction(root); |
| 6530 | BUG_ON(IS_ERR(trans)); | 6567 | BUG_ON(IS_ERR(trans)); |
| 6531 | 6568 | ||
| 6532 | alloc_flags = update_block_group_flags(root, cache->flags); | 6569 | alloc_flags = update_block_group_flags(root, cache->flags); |
| @@ -6882,6 +6919,7 @@ int btrfs_read_block_groups(struct btrfs_root *root) | |||
| 6882 | path = btrfs_alloc_path(); | 6919 | path = btrfs_alloc_path(); |
| 6883 | if (!path) | 6920 | if (!path) |
| 6884 | return -ENOMEM; | 6921 | return -ENOMEM; |
| 6922 | path->reada = 1; | ||
| 6885 | 6923 | ||
| 6886 | cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy); | 6924 | cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy); |
| 6887 | if (cache_gen != 0 && | 6925 | if (cache_gen != 0 && |
diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index c5d9fbb92bc3..7055d11c1efd 100644 --- a/fs/btrfs/extent_io.c +++ b/fs/btrfs/extent_io.c | |||
| @@ -1476,7 +1476,7 @@ u64 count_range_bits(struct extent_io_tree *tree, | |||
| 1476 | if (total_bytes >= max_bytes) | 1476 | if (total_bytes >= max_bytes) |
| 1477 | break; | 1477 | break; |
| 1478 | if (!found) { | 1478 | if (!found) { |
| 1479 | *start = state->start; | 1479 | *start = max(cur_start, state->start); |
| 1480 | found = 1; | 1480 | found = 1; |
| 1481 | } | 1481 | } |
| 1482 | last = state->end; | 1482 | last = state->end; |
diff --git a/fs/btrfs/extent_io.h b/fs/btrfs/extent_io.h index 4e8445a4757c..a11a92ee2d30 100644 --- a/fs/btrfs/extent_io.h +++ b/fs/btrfs/extent_io.h | |||
| @@ -126,9 +126,9 @@ struct extent_buffer { | |||
| 126 | unsigned long map_len; | 126 | unsigned long map_len; |
| 127 | struct page *first_page; | 127 | struct page *first_page; |
| 128 | unsigned long bflags; | 128 | unsigned long bflags; |
| 129 | atomic_t refs; | ||
| 130 | struct list_head leak_list; | 129 | struct list_head leak_list; |
| 131 | struct rcu_head rcu_head; | 130 | struct rcu_head rcu_head; |
| 131 | atomic_t refs; | ||
| 132 | 132 | ||
| 133 | /* the spinlock is used to protect most operations */ | 133 | /* the spinlock is used to protect most operations */ |
| 134 | spinlock_t lock; | 134 | spinlock_t lock; |
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index c6a22d783c35..fa4ef18b66b1 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c | |||
| @@ -129,7 +129,7 @@ int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans, | |||
| 129 | if (!btrfs_test_opt(root, AUTO_DEFRAG)) | 129 | if (!btrfs_test_opt(root, AUTO_DEFRAG)) |
| 130 | return 0; | 130 | return 0; |
| 131 | 131 | ||
| 132 | if (root->fs_info->closing) | 132 | if (btrfs_fs_closing(root->fs_info)) |
| 133 | return 0; | 133 | return 0; |
| 134 | 134 | ||
| 135 | if (BTRFS_I(inode)->in_defrag) | 135 | if (BTRFS_I(inode)->in_defrag) |
| @@ -144,7 +144,7 @@ int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans, | |||
| 144 | if (!defrag) | 144 | if (!defrag) |
| 145 | return -ENOMEM; | 145 | return -ENOMEM; |
| 146 | 146 | ||
| 147 | defrag->ino = inode->i_ino; | 147 | defrag->ino = btrfs_ino(inode); |
| 148 | defrag->transid = transid; | 148 | defrag->transid = transid; |
| 149 | defrag->root = root->root_key.objectid; | 149 | defrag->root = root->root_key.objectid; |
| 150 | 150 | ||
| @@ -229,7 +229,7 @@ int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info) | |||
| 229 | first_ino = defrag->ino + 1; | 229 | first_ino = defrag->ino + 1; |
| 230 | rb_erase(&defrag->rb_node, &fs_info->defrag_inodes); | 230 | rb_erase(&defrag->rb_node, &fs_info->defrag_inodes); |
| 231 | 231 | ||
| 232 | if (fs_info->closing) | 232 | if (btrfs_fs_closing(fs_info)) |
| 233 | goto next_free; | 233 | goto next_free; |
| 234 | 234 | ||
| 235 | spin_unlock(&fs_info->defrag_inodes_lock); | 235 | spin_unlock(&fs_info->defrag_inodes_lock); |
| @@ -1480,14 +1480,12 @@ int btrfs_sync_file(struct file *file, int datasync) | |||
| 1480 | * the current transaction, we can bail out now without any | 1480 | * the current transaction, we can bail out now without any |
| 1481 | * syncing | 1481 | * syncing |
| 1482 | */ | 1482 | */ |
| 1483 | mutex_lock(&root->fs_info->trans_mutex); | 1483 | smp_mb(); |
| 1484 | if (BTRFS_I(inode)->last_trans <= | 1484 | if (BTRFS_I(inode)->last_trans <= |
| 1485 | root->fs_info->last_trans_committed) { | 1485 | root->fs_info->last_trans_committed) { |
| 1486 | BTRFS_I(inode)->last_trans = 0; | 1486 | BTRFS_I(inode)->last_trans = 0; |
| 1487 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1488 | goto out; | 1487 | goto out; |
| 1489 | } | 1488 | } |
| 1490 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1491 | 1489 | ||
| 1492 | /* | 1490 | /* |
| 1493 | * ok we haven't committed the transaction yet, lets do a commit | 1491 | * ok we haven't committed the transaction yet, lets do a commit |
diff --git a/fs/btrfs/free-space-cache.c b/fs/btrfs/free-space-cache.c index 70d45795d758..9f985a429877 100644 --- a/fs/btrfs/free-space-cache.c +++ b/fs/btrfs/free-space-cache.c | |||
| @@ -98,7 +98,7 @@ struct inode *lookup_free_space_inode(struct btrfs_root *root, | |||
| 98 | return inode; | 98 | return inode; |
| 99 | 99 | ||
| 100 | spin_lock(&block_group->lock); | 100 | spin_lock(&block_group->lock); |
| 101 | if (!root->fs_info->closing) { | 101 | if (!btrfs_fs_closing(root->fs_info)) { |
| 102 | block_group->inode = igrab(inode); | 102 | block_group->inode = igrab(inode); |
| 103 | block_group->iref = 1; | 103 | block_group->iref = 1; |
| 104 | } | 104 | } |
| @@ -250,7 +250,7 @@ int __load_free_space_cache(struct btrfs_root *root, struct inode *inode, | |||
| 250 | pgoff_t index = 0; | 250 | pgoff_t index = 0; |
| 251 | unsigned long first_page_offset; | 251 | unsigned long first_page_offset; |
| 252 | int num_checksums; | 252 | int num_checksums; |
| 253 | int ret = 0, ret2; | 253 | int ret = 0; |
| 254 | 254 | ||
| 255 | INIT_LIST_HEAD(&bitmaps); | 255 | INIT_LIST_HEAD(&bitmaps); |
| 256 | 256 | ||
| @@ -402,7 +402,14 @@ int __load_free_space_cache(struct btrfs_root *root, struct inode *inode, | |||
| 402 | spin_lock(&ctl->tree_lock); | 402 | spin_lock(&ctl->tree_lock); |
| 403 | ret = link_free_space(ctl, e); | 403 | ret = link_free_space(ctl, e); |
| 404 | spin_unlock(&ctl->tree_lock); | 404 | spin_unlock(&ctl->tree_lock); |
| 405 | BUG_ON(ret); | 405 | if (ret) { |
| 406 | printk(KERN_ERR "Duplicate entries in " | ||
| 407 | "free space cache, dumping\n"); | ||
| 408 | kunmap(page); | ||
| 409 | unlock_page(page); | ||
| 410 | page_cache_release(page); | ||
| 411 | goto free_cache; | ||
| 412 | } | ||
| 406 | } else { | 413 | } else { |
| 407 | e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS); | 414 | e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS); |
| 408 | if (!e->bitmap) { | 415 | if (!e->bitmap) { |
| @@ -414,10 +421,18 @@ int __load_free_space_cache(struct btrfs_root *root, struct inode *inode, | |||
| 414 | goto free_cache; | 421 | goto free_cache; |
| 415 | } | 422 | } |
| 416 | spin_lock(&ctl->tree_lock); | 423 | spin_lock(&ctl->tree_lock); |
| 417 | ret2 = link_free_space(ctl, e); | 424 | ret = link_free_space(ctl, e); |
| 418 | ctl->total_bitmaps++; | 425 | ctl->total_bitmaps++; |
| 419 | ctl->op->recalc_thresholds(ctl); | 426 | ctl->op->recalc_thresholds(ctl); |
| 420 | spin_unlock(&ctl->tree_lock); | 427 | spin_unlock(&ctl->tree_lock); |
| 428 | if (ret) { | ||
| 429 | printk(KERN_ERR "Duplicate entries in " | ||
| 430 | "free space cache, dumping\n"); | ||
| 431 | kunmap(page); | ||
| 432 | unlock_page(page); | ||
| 433 | page_cache_release(page); | ||
| 434 | goto free_cache; | ||
| 435 | } | ||
| 421 | list_add_tail(&e->list, &bitmaps); | 436 | list_add_tail(&e->list, &bitmaps); |
| 422 | } | 437 | } |
| 423 | 438 | ||
| @@ -478,8 +493,7 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, | |||
| 478 | * If we're unmounting then just return, since this does a search on the | 493 | * If we're unmounting then just return, since this does a search on the |
| 479 | * normal root and not the commit root and we could deadlock. | 494 | * normal root and not the commit root and we could deadlock. |
| 480 | */ | 495 | */ |
| 481 | smp_mb(); | 496 | if (btrfs_fs_closing(fs_info)) |
| 482 | if (fs_info->closing) | ||
| 483 | return 0; | 497 | return 0; |
| 484 | 498 | ||
| 485 | /* | 499 | /* |
| @@ -575,10 +589,25 @@ int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode, | |||
| 575 | 589 | ||
| 576 | num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> | 590 | num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> |
| 577 | PAGE_CACHE_SHIFT; | 591 | PAGE_CACHE_SHIFT; |
| 592 | |||
| 593 | /* Since the first page has all of our checksums and our generation we | ||
| 594 | * need to calculate the offset into the page that we can start writing | ||
| 595 | * our entries. | ||
| 596 | */ | ||
| 597 | first_page_offset = (sizeof(u32) * num_pages) + sizeof(u64); | ||
| 598 | |||
| 578 | filemap_write_and_wait(inode->i_mapping); | 599 | filemap_write_and_wait(inode->i_mapping); |
| 579 | btrfs_wait_ordered_range(inode, inode->i_size & | 600 | btrfs_wait_ordered_range(inode, inode->i_size & |
| 580 | ~(root->sectorsize - 1), (u64)-1); | 601 | ~(root->sectorsize - 1), (u64)-1); |
| 581 | 602 | ||
| 603 | /* make sure we don't overflow that first page */ | ||
| 604 | if (first_page_offset + sizeof(struct btrfs_free_space_entry) >= PAGE_CACHE_SIZE) { | ||
| 605 | /* this is really the same as running out of space, where we also return 0 */ | ||
| 606 | printk(KERN_CRIT "Btrfs: free space cache was too big for the crc page\n"); | ||
| 607 | ret = 0; | ||
| 608 | goto out_update; | ||
| 609 | } | ||
| 610 | |||
| 582 | /* We need a checksum per page. */ | 611 | /* We need a checksum per page. */ |
| 583 | crc = checksums = kzalloc(sizeof(u32) * num_pages, GFP_NOFS); | 612 | crc = checksums = kzalloc(sizeof(u32) * num_pages, GFP_NOFS); |
| 584 | if (!crc) | 613 | if (!crc) |
| @@ -590,12 +619,6 @@ int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode, | |||
| 590 | return -1; | 619 | return -1; |
| 591 | } | 620 | } |
| 592 | 621 | ||
| 593 | /* Since the first page has all of our checksums and our generation we | ||
| 594 | * need to calculate the offset into the page that we can start writing | ||
| 595 | * our entries. | ||
| 596 | */ | ||
| 597 | first_page_offset = (sizeof(u32) * num_pages) + sizeof(u64); | ||
| 598 | |||
| 599 | /* Get the cluster for this block_group if it exists */ | 622 | /* Get the cluster for this block_group if it exists */ |
| 600 | if (block_group && !list_empty(&block_group->cluster_list)) | 623 | if (block_group && !list_empty(&block_group->cluster_list)) |
| 601 | cluster = list_entry(block_group->cluster_list.next, | 624 | cluster = list_entry(block_group->cluster_list.next, |
| @@ -857,12 +880,14 @@ int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode, | |||
| 857 | ret = 1; | 880 | ret = 1; |
| 858 | 881 | ||
| 859 | out_free: | 882 | out_free: |
| 883 | kfree(checksums); | ||
| 884 | kfree(pages); | ||
| 885 | |||
| 886 | out_update: | ||
| 860 | if (ret != 1) { | 887 | if (ret != 1) { |
| 861 | invalidate_inode_pages2_range(inode->i_mapping, 0, index); | 888 | invalidate_inode_pages2_range(inode->i_mapping, 0, index); |
| 862 | BTRFS_I(inode)->generation = 0; | 889 | BTRFS_I(inode)->generation = 0; |
| 863 | } | 890 | } |
| 864 | kfree(checksums); | ||
| 865 | kfree(pages); | ||
| 866 | btrfs_update_inode(trans, root, inode); | 891 | btrfs_update_inode(trans, root, inode); |
| 867 | return ret; | 892 | return ret; |
| 868 | } | 893 | } |
| @@ -963,10 +988,16 @@ static int tree_insert_offset(struct rb_root *root, u64 offset, | |||
| 963 | * logically. | 988 | * logically. |
| 964 | */ | 989 | */ |
| 965 | if (bitmap) { | 990 | if (bitmap) { |
| 966 | WARN_ON(info->bitmap); | 991 | if (info->bitmap) { |
| 992 | WARN_ON_ONCE(1); | ||
| 993 | return -EEXIST; | ||
| 994 | } | ||
| 967 | p = &(*p)->rb_right; | 995 | p = &(*p)->rb_right; |
| 968 | } else { | 996 | } else { |
| 969 | WARN_ON(!info->bitmap); | 997 | if (!info->bitmap) { |
| 998 | WARN_ON_ONCE(1); | ||
| 999 | return -EEXIST; | ||
| 1000 | } | ||
| 970 | p = &(*p)->rb_left; | 1001 | p = &(*p)->rb_left; |
| 971 | } | 1002 | } |
| 972 | } | 1003 | } |
| @@ -1386,6 +1417,23 @@ again: | |||
| 1386 | return 0; | 1417 | return 0; |
| 1387 | } | 1418 | } |
| 1388 | 1419 | ||
| 1420 | static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl, | ||
| 1421 | struct btrfs_free_space *info, u64 offset, | ||
| 1422 | u64 bytes) | ||
| 1423 | { | ||
| 1424 | u64 bytes_to_set = 0; | ||
| 1425 | u64 end; | ||
| 1426 | |||
| 1427 | end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit); | ||
| 1428 | |||
| 1429 | bytes_to_set = min(end - offset, bytes); | ||
| 1430 | |||
| 1431 | bitmap_set_bits(ctl, info, offset, bytes_to_set); | ||
| 1432 | |||
| 1433 | return bytes_to_set; | ||
| 1434 | |||
| 1435 | } | ||
| 1436 | |||
| 1389 | static bool use_bitmap(struct btrfs_free_space_ctl *ctl, | 1437 | static bool use_bitmap(struct btrfs_free_space_ctl *ctl, |
| 1390 | struct btrfs_free_space *info) | 1438 | struct btrfs_free_space *info) |
| 1391 | { | 1439 | { |
| @@ -1422,12 +1470,18 @@ static bool use_bitmap(struct btrfs_free_space_ctl *ctl, | |||
| 1422 | return true; | 1470 | return true; |
| 1423 | } | 1471 | } |
| 1424 | 1472 | ||
| 1473 | static struct btrfs_free_space_op free_space_op = { | ||
| 1474 | .recalc_thresholds = recalculate_thresholds, | ||
| 1475 | .use_bitmap = use_bitmap, | ||
| 1476 | }; | ||
| 1477 | |||
| 1425 | static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl, | 1478 | static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl, |
| 1426 | struct btrfs_free_space *info) | 1479 | struct btrfs_free_space *info) |
| 1427 | { | 1480 | { |
| 1428 | struct btrfs_free_space *bitmap_info; | 1481 | struct btrfs_free_space *bitmap_info; |
| 1482 | struct btrfs_block_group_cache *block_group = NULL; | ||
| 1429 | int added = 0; | 1483 | int added = 0; |
| 1430 | u64 bytes, offset, end; | 1484 | u64 bytes, offset, bytes_added; |
| 1431 | int ret; | 1485 | int ret; |
| 1432 | 1486 | ||
| 1433 | bytes = info->bytes; | 1487 | bytes = info->bytes; |
| @@ -1436,7 +1490,49 @@ static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl, | |||
| 1436 | if (!ctl->op->use_bitmap(ctl, info)) | 1490 | if (!ctl->op->use_bitmap(ctl, info)) |
| 1437 | return 0; | 1491 | return 0; |
| 1438 | 1492 | ||
| 1493 | if (ctl->op == &free_space_op) | ||
| 1494 | block_group = ctl->private; | ||
| 1439 | again: | 1495 | again: |
| 1496 | /* | ||
| 1497 | * Since we link bitmaps right into the cluster we need to see if we | ||
| 1498 | * have a cluster here, and if so and it has our bitmap we need to add | ||
| 1499 | * the free space to that bitmap. | ||
| 1500 | */ | ||
| 1501 | if (block_group && !list_empty(&block_group->cluster_list)) { | ||
| 1502 | struct btrfs_free_cluster *cluster; | ||
| 1503 | struct rb_node *node; | ||
| 1504 | struct btrfs_free_space *entry; | ||
| 1505 | |||
| 1506 | cluster = list_entry(block_group->cluster_list.next, | ||
| 1507 | struct btrfs_free_cluster, | ||
| 1508 | block_group_list); | ||
| 1509 | spin_lock(&cluster->lock); | ||
| 1510 | node = rb_first(&cluster->root); | ||
| 1511 | if (!node) { | ||
| 1512 | spin_unlock(&cluster->lock); | ||
| 1513 | goto no_cluster_bitmap; | ||
| 1514 | } | ||
| 1515 | |||
| 1516 | entry = rb_entry(node, struct btrfs_free_space, offset_index); | ||
| 1517 | if (!entry->bitmap) { | ||
| 1518 | spin_unlock(&cluster->lock); | ||
| 1519 | goto no_cluster_bitmap; | ||
| 1520 | } | ||
| 1521 | |||
| 1522 | if (entry->offset == offset_to_bitmap(ctl, offset)) { | ||
| 1523 | bytes_added = add_bytes_to_bitmap(ctl, entry, | ||
| 1524 | offset, bytes); | ||
| 1525 | bytes -= bytes_added; | ||
| 1526 | offset += bytes_added; | ||
| 1527 | } | ||
| 1528 | spin_unlock(&cluster->lock); | ||
| 1529 | if (!bytes) { | ||
| 1530 | ret = 1; | ||
| 1531 | goto out; | ||
| 1532 | } | ||
| 1533 | } | ||
| 1534 | |||
| 1535 | no_cluster_bitmap: | ||
| 1440 | bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset), | 1536 | bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset), |
| 1441 | 1, 0); | 1537 | 1, 0); |
| 1442 | if (!bitmap_info) { | 1538 | if (!bitmap_info) { |
| @@ -1444,19 +1540,10 @@ again: | |||
| 1444 | goto new_bitmap; | 1540 | goto new_bitmap; |
| 1445 | } | 1541 | } |
| 1446 | 1542 | ||
| 1447 | end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit); | 1543 | bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes); |
| 1448 | 1544 | bytes -= bytes_added; | |
| 1449 | if (offset >= bitmap_info->offset && offset + bytes > end) { | 1545 | offset += bytes_added; |
| 1450 | bitmap_set_bits(ctl, bitmap_info, offset, end - offset); | 1546 | added = 0; |
| 1451 | bytes -= end - offset; | ||
| 1452 | offset = end; | ||
| 1453 | added = 0; | ||
| 1454 | } else if (offset >= bitmap_info->offset && offset + bytes <= end) { | ||
| 1455 | bitmap_set_bits(ctl, bitmap_info, offset, bytes); | ||
| 1456 | bytes = 0; | ||
| 1457 | } else { | ||
| 1458 | BUG(); | ||
| 1459 | } | ||
| 1460 | 1547 | ||
| 1461 | if (!bytes) { | 1548 | if (!bytes) { |
| 1462 | ret = 1; | 1549 | ret = 1; |
| @@ -1735,11 +1822,6 @@ void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group, | |||
| 1735 | "\n", count); | 1822 | "\n", count); |
| 1736 | } | 1823 | } |
| 1737 | 1824 | ||
| 1738 | static struct btrfs_free_space_op free_space_op = { | ||
| 1739 | .recalc_thresholds = recalculate_thresholds, | ||
| 1740 | .use_bitmap = use_bitmap, | ||
| 1741 | }; | ||
| 1742 | |||
| 1743 | void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group) | 1825 | void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group) |
| 1744 | { | 1826 | { |
| 1745 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | 1827 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; |
| @@ -2111,9 +2193,11 @@ again: | |||
| 2111 | /* | 2193 | /* |
| 2112 | * This searches the block group for just extents to fill the cluster with. | 2194 | * This searches the block group for just extents to fill the cluster with. |
| 2113 | */ | 2195 | */ |
| 2114 | static int setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group, | 2196 | static noinline int |
| 2115 | struct btrfs_free_cluster *cluster, | 2197 | setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group, |
| 2116 | u64 offset, u64 bytes, u64 min_bytes) | 2198 | struct btrfs_free_cluster *cluster, |
| 2199 | struct list_head *bitmaps, u64 offset, u64 bytes, | ||
| 2200 | u64 min_bytes) | ||
| 2117 | { | 2201 | { |
| 2118 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | 2202 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; |
| 2119 | struct btrfs_free_space *first = NULL; | 2203 | struct btrfs_free_space *first = NULL; |
| @@ -2135,6 +2219,8 @@ static int setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group, | |||
| 2135 | * extent entry. | 2219 | * extent entry. |
| 2136 | */ | 2220 | */ |
| 2137 | while (entry->bitmap) { | 2221 | while (entry->bitmap) { |
| 2222 | if (list_empty(&entry->list)) | ||
| 2223 | list_add_tail(&entry->list, bitmaps); | ||
| 2138 | node = rb_next(&entry->offset_index); | 2224 | node = rb_next(&entry->offset_index); |
| 2139 | if (!node) | 2225 | if (!node) |
| 2140 | return -ENOSPC; | 2226 | return -ENOSPC; |
| @@ -2154,8 +2240,12 @@ static int setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group, | |||
| 2154 | return -ENOSPC; | 2240 | return -ENOSPC; |
| 2155 | entry = rb_entry(node, struct btrfs_free_space, offset_index); | 2241 | entry = rb_entry(node, struct btrfs_free_space, offset_index); |
| 2156 | 2242 | ||
| 2157 | if (entry->bitmap) | 2243 | if (entry->bitmap) { |
| 2244 | if (list_empty(&entry->list)) | ||
| 2245 | list_add_tail(&entry->list, bitmaps); | ||
| 2158 | continue; | 2246 | continue; |
| 2247 | } | ||
| 2248 | |||
| 2159 | /* | 2249 | /* |
| 2160 | * we haven't filled the empty size and the window is | 2250 | * we haven't filled the empty size and the window is |
| 2161 | * very large. reset and try again | 2251 | * very large. reset and try again |
| @@ -2207,9 +2297,11 @@ static int setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group, | |||
| 2207 | * This specifically looks for bitmaps that may work in the cluster, we assume | 2297 | * This specifically looks for bitmaps that may work in the cluster, we assume |
| 2208 | * that we have already failed to find extents that will work. | 2298 | * that we have already failed to find extents that will work. |
| 2209 | */ | 2299 | */ |
| 2210 | static int setup_cluster_bitmap(struct btrfs_block_group_cache *block_group, | 2300 | static noinline int |
| 2211 | struct btrfs_free_cluster *cluster, | 2301 | setup_cluster_bitmap(struct btrfs_block_group_cache *block_group, |
| 2212 | u64 offset, u64 bytes, u64 min_bytes) | 2302 | struct btrfs_free_cluster *cluster, |
| 2303 | struct list_head *bitmaps, u64 offset, u64 bytes, | ||
| 2304 | u64 min_bytes) | ||
| 2213 | { | 2305 | { |
| 2214 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | 2306 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; |
| 2215 | struct btrfs_free_space *entry; | 2307 | struct btrfs_free_space *entry; |
| @@ -2219,10 +2311,39 @@ static int setup_cluster_bitmap(struct btrfs_block_group_cache *block_group, | |||
| 2219 | if (ctl->total_bitmaps == 0) | 2311 | if (ctl->total_bitmaps == 0) |
| 2220 | return -ENOSPC; | 2312 | return -ENOSPC; |
| 2221 | 2313 | ||
| 2314 | /* | ||
| 2315 | * First check our cached list of bitmaps and see if there is an entry | ||
| 2316 | * here that will work. | ||
| 2317 | */ | ||
| 2318 | list_for_each_entry(entry, bitmaps, list) { | ||
| 2319 | if (entry->bytes < min_bytes) | ||
| 2320 | continue; | ||
| 2321 | ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset, | ||
| 2322 | bytes, min_bytes); | ||
| 2323 | if (!ret) | ||
| 2324 | return 0; | ||
| 2325 | } | ||
| 2326 | |||
| 2327 | /* | ||
| 2328 | * If we do have entries on our list and we are here then we didn't find | ||
| 2329 | * anything, so go ahead and get the next entry after the last entry in | ||
| 2330 | * this list and start the search from there. | ||
| 2331 | */ | ||
| 2332 | if (!list_empty(bitmaps)) { | ||
| 2333 | entry = list_entry(bitmaps->prev, struct btrfs_free_space, | ||
| 2334 | list); | ||
| 2335 | node = rb_next(&entry->offset_index); | ||
| 2336 | if (!node) | ||
| 2337 | return -ENOSPC; | ||
| 2338 | entry = rb_entry(node, struct btrfs_free_space, offset_index); | ||
| 2339 | goto search; | ||
| 2340 | } | ||
| 2341 | |||
| 2222 | entry = tree_search_offset(ctl, offset_to_bitmap(ctl, offset), 0, 1); | 2342 | entry = tree_search_offset(ctl, offset_to_bitmap(ctl, offset), 0, 1); |
| 2223 | if (!entry) | 2343 | if (!entry) |
| 2224 | return -ENOSPC; | 2344 | return -ENOSPC; |
| 2225 | 2345 | ||
| 2346 | search: | ||
| 2226 | node = &entry->offset_index; | 2347 | node = &entry->offset_index; |
| 2227 | do { | 2348 | do { |
| 2228 | entry = rb_entry(node, struct btrfs_free_space, offset_index); | 2349 | entry = rb_entry(node, struct btrfs_free_space, offset_index); |
| @@ -2253,6 +2374,8 @@ int btrfs_find_space_cluster(struct btrfs_trans_handle *trans, | |||
| 2253 | u64 offset, u64 bytes, u64 empty_size) | 2374 | u64 offset, u64 bytes, u64 empty_size) |
| 2254 | { | 2375 | { |
| 2255 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | 2376 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; |
| 2377 | struct list_head bitmaps; | ||
| 2378 | struct btrfs_free_space *entry, *tmp; | ||
| 2256 | u64 min_bytes; | 2379 | u64 min_bytes; |
| 2257 | int ret; | 2380 | int ret; |
| 2258 | 2381 | ||
| @@ -2291,11 +2414,16 @@ int btrfs_find_space_cluster(struct btrfs_trans_handle *trans, | |||
| 2291 | goto out; | 2414 | goto out; |
| 2292 | } | 2415 | } |
| 2293 | 2416 | ||
| 2294 | ret = setup_cluster_no_bitmap(block_group, cluster, offset, bytes, | 2417 | INIT_LIST_HEAD(&bitmaps); |
| 2295 | min_bytes); | 2418 | ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset, |
| 2419 | bytes, min_bytes); | ||
| 2296 | if (ret) | 2420 | if (ret) |
| 2297 | ret = setup_cluster_bitmap(block_group, cluster, offset, | 2421 | ret = setup_cluster_bitmap(block_group, cluster, &bitmaps, |
| 2298 | bytes, min_bytes); | 2422 | offset, bytes, min_bytes); |
| 2423 | |||
| 2424 | /* Clear our temporary list */ | ||
| 2425 | list_for_each_entry_safe(entry, tmp, &bitmaps, list) | ||
| 2426 | list_del_init(&entry->list); | ||
| 2299 | 2427 | ||
| 2300 | if (!ret) { | 2428 | if (!ret) { |
| 2301 | atomic_inc(&block_group->count); | 2429 | atomic_inc(&block_group->count); |
| @@ -2481,7 +2609,7 @@ struct inode *lookup_free_ino_inode(struct btrfs_root *root, | |||
| 2481 | return inode; | 2609 | return inode; |
| 2482 | 2610 | ||
| 2483 | spin_lock(&root->cache_lock); | 2611 | spin_lock(&root->cache_lock); |
| 2484 | if (!root->fs_info->closing) | 2612 | if (!btrfs_fs_closing(root->fs_info)) |
| 2485 | root->cache_inode = igrab(inode); | 2613 | root->cache_inode = igrab(inode); |
| 2486 | spin_unlock(&root->cache_lock); | 2614 | spin_unlock(&root->cache_lock); |
| 2487 | 2615 | ||
| @@ -2504,12 +2632,14 @@ int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root) | |||
| 2504 | int ret = 0; | 2632 | int ret = 0; |
| 2505 | u64 root_gen = btrfs_root_generation(&root->root_item); | 2633 | u64 root_gen = btrfs_root_generation(&root->root_item); |
| 2506 | 2634 | ||
| 2635 | if (!btrfs_test_opt(root, INODE_MAP_CACHE)) | ||
| 2636 | return 0; | ||
| 2637 | |||
| 2507 | /* | 2638 | /* |
| 2508 | * If we're unmounting then just return, since this does a search on the | 2639 | * If we're unmounting then just return, since this does a search on the |
| 2509 | * normal root and not the commit root and we could deadlock. | 2640 | * normal root and not the commit root and we could deadlock. |
| 2510 | */ | 2641 | */ |
| 2511 | smp_mb(); | 2642 | if (btrfs_fs_closing(fs_info)) |
| 2512 | if (fs_info->closing) | ||
| 2513 | return 0; | 2643 | return 0; |
| 2514 | 2644 | ||
| 2515 | path = btrfs_alloc_path(); | 2645 | path = btrfs_alloc_path(); |
| @@ -2543,6 +2673,9 @@ int btrfs_write_out_ino_cache(struct btrfs_root *root, | |||
| 2543 | struct inode *inode; | 2673 | struct inode *inode; |
| 2544 | int ret; | 2674 | int ret; |
| 2545 | 2675 | ||
| 2676 | if (!btrfs_test_opt(root, INODE_MAP_CACHE)) | ||
| 2677 | return 0; | ||
| 2678 | |||
| 2546 | inode = lookup_free_ino_inode(root, path); | 2679 | inode = lookup_free_ino_inode(root, path); |
| 2547 | if (IS_ERR(inode)) | 2680 | if (IS_ERR(inode)) |
| 2548 | return 0; | 2681 | return 0; |
diff --git a/fs/btrfs/inode-map.c b/fs/btrfs/inode-map.c index 3262cd17a12f..b4087e0fa871 100644 --- a/fs/btrfs/inode-map.c +++ b/fs/btrfs/inode-map.c | |||
| @@ -38,6 +38,9 @@ static int caching_kthread(void *data) | |||
| 38 | int slot; | 38 | int slot; |
| 39 | int ret; | 39 | int ret; |
| 40 | 40 | ||
| 41 | if (!btrfs_test_opt(root, INODE_MAP_CACHE)) | ||
| 42 | return 0; | ||
| 43 | |||
| 41 | path = btrfs_alloc_path(); | 44 | path = btrfs_alloc_path(); |
| 42 | if (!path) | 45 | if (!path) |
| 43 | return -ENOMEM; | 46 | return -ENOMEM; |
| @@ -59,8 +62,7 @@ again: | |||
| 59 | goto out; | 62 | goto out; |
| 60 | 63 | ||
| 61 | while (1) { | 64 | while (1) { |
| 62 | smp_mb(); | 65 | if (btrfs_fs_closing(fs_info)) |
| 63 | if (fs_info->closing) | ||
| 64 | goto out; | 66 | goto out; |
| 65 | 67 | ||
| 66 | leaf = path->nodes[0]; | 68 | leaf = path->nodes[0]; |
| @@ -141,6 +143,9 @@ static void start_caching(struct btrfs_root *root) | |||
| 141 | int ret; | 143 | int ret; |
| 142 | u64 objectid; | 144 | u64 objectid; |
| 143 | 145 | ||
| 146 | if (!btrfs_test_opt(root, INODE_MAP_CACHE)) | ||
| 147 | return; | ||
| 148 | |||
| 144 | spin_lock(&root->cache_lock); | 149 | spin_lock(&root->cache_lock); |
| 145 | if (root->cached != BTRFS_CACHE_NO) { | 150 | if (root->cached != BTRFS_CACHE_NO) { |
| 146 | spin_unlock(&root->cache_lock); | 151 | spin_unlock(&root->cache_lock); |
| @@ -178,6 +183,9 @@ static void start_caching(struct btrfs_root *root) | |||
| 178 | 183 | ||
| 179 | int btrfs_find_free_ino(struct btrfs_root *root, u64 *objectid) | 184 | int btrfs_find_free_ino(struct btrfs_root *root, u64 *objectid) |
| 180 | { | 185 | { |
| 186 | if (!btrfs_test_opt(root, INODE_MAP_CACHE)) | ||
| 187 | return btrfs_find_free_objectid(root, objectid); | ||
| 188 | |||
| 181 | again: | 189 | again: |
| 182 | *objectid = btrfs_find_ino_for_alloc(root); | 190 | *objectid = btrfs_find_ino_for_alloc(root); |
| 183 | 191 | ||
| @@ -201,6 +209,10 @@ void btrfs_return_ino(struct btrfs_root *root, u64 objectid) | |||
| 201 | { | 209 | { |
| 202 | struct btrfs_free_space_ctl *ctl = root->free_ino_ctl; | 210 | struct btrfs_free_space_ctl *ctl = root->free_ino_ctl; |
| 203 | struct btrfs_free_space_ctl *pinned = root->free_ino_pinned; | 211 | struct btrfs_free_space_ctl *pinned = root->free_ino_pinned; |
| 212 | |||
| 213 | if (!btrfs_test_opt(root, INODE_MAP_CACHE)) | ||
| 214 | return; | ||
| 215 | |||
| 204 | again: | 216 | again: |
| 205 | if (root->cached == BTRFS_CACHE_FINISHED) { | 217 | if (root->cached == BTRFS_CACHE_FINISHED) { |
| 206 | __btrfs_add_free_space(ctl, objectid, 1); | 218 | __btrfs_add_free_space(ctl, objectid, 1); |
| @@ -250,6 +262,9 @@ void btrfs_unpin_free_ino(struct btrfs_root *root) | |||
| 250 | struct rb_node *n; | 262 | struct rb_node *n; |
| 251 | u64 count; | 263 | u64 count; |
| 252 | 264 | ||
| 265 | if (!btrfs_test_opt(root, INODE_MAP_CACHE)) | ||
| 266 | return; | ||
| 267 | |||
| 253 | while (1) { | 268 | while (1) { |
| 254 | n = rb_first(rbroot); | 269 | n = rb_first(rbroot); |
| 255 | if (!n) | 270 | if (!n) |
| @@ -388,9 +403,24 @@ int btrfs_save_ino_cache(struct btrfs_root *root, | |||
| 388 | int prealloc; | 403 | int prealloc; |
| 389 | bool retry = false; | 404 | bool retry = false; |
| 390 | 405 | ||
| 406 | /* only fs tree and subvol/snap needs ino cache */ | ||
| 407 | if (root->root_key.objectid != BTRFS_FS_TREE_OBJECTID && | ||
| 408 | (root->root_key.objectid < BTRFS_FIRST_FREE_OBJECTID || | ||
| 409 | root->root_key.objectid > BTRFS_LAST_FREE_OBJECTID)) | ||
| 410 | return 0; | ||
| 411 | |||
| 412 | /* Don't save inode cache if we are deleting this root */ | ||
| 413 | if (btrfs_root_refs(&root->root_item) == 0 && | ||
| 414 | root != root->fs_info->tree_root) | ||
| 415 | return 0; | ||
| 416 | |||
| 417 | if (!btrfs_test_opt(root, INODE_MAP_CACHE)) | ||
| 418 | return 0; | ||
| 419 | |||
| 391 | path = btrfs_alloc_path(); | 420 | path = btrfs_alloc_path(); |
| 392 | if (!path) | 421 | if (!path) |
| 393 | return -ENOMEM; | 422 | return -ENOMEM; |
| 423 | |||
| 394 | again: | 424 | again: |
| 395 | inode = lookup_free_ino_inode(root, path); | 425 | inode = lookup_free_ino_inode(root, path); |
| 396 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { | 426 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 39a9d5750efd..0a9b10c5b0a7 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c | |||
| @@ -138,7 +138,6 @@ static noinline int insert_inline_extent(struct btrfs_trans_handle *trans, | |||
| 138 | return -ENOMEM; | 138 | return -ENOMEM; |
| 139 | 139 | ||
| 140 | path->leave_spinning = 1; | 140 | path->leave_spinning = 1; |
| 141 | btrfs_set_trans_block_group(trans, inode); | ||
| 142 | 141 | ||
| 143 | key.objectid = btrfs_ino(inode); | 142 | key.objectid = btrfs_ino(inode); |
| 144 | key.offset = start; | 143 | key.offset = start; |
| @@ -426,9 +425,8 @@ again: | |||
| 426 | } | 425 | } |
| 427 | } | 426 | } |
| 428 | if (start == 0) { | 427 | if (start == 0) { |
| 429 | trans = btrfs_join_transaction(root, 1); | 428 | trans = btrfs_join_transaction(root); |
| 430 | BUG_ON(IS_ERR(trans)); | 429 | BUG_ON(IS_ERR(trans)); |
| 431 | btrfs_set_trans_block_group(trans, inode); | ||
| 432 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 430 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
| 433 | 431 | ||
| 434 | /* lets try to make an inline extent */ | 432 | /* lets try to make an inline extent */ |
| @@ -623,8 +621,9 @@ retry: | |||
| 623 | async_extent->start + async_extent->ram_size - 1, | 621 | async_extent->start + async_extent->ram_size - 1, |
| 624 | GFP_NOFS); | 622 | GFP_NOFS); |
| 625 | 623 | ||
| 626 | trans = btrfs_join_transaction(root, 1); | 624 | trans = btrfs_join_transaction(root); |
| 627 | BUG_ON(IS_ERR(trans)); | 625 | BUG_ON(IS_ERR(trans)); |
| 626 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | ||
| 628 | ret = btrfs_reserve_extent(trans, root, | 627 | ret = btrfs_reserve_extent(trans, root, |
| 629 | async_extent->compressed_size, | 628 | async_extent->compressed_size, |
| 630 | async_extent->compressed_size, | 629 | async_extent->compressed_size, |
| @@ -793,9 +792,8 @@ static noinline int cow_file_range(struct inode *inode, | |||
| 793 | int ret = 0; | 792 | int ret = 0; |
| 794 | 793 | ||
| 795 | BUG_ON(is_free_space_inode(root, inode)); | 794 | BUG_ON(is_free_space_inode(root, inode)); |
| 796 | trans = btrfs_join_transaction(root, 1); | 795 | trans = btrfs_join_transaction(root); |
| 797 | BUG_ON(IS_ERR(trans)); | 796 | BUG_ON(IS_ERR(trans)); |
| 798 | btrfs_set_trans_block_group(trans, inode); | ||
| 799 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 797 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
| 800 | 798 | ||
| 801 | num_bytes = (end - start + blocksize) & ~(blocksize - 1); | 799 | num_bytes = (end - start + blocksize) & ~(blocksize - 1); |
| @@ -1077,10 +1075,12 @@ static noinline int run_delalloc_nocow(struct inode *inode, | |||
| 1077 | nolock = is_free_space_inode(root, inode); | 1075 | nolock = is_free_space_inode(root, inode); |
| 1078 | 1076 | ||
| 1079 | if (nolock) | 1077 | if (nolock) |
| 1080 | trans = btrfs_join_transaction_nolock(root, 1); | 1078 | trans = btrfs_join_transaction_nolock(root); |
| 1081 | else | 1079 | else |
| 1082 | trans = btrfs_join_transaction(root, 1); | 1080 | trans = btrfs_join_transaction(root); |
| 1081 | |||
| 1083 | BUG_ON(IS_ERR(trans)); | 1082 | BUG_ON(IS_ERR(trans)); |
| 1083 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | ||
| 1084 | 1084 | ||
| 1085 | cow_start = (u64)-1; | 1085 | cow_start = (u64)-1; |
| 1086 | cur_offset = start; | 1086 | cur_offset = start; |
| @@ -1519,8 +1519,6 @@ static noinline int add_pending_csums(struct btrfs_trans_handle *trans, | |||
| 1519 | { | 1519 | { |
| 1520 | struct btrfs_ordered_sum *sum; | 1520 | struct btrfs_ordered_sum *sum; |
| 1521 | 1521 | ||
| 1522 | btrfs_set_trans_block_group(trans, inode); | ||
| 1523 | |||
| 1524 | list_for_each_entry(sum, list, list) { | 1522 | list_for_each_entry(sum, list, list) { |
| 1525 | btrfs_csum_file_blocks(trans, | 1523 | btrfs_csum_file_blocks(trans, |
| 1526 | BTRFS_I(inode)->root->fs_info->csum_root, sum); | 1524 | BTRFS_I(inode)->root->fs_info->csum_root, sum); |
| @@ -1735,11 +1733,10 @@ static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end) | |||
| 1735 | ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent); | 1733 | ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent); |
| 1736 | if (!ret) { | 1734 | if (!ret) { |
| 1737 | if (nolock) | 1735 | if (nolock) |
| 1738 | trans = btrfs_join_transaction_nolock(root, 1); | 1736 | trans = btrfs_join_transaction_nolock(root); |
| 1739 | else | 1737 | else |
| 1740 | trans = btrfs_join_transaction(root, 1); | 1738 | trans = btrfs_join_transaction(root); |
| 1741 | BUG_ON(IS_ERR(trans)); | 1739 | BUG_ON(IS_ERR(trans)); |
| 1742 | btrfs_set_trans_block_group(trans, inode); | ||
| 1743 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 1740 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
| 1744 | ret = btrfs_update_inode(trans, root, inode); | 1741 | ret = btrfs_update_inode(trans, root, inode); |
| 1745 | BUG_ON(ret); | 1742 | BUG_ON(ret); |
| @@ -1752,11 +1749,10 @@ static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end) | |||
| 1752 | 0, &cached_state, GFP_NOFS); | 1749 | 0, &cached_state, GFP_NOFS); |
| 1753 | 1750 | ||
| 1754 | if (nolock) | 1751 | if (nolock) |
| 1755 | trans = btrfs_join_transaction_nolock(root, 1); | 1752 | trans = btrfs_join_transaction_nolock(root); |
| 1756 | else | 1753 | else |
| 1757 | trans = btrfs_join_transaction(root, 1); | 1754 | trans = btrfs_join_transaction(root); |
| 1758 | BUG_ON(IS_ERR(trans)); | 1755 | BUG_ON(IS_ERR(trans)); |
| 1759 | btrfs_set_trans_block_group(trans, inode); | ||
| 1760 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 1756 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
| 1761 | 1757 | ||
| 1762 | if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags)) | 1758 | if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags)) |
| @@ -1990,7 +1986,7 @@ static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end, | |||
| 1990 | } | 1986 | } |
| 1991 | 1987 | ||
| 1992 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM) | 1988 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM) |
| 1993 | return 0; | 1989 | goto good; |
| 1994 | 1990 | ||
| 1995 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID && | 1991 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID && |
| 1996 | test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) { | 1992 | test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) { |
| @@ -2431,7 +2427,7 @@ int btrfs_orphan_cleanup(struct btrfs_root *root) | |||
| 2431 | (u64)-1); | 2427 | (u64)-1); |
| 2432 | 2428 | ||
| 2433 | if (root->orphan_block_rsv || root->orphan_item_inserted) { | 2429 | if (root->orphan_block_rsv || root->orphan_item_inserted) { |
| 2434 | trans = btrfs_join_transaction(root, 1); | 2430 | trans = btrfs_join_transaction(root); |
| 2435 | if (!IS_ERR(trans)) | 2431 | if (!IS_ERR(trans)) |
| 2436 | btrfs_end_transaction(trans, root); | 2432 | btrfs_end_transaction(trans, root); |
| 2437 | } | 2433 | } |
| @@ -2511,12 +2507,12 @@ static void btrfs_read_locked_inode(struct inode *inode) | |||
| 2511 | struct btrfs_root *root = BTRFS_I(inode)->root; | 2507 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 2512 | struct btrfs_key location; | 2508 | struct btrfs_key location; |
| 2513 | int maybe_acls; | 2509 | int maybe_acls; |
| 2514 | u64 alloc_group_block; | ||
| 2515 | u32 rdev; | 2510 | u32 rdev; |
| 2516 | int ret; | 2511 | int ret; |
| 2517 | 2512 | ||
| 2518 | path = btrfs_alloc_path(); | 2513 | path = btrfs_alloc_path(); |
| 2519 | BUG_ON(!path); | 2514 | BUG_ON(!path); |
| 2515 | path->leave_spinning = 1; | ||
| 2520 | memcpy(&location, &BTRFS_I(inode)->location, sizeof(location)); | 2516 | memcpy(&location, &BTRFS_I(inode)->location, sizeof(location)); |
| 2521 | 2517 | ||
| 2522 | ret = btrfs_lookup_inode(NULL, root, path, &location, 0); | 2518 | ret = btrfs_lookup_inode(NULL, root, path, &location, 0); |
| @@ -2526,6 +2522,12 @@ static void btrfs_read_locked_inode(struct inode *inode) | |||
| 2526 | leaf = path->nodes[0]; | 2522 | leaf = path->nodes[0]; |
| 2527 | inode_item = btrfs_item_ptr(leaf, path->slots[0], | 2523 | inode_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2528 | struct btrfs_inode_item); | 2524 | struct btrfs_inode_item); |
| 2525 | if (!leaf->map_token) | ||
| 2526 | map_private_extent_buffer(leaf, (unsigned long)inode_item, | ||
| 2527 | sizeof(struct btrfs_inode_item), | ||
| 2528 | &leaf->map_token, &leaf->kaddr, | ||
| 2529 | &leaf->map_start, &leaf->map_len, | ||
| 2530 | KM_USER1); | ||
| 2529 | 2531 | ||
| 2530 | inode->i_mode = btrfs_inode_mode(leaf, inode_item); | 2532 | inode->i_mode = btrfs_inode_mode(leaf, inode_item); |
| 2531 | inode->i_nlink = btrfs_inode_nlink(leaf, inode_item); | 2533 | inode->i_nlink = btrfs_inode_nlink(leaf, inode_item); |
| @@ -2555,8 +2557,6 @@ static void btrfs_read_locked_inode(struct inode *inode) | |||
| 2555 | BTRFS_I(inode)->index_cnt = (u64)-1; | 2557 | BTRFS_I(inode)->index_cnt = (u64)-1; |
| 2556 | BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item); | 2558 | BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item); |
| 2557 | 2559 | ||
| 2558 | alloc_group_block = btrfs_inode_block_group(leaf, inode_item); | ||
| 2559 | |||
| 2560 | /* | 2560 | /* |
| 2561 | * try to precache a NULL acl entry for files that don't have | 2561 | * try to precache a NULL acl entry for files that don't have |
| 2562 | * any xattrs or acls | 2562 | * any xattrs or acls |
| @@ -2566,8 +2566,11 @@ static void btrfs_read_locked_inode(struct inode *inode) | |||
| 2566 | if (!maybe_acls) | 2566 | if (!maybe_acls) |
| 2567 | cache_no_acl(inode); | 2567 | cache_no_acl(inode); |
| 2568 | 2568 | ||
| 2569 | BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0, | 2569 | if (leaf->map_token) { |
| 2570 | alloc_group_block, 0); | 2570 | unmap_extent_buffer(leaf, leaf->map_token, KM_USER1); |
| 2571 | leaf->map_token = NULL; | ||
| 2572 | } | ||
| 2573 | |||
| 2571 | btrfs_free_path(path); | 2574 | btrfs_free_path(path); |
| 2572 | inode_item = NULL; | 2575 | inode_item = NULL; |
| 2573 | 2576 | ||
| @@ -2647,7 +2650,7 @@ static void fill_inode_item(struct btrfs_trans_handle *trans, | |||
| 2647 | btrfs_set_inode_transid(leaf, item, trans->transid); | 2650 | btrfs_set_inode_transid(leaf, item, trans->transid); |
| 2648 | btrfs_set_inode_rdev(leaf, item, inode->i_rdev); | 2651 | btrfs_set_inode_rdev(leaf, item, inode->i_rdev); |
| 2649 | btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags); | 2652 | btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags); |
| 2650 | btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group); | 2653 | btrfs_set_inode_block_group(leaf, item, 0); |
| 2651 | 2654 | ||
| 2652 | if (leaf->map_token) { | 2655 | if (leaf->map_token) { |
| 2653 | unmap_extent_buffer(leaf, leaf->map_token, KM_USER1); | 2656 | unmap_extent_buffer(leaf, leaf->map_token, KM_USER1); |
| @@ -3004,8 +3007,6 @@ static int btrfs_unlink(struct inode *dir, struct dentry *dentry) | |||
| 3004 | if (IS_ERR(trans)) | 3007 | if (IS_ERR(trans)) |
| 3005 | return PTR_ERR(trans); | 3008 | return PTR_ERR(trans); |
| 3006 | 3009 | ||
| 3007 | btrfs_set_trans_block_group(trans, dir); | ||
| 3008 | |||
| 3009 | btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0); | 3010 | btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0); |
| 3010 | 3011 | ||
| 3011 | ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode, | 3012 | ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode, |
| @@ -3075,6 +3076,7 @@ int btrfs_unlink_subvol(struct btrfs_trans_handle *trans, | |||
| 3075 | ret = btrfs_update_inode(trans, root, dir); | 3076 | ret = btrfs_update_inode(trans, root, dir); |
| 3076 | BUG_ON(ret); | 3077 | BUG_ON(ret); |
| 3077 | 3078 | ||
| 3079 | btrfs_free_path(path); | ||
| 3078 | return 0; | 3080 | return 0; |
| 3079 | } | 3081 | } |
| 3080 | 3082 | ||
| @@ -3094,8 +3096,6 @@ static int btrfs_rmdir(struct inode *dir, struct dentry *dentry) | |||
| 3094 | if (IS_ERR(trans)) | 3096 | if (IS_ERR(trans)) |
| 3095 | return PTR_ERR(trans); | 3097 | return PTR_ERR(trans); |
| 3096 | 3098 | ||
| 3097 | btrfs_set_trans_block_group(trans, dir); | ||
| 3098 | |||
| 3099 | if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { | 3099 | if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { |
| 3100 | err = btrfs_unlink_subvol(trans, root, dir, | 3100 | err = btrfs_unlink_subvol(trans, root, dir, |
| 3101 | BTRFS_I(inode)->location.objectid, | 3101 | BTRFS_I(inode)->location.objectid, |
| @@ -3514,7 +3514,6 @@ int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size) | |||
| 3514 | err = PTR_ERR(trans); | 3514 | err = PTR_ERR(trans); |
| 3515 | break; | 3515 | break; |
| 3516 | } | 3516 | } |
| 3517 | btrfs_set_trans_block_group(trans, inode); | ||
| 3518 | 3517 | ||
| 3519 | err = btrfs_drop_extents(trans, inode, cur_offset, | 3518 | err = btrfs_drop_extents(trans, inode, cur_offset, |
| 3520 | cur_offset + hole_size, | 3519 | cur_offset + hole_size, |
| @@ -3648,9 +3647,8 @@ void btrfs_evict_inode(struct inode *inode) | |||
| 3648 | btrfs_i_size_write(inode, 0); | 3647 | btrfs_i_size_write(inode, 0); |
| 3649 | 3648 | ||
| 3650 | while (1) { | 3649 | while (1) { |
| 3651 | trans = btrfs_start_transaction(root, 0); | 3650 | trans = btrfs_join_transaction(root); |
| 3652 | BUG_ON(IS_ERR(trans)); | 3651 | BUG_ON(IS_ERR(trans)); |
| 3653 | btrfs_set_trans_block_group(trans, inode); | ||
| 3654 | trans->block_rsv = root->orphan_block_rsv; | 3652 | trans->block_rsv = root->orphan_block_rsv; |
| 3655 | 3653 | ||
| 3656 | ret = btrfs_block_rsv_check(trans, root, | 3654 | ret = btrfs_block_rsv_check(trans, root, |
| @@ -4133,7 +4131,8 @@ static int btrfs_real_readdir(struct file *filp, void *dirent, | |||
| 4133 | path = btrfs_alloc_path(); | 4131 | path = btrfs_alloc_path(); |
| 4134 | if (!path) | 4132 | if (!path) |
| 4135 | return -ENOMEM; | 4133 | return -ENOMEM; |
| 4136 | path->reada = 2; | 4134 | |
| 4135 | path->reada = 1; | ||
| 4137 | 4136 | ||
| 4138 | if (key_type == BTRFS_DIR_INDEX_KEY) { | 4137 | if (key_type == BTRFS_DIR_INDEX_KEY) { |
| 4139 | INIT_LIST_HEAD(&ins_list); | 4138 | INIT_LIST_HEAD(&ins_list); |
| @@ -4268,18 +4267,16 @@ int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc) | |||
| 4268 | if (BTRFS_I(inode)->dummy_inode) | 4267 | if (BTRFS_I(inode)->dummy_inode) |
| 4269 | return 0; | 4268 | return 0; |
| 4270 | 4269 | ||
| 4271 | smp_mb(); | 4270 | if (btrfs_fs_closing(root->fs_info) && is_free_space_inode(root, inode)) |
| 4272 | if (root->fs_info->closing && is_free_space_inode(root, inode)) | ||
| 4273 | nolock = true; | 4271 | nolock = true; |
| 4274 | 4272 | ||
| 4275 | if (wbc->sync_mode == WB_SYNC_ALL) { | 4273 | if (wbc->sync_mode == WB_SYNC_ALL) { |
| 4276 | if (nolock) | 4274 | if (nolock) |
| 4277 | trans = btrfs_join_transaction_nolock(root, 1); | 4275 | trans = btrfs_join_transaction_nolock(root); |
| 4278 | else | 4276 | else |
| 4279 | trans = btrfs_join_transaction(root, 1); | 4277 | trans = btrfs_join_transaction(root); |
| 4280 | if (IS_ERR(trans)) | 4278 | if (IS_ERR(trans)) |
| 4281 | return PTR_ERR(trans); | 4279 | return PTR_ERR(trans); |
| 4282 | btrfs_set_trans_block_group(trans, inode); | ||
| 4283 | if (nolock) | 4280 | if (nolock) |
| 4284 | ret = btrfs_end_transaction_nolock(trans, root); | 4281 | ret = btrfs_end_transaction_nolock(trans, root); |
| 4285 | else | 4282 | else |
| @@ -4303,9 +4300,8 @@ void btrfs_dirty_inode(struct inode *inode, int flags) | |||
| 4303 | if (BTRFS_I(inode)->dummy_inode) | 4300 | if (BTRFS_I(inode)->dummy_inode) |
| 4304 | return; | 4301 | return; |
| 4305 | 4302 | ||
| 4306 | trans = btrfs_join_transaction(root, 1); | 4303 | trans = btrfs_join_transaction(root); |
| 4307 | BUG_ON(IS_ERR(trans)); | 4304 | BUG_ON(IS_ERR(trans)); |
| 4308 | btrfs_set_trans_block_group(trans, inode); | ||
| 4309 | 4305 | ||
| 4310 | ret = btrfs_update_inode(trans, root, inode); | 4306 | ret = btrfs_update_inode(trans, root, inode); |
| 4311 | if (ret && ret == -ENOSPC) { | 4307 | if (ret && ret == -ENOSPC) { |
| @@ -4319,7 +4315,6 @@ void btrfs_dirty_inode(struct inode *inode, int flags) | |||
| 4319 | PTR_ERR(trans)); | 4315 | PTR_ERR(trans)); |
| 4320 | return; | 4316 | return; |
| 4321 | } | 4317 | } |
| 4322 | btrfs_set_trans_block_group(trans, inode); | ||
| 4323 | 4318 | ||
| 4324 | ret = btrfs_update_inode(trans, root, inode); | 4319 | ret = btrfs_update_inode(trans, root, inode); |
| 4325 | if (ret) { | 4320 | if (ret) { |
| @@ -4418,8 +4413,8 @@ static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans, | |||
| 4418 | struct btrfs_root *root, | 4413 | struct btrfs_root *root, |
| 4419 | struct inode *dir, | 4414 | struct inode *dir, |
| 4420 | const char *name, int name_len, | 4415 | const char *name, int name_len, |
| 4421 | u64 ref_objectid, u64 objectid, | 4416 | u64 ref_objectid, u64 objectid, int mode, |
| 4422 | u64 alloc_hint, int mode, u64 *index) | 4417 | u64 *index) |
| 4423 | { | 4418 | { |
| 4424 | struct inode *inode; | 4419 | struct inode *inode; |
| 4425 | struct btrfs_inode_item *inode_item; | 4420 | struct btrfs_inode_item *inode_item; |
| @@ -4472,8 +4467,6 @@ static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans, | |||
| 4472 | owner = 0; | 4467 | owner = 0; |
| 4473 | else | 4468 | else |
| 4474 | owner = 1; | 4469 | owner = 1; |
| 4475 | BTRFS_I(inode)->block_group = | ||
| 4476 | btrfs_find_block_group(root, 0, alloc_hint, owner); | ||
| 4477 | 4470 | ||
| 4478 | key[0].objectid = objectid; | 4471 | key[0].objectid = objectid; |
| 4479 | btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY); | 4472 | btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY); |
| @@ -4629,15 +4622,13 @@ static int btrfs_mknod(struct inode *dir, struct dentry *dentry, | |||
| 4629 | if (IS_ERR(trans)) | 4622 | if (IS_ERR(trans)) |
| 4630 | return PTR_ERR(trans); | 4623 | return PTR_ERR(trans); |
| 4631 | 4624 | ||
| 4632 | btrfs_set_trans_block_group(trans, dir); | ||
| 4633 | |||
| 4634 | err = btrfs_find_free_ino(root, &objectid); | 4625 | err = btrfs_find_free_ino(root, &objectid); |
| 4635 | if (err) | 4626 | if (err) |
| 4636 | goto out_unlock; | 4627 | goto out_unlock; |
| 4637 | 4628 | ||
| 4638 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 4629 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
| 4639 | dentry->d_name.len, btrfs_ino(dir), objectid, | 4630 | dentry->d_name.len, btrfs_ino(dir), objectid, |
| 4640 | BTRFS_I(dir)->block_group, mode, &index); | 4631 | mode, &index); |
| 4641 | if (IS_ERR(inode)) { | 4632 | if (IS_ERR(inode)) { |
| 4642 | err = PTR_ERR(inode); | 4633 | err = PTR_ERR(inode); |
| 4643 | goto out_unlock; | 4634 | goto out_unlock; |
| @@ -4649,7 +4640,6 @@ static int btrfs_mknod(struct inode *dir, struct dentry *dentry, | |||
| 4649 | goto out_unlock; | 4640 | goto out_unlock; |
| 4650 | } | 4641 | } |
| 4651 | 4642 | ||
| 4652 | btrfs_set_trans_block_group(trans, inode); | ||
| 4653 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); | 4643 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); |
| 4654 | if (err) | 4644 | if (err) |
| 4655 | drop_inode = 1; | 4645 | drop_inode = 1; |
| @@ -4658,8 +4648,6 @@ static int btrfs_mknod(struct inode *dir, struct dentry *dentry, | |||
| 4658 | init_special_inode(inode, inode->i_mode, rdev); | 4648 | init_special_inode(inode, inode->i_mode, rdev); |
| 4659 | btrfs_update_inode(trans, root, inode); | 4649 | btrfs_update_inode(trans, root, inode); |
| 4660 | } | 4650 | } |
| 4661 | btrfs_update_inode_block_group(trans, inode); | ||
| 4662 | btrfs_update_inode_block_group(trans, dir); | ||
| 4663 | out_unlock: | 4651 | out_unlock: |
| 4664 | nr = trans->blocks_used; | 4652 | nr = trans->blocks_used; |
| 4665 | btrfs_end_transaction_throttle(trans, root); | 4653 | btrfs_end_transaction_throttle(trans, root); |
| @@ -4692,15 +4680,13 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry, | |||
| 4692 | if (IS_ERR(trans)) | 4680 | if (IS_ERR(trans)) |
| 4693 | return PTR_ERR(trans); | 4681 | return PTR_ERR(trans); |
| 4694 | 4682 | ||
| 4695 | btrfs_set_trans_block_group(trans, dir); | ||
| 4696 | |||
| 4697 | err = btrfs_find_free_ino(root, &objectid); | 4683 | err = btrfs_find_free_ino(root, &objectid); |
| 4698 | if (err) | 4684 | if (err) |
| 4699 | goto out_unlock; | 4685 | goto out_unlock; |
| 4700 | 4686 | ||
| 4701 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 4687 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
| 4702 | dentry->d_name.len, btrfs_ino(dir), objectid, | 4688 | dentry->d_name.len, btrfs_ino(dir), objectid, |
| 4703 | BTRFS_I(dir)->block_group, mode, &index); | 4689 | mode, &index); |
| 4704 | if (IS_ERR(inode)) { | 4690 | if (IS_ERR(inode)) { |
| 4705 | err = PTR_ERR(inode); | 4691 | err = PTR_ERR(inode); |
| 4706 | goto out_unlock; | 4692 | goto out_unlock; |
| @@ -4712,7 +4698,6 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry, | |||
| 4712 | goto out_unlock; | 4698 | goto out_unlock; |
| 4713 | } | 4699 | } |
| 4714 | 4700 | ||
| 4715 | btrfs_set_trans_block_group(trans, inode); | ||
| 4716 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); | 4701 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); |
| 4717 | if (err) | 4702 | if (err) |
| 4718 | drop_inode = 1; | 4703 | drop_inode = 1; |
| @@ -4723,8 +4708,6 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry, | |||
| 4723 | inode->i_op = &btrfs_file_inode_operations; | 4708 | inode->i_op = &btrfs_file_inode_operations; |
| 4724 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; | 4709 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
| 4725 | } | 4710 | } |
| 4726 | btrfs_update_inode_block_group(trans, inode); | ||
| 4727 | btrfs_update_inode_block_group(trans, dir); | ||
| 4728 | out_unlock: | 4711 | out_unlock: |
| 4729 | nr = trans->blocks_used; | 4712 | nr = trans->blocks_used; |
| 4730 | btrfs_end_transaction_throttle(trans, root); | 4713 | btrfs_end_transaction_throttle(trans, root); |
| @@ -4771,8 +4754,6 @@ static int btrfs_link(struct dentry *old_dentry, struct inode *dir, | |||
| 4771 | 4754 | ||
| 4772 | btrfs_inc_nlink(inode); | 4755 | btrfs_inc_nlink(inode); |
| 4773 | inode->i_ctime = CURRENT_TIME; | 4756 | inode->i_ctime = CURRENT_TIME; |
| 4774 | |||
| 4775 | btrfs_set_trans_block_group(trans, dir); | ||
| 4776 | ihold(inode); | 4757 | ihold(inode); |
| 4777 | 4758 | ||
| 4778 | err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index); | 4759 | err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index); |
| @@ -4781,7 +4762,6 @@ static int btrfs_link(struct dentry *old_dentry, struct inode *dir, | |||
| 4781 | drop_inode = 1; | 4762 | drop_inode = 1; |
| 4782 | } else { | 4763 | } else { |
| 4783 | struct dentry *parent = dget_parent(dentry); | 4764 | struct dentry *parent = dget_parent(dentry); |
| 4784 | btrfs_update_inode_block_group(trans, dir); | ||
| 4785 | err = btrfs_update_inode(trans, root, inode); | 4765 | err = btrfs_update_inode(trans, root, inode); |
| 4786 | BUG_ON(err); | 4766 | BUG_ON(err); |
| 4787 | btrfs_log_new_name(trans, inode, NULL, parent); | 4767 | btrfs_log_new_name(trans, inode, NULL, parent); |
| @@ -4818,7 +4798,6 @@ static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) | |||
| 4818 | trans = btrfs_start_transaction(root, 5); | 4798 | trans = btrfs_start_transaction(root, 5); |
| 4819 | if (IS_ERR(trans)) | 4799 | if (IS_ERR(trans)) |
| 4820 | return PTR_ERR(trans); | 4800 | return PTR_ERR(trans); |
| 4821 | btrfs_set_trans_block_group(trans, dir); | ||
| 4822 | 4801 | ||
| 4823 | err = btrfs_find_free_ino(root, &objectid); | 4802 | err = btrfs_find_free_ino(root, &objectid); |
| 4824 | if (err) | 4803 | if (err) |
| @@ -4826,8 +4805,7 @@ static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) | |||
| 4826 | 4805 | ||
| 4827 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 4806 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
| 4828 | dentry->d_name.len, btrfs_ino(dir), objectid, | 4807 | dentry->d_name.len, btrfs_ino(dir), objectid, |
| 4829 | BTRFS_I(dir)->block_group, S_IFDIR | mode, | 4808 | S_IFDIR | mode, &index); |
| 4830 | &index); | ||
| 4831 | if (IS_ERR(inode)) { | 4809 | if (IS_ERR(inode)) { |
| 4832 | err = PTR_ERR(inode); | 4810 | err = PTR_ERR(inode); |
| 4833 | goto out_fail; | 4811 | goto out_fail; |
| @@ -4841,7 +4819,6 @@ static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) | |||
| 4841 | 4819 | ||
| 4842 | inode->i_op = &btrfs_dir_inode_operations; | 4820 | inode->i_op = &btrfs_dir_inode_operations; |
| 4843 | inode->i_fop = &btrfs_dir_file_operations; | 4821 | inode->i_fop = &btrfs_dir_file_operations; |
| 4844 | btrfs_set_trans_block_group(trans, inode); | ||
| 4845 | 4822 | ||
| 4846 | btrfs_i_size_write(inode, 0); | 4823 | btrfs_i_size_write(inode, 0); |
| 4847 | err = btrfs_update_inode(trans, root, inode); | 4824 | err = btrfs_update_inode(trans, root, inode); |
| @@ -4855,8 +4832,6 @@ static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) | |||
| 4855 | 4832 | ||
| 4856 | d_instantiate(dentry, inode); | 4833 | d_instantiate(dentry, inode); |
| 4857 | drop_on_err = 0; | 4834 | drop_on_err = 0; |
| 4858 | btrfs_update_inode_block_group(trans, inode); | ||
| 4859 | btrfs_update_inode_block_group(trans, dir); | ||
| 4860 | 4835 | ||
| 4861 | out_fail: | 4836 | out_fail: |
| 4862 | nr = trans->blocks_used; | 4837 | nr = trans->blocks_used; |
| @@ -4989,7 +4964,15 @@ again: | |||
| 4989 | 4964 | ||
| 4990 | if (!path) { | 4965 | if (!path) { |
| 4991 | path = btrfs_alloc_path(); | 4966 | path = btrfs_alloc_path(); |
| 4992 | BUG_ON(!path); | 4967 | if (!path) { |
| 4968 | err = -ENOMEM; | ||
| 4969 | goto out; | ||
| 4970 | } | ||
| 4971 | /* | ||
| 4972 | * Chances are we'll be called again, so go ahead and do | ||
| 4973 | * readahead | ||
| 4974 | */ | ||
| 4975 | path->reada = 1; | ||
| 4993 | } | 4976 | } |
| 4994 | 4977 | ||
| 4995 | ret = btrfs_lookup_file_extent(trans, root, path, | 4978 | ret = btrfs_lookup_file_extent(trans, root, path, |
| @@ -5130,8 +5113,10 @@ again: | |||
| 5130 | kunmap(page); | 5113 | kunmap(page); |
| 5131 | free_extent_map(em); | 5114 | free_extent_map(em); |
| 5132 | em = NULL; | 5115 | em = NULL; |
| 5116 | |||
| 5133 | btrfs_release_path(path); | 5117 | btrfs_release_path(path); |
| 5134 | trans = btrfs_join_transaction(root, 1); | 5118 | trans = btrfs_join_transaction(root); |
| 5119 | |||
| 5135 | if (IS_ERR(trans)) | 5120 | if (IS_ERR(trans)) |
| 5136 | return ERR_CAST(trans); | 5121 | return ERR_CAST(trans); |
| 5137 | goto again; | 5122 | goto again; |
| @@ -5375,7 +5360,7 @@ static struct extent_map *btrfs_new_extent_direct(struct inode *inode, | |||
| 5375 | btrfs_drop_extent_cache(inode, start, start + len - 1, 0); | 5360 | btrfs_drop_extent_cache(inode, start, start + len - 1, 0); |
| 5376 | } | 5361 | } |
| 5377 | 5362 | ||
| 5378 | trans = btrfs_join_transaction(root, 0); | 5363 | trans = btrfs_join_transaction(root); |
| 5379 | if (IS_ERR(trans)) | 5364 | if (IS_ERR(trans)) |
| 5380 | return ERR_CAST(trans); | 5365 | return ERR_CAST(trans); |
| 5381 | 5366 | ||
| @@ -5611,7 +5596,7 @@ static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock, | |||
| 5611 | * to make sure the current transaction stays open | 5596 | * to make sure the current transaction stays open |
| 5612 | * while we look for nocow cross refs | 5597 | * while we look for nocow cross refs |
| 5613 | */ | 5598 | */ |
| 5614 | trans = btrfs_join_transaction(root, 0); | 5599 | trans = btrfs_join_transaction(root); |
| 5615 | if (IS_ERR(trans)) | 5600 | if (IS_ERR(trans)) |
| 5616 | goto must_cow; | 5601 | goto must_cow; |
| 5617 | 5602 | ||
| @@ -5750,7 +5735,7 @@ again: | |||
| 5750 | 5735 | ||
| 5751 | BUG_ON(!ordered); | 5736 | BUG_ON(!ordered); |
| 5752 | 5737 | ||
| 5753 | trans = btrfs_join_transaction(root, 1); | 5738 | trans = btrfs_join_transaction(root); |
| 5754 | if (IS_ERR(trans)) { | 5739 | if (IS_ERR(trans)) { |
| 5755 | err = -ENOMEM; | 5740 | err = -ENOMEM; |
| 5756 | goto out; | 5741 | goto out; |
| @@ -6500,6 +6485,7 @@ out: | |||
| 6500 | static int btrfs_truncate(struct inode *inode) | 6485 | static int btrfs_truncate(struct inode *inode) |
| 6501 | { | 6486 | { |
| 6502 | struct btrfs_root *root = BTRFS_I(inode)->root; | 6487 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 6488 | struct btrfs_block_rsv *rsv; | ||
| 6503 | int ret; | 6489 | int ret; |
| 6504 | int err = 0; | 6490 | int err = 0; |
| 6505 | struct btrfs_trans_handle *trans; | 6491 | struct btrfs_trans_handle *trans; |
| @@ -6513,28 +6499,80 @@ static int btrfs_truncate(struct inode *inode) | |||
| 6513 | btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1); | 6499 | btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1); |
| 6514 | btrfs_ordered_update_i_size(inode, inode->i_size, NULL); | 6500 | btrfs_ordered_update_i_size(inode, inode->i_size, NULL); |
| 6515 | 6501 | ||
| 6516 | trans = btrfs_start_transaction(root, 5); | 6502 | /* |
| 6517 | if (IS_ERR(trans)) | 6503 | * Yes ladies and gentelment, this is indeed ugly. The fact is we have |
| 6518 | return PTR_ERR(trans); | 6504 | * 3 things going on here |
| 6505 | * | ||
| 6506 | * 1) We need to reserve space for our orphan item and the space to | ||
| 6507 | * delete our orphan item. Lord knows we don't want to have a dangling | ||
| 6508 | * orphan item because we didn't reserve space to remove it. | ||
| 6509 | * | ||
| 6510 | * 2) We need to reserve space to update our inode. | ||
| 6511 | * | ||
| 6512 | * 3) We need to have something to cache all the space that is going to | ||
| 6513 | * be free'd up by the truncate operation, but also have some slack | ||
| 6514 | * space reserved in case it uses space during the truncate (thank you | ||
| 6515 | * very much snapshotting). | ||
| 6516 | * | ||
| 6517 | * And we need these to all be seperate. The fact is we can use alot of | ||
| 6518 | * space doing the truncate, and we have no earthly idea how much space | ||
| 6519 | * we will use, so we need the truncate reservation to be seperate so it | ||
| 6520 | * doesn't end up using space reserved for updating the inode or | ||
| 6521 | * removing the orphan item. We also need to be able to stop the | ||
| 6522 | * transaction and start a new one, which means we need to be able to | ||
| 6523 | * update the inode several times, and we have no idea of knowing how | ||
| 6524 | * many times that will be, so we can't just reserve 1 item for the | ||
| 6525 | * entirety of the opration, so that has to be done seperately as well. | ||
| 6526 | * Then there is the orphan item, which does indeed need to be held on | ||
| 6527 | * to for the whole operation, and we need nobody to touch this reserved | ||
| 6528 | * space except the orphan code. | ||
| 6529 | * | ||
| 6530 | * So that leaves us with | ||
| 6531 | * | ||
| 6532 | * 1) root->orphan_block_rsv - for the orphan deletion. | ||
| 6533 | * 2) rsv - for the truncate reservation, which we will steal from the | ||
| 6534 | * transaction reservation. | ||
| 6535 | * 3) fs_info->trans_block_rsv - this will have 1 items worth left for | ||
| 6536 | * updating the inode. | ||
| 6537 | */ | ||
| 6538 | rsv = btrfs_alloc_block_rsv(root); | ||
| 6539 | if (!rsv) | ||
| 6540 | return -ENOMEM; | ||
| 6541 | btrfs_add_durable_block_rsv(root->fs_info, rsv); | ||
| 6519 | 6542 | ||
| 6520 | btrfs_set_trans_block_group(trans, inode); | 6543 | trans = btrfs_start_transaction(root, 4); |
| 6544 | if (IS_ERR(trans)) { | ||
| 6545 | err = PTR_ERR(trans); | ||
| 6546 | goto out; | ||
| 6547 | } | ||
| 6548 | |||
| 6549 | /* | ||
| 6550 | * Reserve space for the truncate process. Truncate should be adding | ||
| 6551 | * space, but if there are snapshots it may end up using space. | ||
| 6552 | */ | ||
| 6553 | ret = btrfs_truncate_reserve_metadata(trans, root, rsv); | ||
| 6554 | BUG_ON(ret); | ||
| 6521 | 6555 | ||
| 6522 | ret = btrfs_orphan_add(trans, inode); | 6556 | ret = btrfs_orphan_add(trans, inode); |
| 6523 | if (ret) { | 6557 | if (ret) { |
| 6524 | btrfs_end_transaction(trans, root); | 6558 | btrfs_end_transaction(trans, root); |
| 6525 | return ret; | 6559 | goto out; |
| 6526 | } | 6560 | } |
| 6527 | 6561 | ||
| 6528 | nr = trans->blocks_used; | 6562 | nr = trans->blocks_used; |
| 6529 | btrfs_end_transaction(trans, root); | 6563 | btrfs_end_transaction(trans, root); |
| 6530 | btrfs_btree_balance_dirty(root, nr); | 6564 | btrfs_btree_balance_dirty(root, nr); |
| 6531 | 6565 | ||
| 6532 | /* Now start a transaction for the truncate */ | 6566 | /* |
| 6533 | trans = btrfs_start_transaction(root, 0); | 6567 | * Ok so we've already migrated our bytes over for the truncate, so here |
| 6534 | if (IS_ERR(trans)) | 6568 | * just reserve the one slot we need for updating the inode. |
| 6535 | return PTR_ERR(trans); | 6569 | */ |
| 6536 | btrfs_set_trans_block_group(trans, inode); | 6570 | trans = btrfs_start_transaction(root, 1); |
| 6537 | trans->block_rsv = root->orphan_block_rsv; | 6571 | if (IS_ERR(trans)) { |
| 6572 | err = PTR_ERR(trans); | ||
| 6573 | goto out; | ||
| 6574 | } | ||
| 6575 | trans->block_rsv = rsv; | ||
| 6538 | 6576 | ||
| 6539 | /* | 6577 | /* |
| 6540 | * setattr is responsible for setting the ordered_data_close flag, | 6578 | * setattr is responsible for setting the ordered_data_close flag, |
| @@ -6558,24 +6596,17 @@ static int btrfs_truncate(struct inode *inode) | |||
| 6558 | 6596 | ||
| 6559 | while (1) { | 6597 | while (1) { |
| 6560 | if (!trans) { | 6598 | if (!trans) { |
| 6561 | trans = btrfs_start_transaction(root, 0); | 6599 | trans = btrfs_start_transaction(root, 3); |
| 6562 | if (IS_ERR(trans)) | 6600 | if (IS_ERR(trans)) { |
| 6563 | return PTR_ERR(trans); | 6601 | err = PTR_ERR(trans); |
| 6564 | btrfs_set_trans_block_group(trans, inode); | 6602 | goto out; |
| 6565 | trans->block_rsv = root->orphan_block_rsv; | 6603 | } |
| 6566 | } | ||
| 6567 | 6604 | ||
| 6568 | ret = btrfs_block_rsv_check(trans, root, | 6605 | ret = btrfs_truncate_reserve_metadata(trans, root, |
| 6569 | root->orphan_block_rsv, 0, 5); | 6606 | rsv); |
| 6570 | if (ret == -EAGAIN) { | 6607 | BUG_ON(ret); |
| 6571 | ret = btrfs_commit_transaction(trans, root); | 6608 | |
| 6572 | if (ret) | 6609 | trans->block_rsv = rsv; |
| 6573 | return ret; | ||
| 6574 | trans = NULL; | ||
| 6575 | continue; | ||
| 6576 | } else if (ret) { | ||
| 6577 | err = ret; | ||
| 6578 | break; | ||
| 6579 | } | 6610 | } |
| 6580 | 6611 | ||
| 6581 | ret = btrfs_truncate_inode_items(trans, root, inode, | 6612 | ret = btrfs_truncate_inode_items(trans, root, inode, |
| @@ -6586,6 +6617,7 @@ static int btrfs_truncate(struct inode *inode) | |||
| 6586 | break; | 6617 | break; |
| 6587 | } | 6618 | } |
| 6588 | 6619 | ||
| 6620 | trans->block_rsv = &root->fs_info->trans_block_rsv; | ||
| 6589 | ret = btrfs_update_inode(trans, root, inode); | 6621 | ret = btrfs_update_inode(trans, root, inode); |
| 6590 | if (ret) { | 6622 | if (ret) { |
| 6591 | err = ret; | 6623 | err = ret; |
| @@ -6599,6 +6631,7 @@ static int btrfs_truncate(struct inode *inode) | |||
| 6599 | } | 6631 | } |
| 6600 | 6632 | ||
| 6601 | if (ret == 0 && inode->i_nlink > 0) { | 6633 | if (ret == 0 && inode->i_nlink > 0) { |
| 6634 | trans->block_rsv = root->orphan_block_rsv; | ||
| 6602 | ret = btrfs_orphan_del(trans, inode); | 6635 | ret = btrfs_orphan_del(trans, inode); |
| 6603 | if (ret) | 6636 | if (ret) |
| 6604 | err = ret; | 6637 | err = ret; |
| @@ -6610,15 +6643,20 @@ static int btrfs_truncate(struct inode *inode) | |||
| 6610 | ret = btrfs_orphan_del(NULL, inode); | 6643 | ret = btrfs_orphan_del(NULL, inode); |
| 6611 | } | 6644 | } |
| 6612 | 6645 | ||
| 6646 | trans->block_rsv = &root->fs_info->trans_block_rsv; | ||
| 6613 | ret = btrfs_update_inode(trans, root, inode); | 6647 | ret = btrfs_update_inode(trans, root, inode); |
| 6614 | if (ret && !err) | 6648 | if (ret && !err) |
| 6615 | err = ret; | 6649 | err = ret; |
| 6616 | 6650 | ||
| 6617 | nr = trans->blocks_used; | 6651 | nr = trans->blocks_used; |
| 6618 | ret = btrfs_end_transaction_throttle(trans, root); | 6652 | ret = btrfs_end_transaction_throttle(trans, root); |
| 6653 | btrfs_btree_balance_dirty(root, nr); | ||
| 6654 | |||
| 6655 | out: | ||
| 6656 | btrfs_free_block_rsv(root, rsv); | ||
| 6657 | |||
| 6619 | if (ret && !err) | 6658 | if (ret && !err) |
| 6620 | err = ret; | 6659 | err = ret; |
| 6621 | btrfs_btree_balance_dirty(root, nr); | ||
| 6622 | 6660 | ||
| 6623 | return err; | 6661 | return err; |
| 6624 | } | 6662 | } |
| @@ -6627,15 +6665,14 @@ static int btrfs_truncate(struct inode *inode) | |||
| 6627 | * create a new subvolume directory/inode (helper for the ioctl). | 6665 | * create a new subvolume directory/inode (helper for the ioctl). |
| 6628 | */ | 6666 | */ |
| 6629 | int btrfs_create_subvol_root(struct btrfs_trans_handle *trans, | 6667 | int btrfs_create_subvol_root(struct btrfs_trans_handle *trans, |
| 6630 | struct btrfs_root *new_root, | 6668 | struct btrfs_root *new_root, u64 new_dirid) |
| 6631 | u64 new_dirid, u64 alloc_hint) | ||
| 6632 | { | 6669 | { |
| 6633 | struct inode *inode; | 6670 | struct inode *inode; |
| 6634 | int err; | 6671 | int err; |
| 6635 | u64 index = 0; | 6672 | u64 index = 0; |
| 6636 | 6673 | ||
| 6637 | inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid, | 6674 | inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid, |
| 6638 | new_dirid, alloc_hint, S_IFDIR | 0700, &index); | 6675 | new_dirid, S_IFDIR | 0700, &index); |
| 6639 | if (IS_ERR(inode)) | 6676 | if (IS_ERR(inode)) |
| 6640 | return PTR_ERR(inode); | 6677 | return PTR_ERR(inode); |
| 6641 | inode->i_op = &btrfs_dir_inode_operations; | 6678 | inode->i_op = &btrfs_dir_inode_operations; |
| @@ -6748,21 +6785,6 @@ void btrfs_destroy_inode(struct inode *inode) | |||
| 6748 | spin_unlock(&root->fs_info->ordered_extent_lock); | 6785 | spin_unlock(&root->fs_info->ordered_extent_lock); |
| 6749 | } | 6786 | } |
| 6750 | 6787 | ||
| 6751 | if (root == root->fs_info->tree_root) { | ||
| 6752 | struct btrfs_block_group_cache *block_group; | ||
| 6753 | |||
| 6754 | block_group = btrfs_lookup_block_group(root->fs_info, | ||
| 6755 | BTRFS_I(inode)->block_group); | ||
| 6756 | if (block_group && block_group->inode == inode) { | ||
| 6757 | spin_lock(&block_group->lock); | ||
| 6758 | block_group->inode = NULL; | ||
| 6759 | spin_unlock(&block_group->lock); | ||
| 6760 | btrfs_put_block_group(block_group); | ||
| 6761 | } else if (block_group) { | ||
| 6762 | btrfs_put_block_group(block_group); | ||
| 6763 | } | ||
| 6764 | } | ||
| 6765 | |||
| 6766 | spin_lock(&root->orphan_lock); | 6788 | spin_lock(&root->orphan_lock); |
| 6767 | if (!list_empty(&BTRFS_I(inode)->i_orphan)) { | 6789 | if (!list_empty(&BTRFS_I(inode)->i_orphan)) { |
| 6768 | printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n", | 6790 | printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n", |
| @@ -6948,8 +6970,6 @@ static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
| 6948 | goto out_notrans; | 6970 | goto out_notrans; |
| 6949 | } | 6971 | } |
| 6950 | 6972 | ||
| 6951 | btrfs_set_trans_block_group(trans, new_dir); | ||
| 6952 | |||
| 6953 | if (dest != root) | 6973 | if (dest != root) |
| 6954 | btrfs_record_root_in_trans(trans, dest); | 6974 | btrfs_record_root_in_trans(trans, dest); |
| 6955 | 6975 | ||
| @@ -7131,16 +7151,13 @@ static int btrfs_symlink(struct inode *dir, struct dentry *dentry, | |||
| 7131 | if (IS_ERR(trans)) | 7151 | if (IS_ERR(trans)) |
| 7132 | return PTR_ERR(trans); | 7152 | return PTR_ERR(trans); |
| 7133 | 7153 | ||
| 7134 | btrfs_set_trans_block_group(trans, dir); | ||
| 7135 | |||
| 7136 | err = btrfs_find_free_ino(root, &objectid); | 7154 | err = btrfs_find_free_ino(root, &objectid); |
| 7137 | if (err) | 7155 | if (err) |
| 7138 | goto out_unlock; | 7156 | goto out_unlock; |
| 7139 | 7157 | ||
| 7140 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 7158 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
| 7141 | dentry->d_name.len, btrfs_ino(dir), objectid, | 7159 | dentry->d_name.len, btrfs_ino(dir), objectid, |
| 7142 | BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO, | 7160 | S_IFLNK|S_IRWXUGO, &index); |
| 7143 | &index); | ||
| 7144 | if (IS_ERR(inode)) { | 7161 | if (IS_ERR(inode)) { |
| 7145 | err = PTR_ERR(inode); | 7162 | err = PTR_ERR(inode); |
| 7146 | goto out_unlock; | 7163 | goto out_unlock; |
| @@ -7152,7 +7169,6 @@ static int btrfs_symlink(struct inode *dir, struct dentry *dentry, | |||
| 7152 | goto out_unlock; | 7169 | goto out_unlock; |
| 7153 | } | 7170 | } |
| 7154 | 7171 | ||
| 7155 | btrfs_set_trans_block_group(trans, inode); | ||
| 7156 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); | 7172 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); |
| 7157 | if (err) | 7173 | if (err) |
| 7158 | drop_inode = 1; | 7174 | drop_inode = 1; |
| @@ -7163,8 +7179,6 @@ static int btrfs_symlink(struct inode *dir, struct dentry *dentry, | |||
| 7163 | inode->i_op = &btrfs_file_inode_operations; | 7179 | inode->i_op = &btrfs_file_inode_operations; |
| 7164 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; | 7180 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
| 7165 | } | 7181 | } |
| 7166 | btrfs_update_inode_block_group(trans, inode); | ||
| 7167 | btrfs_update_inode_block_group(trans, dir); | ||
| 7168 | if (drop_inode) | 7182 | if (drop_inode) |
| 7169 | goto out_unlock; | 7183 | goto out_unlock; |
| 7170 | 7184 | ||
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 85e818ce00c5..a3c4751e07db 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c | |||
| @@ -243,7 +243,7 @@ static int btrfs_ioctl_setflags(struct file *file, void __user *arg) | |||
| 243 | ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS); | 243 | ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS); |
| 244 | } | 244 | } |
| 245 | 245 | ||
| 246 | trans = btrfs_join_transaction(root, 1); | 246 | trans = btrfs_join_transaction(root); |
| 247 | BUG_ON(IS_ERR(trans)); | 247 | BUG_ON(IS_ERR(trans)); |
| 248 | 248 | ||
| 249 | ret = btrfs_update_inode(trans, root, inode); | 249 | ret = btrfs_update_inode(trans, root, inode); |
| @@ -414,8 +414,7 @@ static noinline int create_subvol(struct btrfs_root *root, | |||
| 414 | 414 | ||
| 415 | btrfs_record_root_in_trans(trans, new_root); | 415 | btrfs_record_root_in_trans(trans, new_root); |
| 416 | 416 | ||
| 417 | ret = btrfs_create_subvol_root(trans, new_root, new_dirid, | 417 | ret = btrfs_create_subvol_root(trans, new_root, new_dirid); |
| 418 | BTRFS_I(dir)->block_group); | ||
| 419 | /* | 418 | /* |
| 420 | * insert the directory item | 419 | * insert the directory item |
| 421 | */ | 420 | */ |
| @@ -483,8 +482,10 @@ static int create_snapshot(struct btrfs_root *root, struct dentry *dentry, | |||
| 483 | ret = btrfs_snap_reserve_metadata(trans, pending_snapshot); | 482 | ret = btrfs_snap_reserve_metadata(trans, pending_snapshot); |
| 484 | BUG_ON(ret); | 483 | BUG_ON(ret); |
| 485 | 484 | ||
| 485 | spin_lock(&root->fs_info->trans_lock); | ||
| 486 | list_add(&pending_snapshot->list, | 486 | list_add(&pending_snapshot->list, |
| 487 | &trans->transaction->pending_snapshots); | 487 | &trans->transaction->pending_snapshots); |
| 488 | spin_unlock(&root->fs_info->trans_lock); | ||
| 488 | if (async_transid) { | 489 | if (async_transid) { |
| 489 | *async_transid = trans->transid; | 490 | *async_transid = trans->transid; |
| 490 | ret = btrfs_commit_transaction_async(trans, | 491 | ret = btrfs_commit_transaction_async(trans, |
| @@ -707,16 +708,17 @@ static int find_new_extents(struct btrfs_root *root, | |||
| 707 | struct btrfs_file_extent_item *extent; | 708 | struct btrfs_file_extent_item *extent; |
| 708 | int type; | 709 | int type; |
| 709 | int ret; | 710 | int ret; |
| 711 | u64 ino = btrfs_ino(inode); | ||
| 710 | 712 | ||
| 711 | path = btrfs_alloc_path(); | 713 | path = btrfs_alloc_path(); |
| 712 | if (!path) | 714 | if (!path) |
| 713 | return -ENOMEM; | 715 | return -ENOMEM; |
| 714 | 716 | ||
| 715 | min_key.objectid = inode->i_ino; | 717 | min_key.objectid = ino; |
| 716 | min_key.type = BTRFS_EXTENT_DATA_KEY; | 718 | min_key.type = BTRFS_EXTENT_DATA_KEY; |
| 717 | min_key.offset = *off; | 719 | min_key.offset = *off; |
| 718 | 720 | ||
| 719 | max_key.objectid = inode->i_ino; | 721 | max_key.objectid = ino; |
| 720 | max_key.type = (u8)-1; | 722 | max_key.type = (u8)-1; |
| 721 | max_key.offset = (u64)-1; | 723 | max_key.offset = (u64)-1; |
| 722 | 724 | ||
| @@ -727,7 +729,7 @@ static int find_new_extents(struct btrfs_root *root, | |||
| 727 | path, 0, newer_than); | 729 | path, 0, newer_than); |
| 728 | if (ret != 0) | 730 | if (ret != 0) |
| 729 | goto none; | 731 | goto none; |
| 730 | if (min_key.objectid != inode->i_ino) | 732 | if (min_key.objectid != ino) |
| 731 | goto none; | 733 | goto none; |
| 732 | if (min_key.type != BTRFS_EXTENT_DATA_KEY) | 734 | if (min_key.type != BTRFS_EXTENT_DATA_KEY) |
| 733 | goto none; | 735 | goto none; |
| @@ -2054,29 +2056,34 @@ static long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg) | |||
| 2054 | 2056 | ||
| 2055 | static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg) | 2057 | static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg) |
| 2056 | { | 2058 | { |
| 2057 | struct btrfs_ioctl_fs_info_args fi_args; | 2059 | struct btrfs_ioctl_fs_info_args *fi_args; |
| 2058 | struct btrfs_device *device; | 2060 | struct btrfs_device *device; |
| 2059 | struct btrfs_device *next; | 2061 | struct btrfs_device *next; |
| 2060 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; | 2062 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 2063 | int ret = 0; | ||
| 2061 | 2064 | ||
| 2062 | if (!capable(CAP_SYS_ADMIN)) | 2065 | if (!capable(CAP_SYS_ADMIN)) |
| 2063 | return -EPERM; | 2066 | return -EPERM; |
| 2064 | 2067 | ||
| 2065 | fi_args.num_devices = fs_devices->num_devices; | 2068 | fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL); |
| 2066 | fi_args.max_id = 0; | 2069 | if (!fi_args) |
| 2067 | memcpy(&fi_args.fsid, root->fs_info->fsid, sizeof(fi_args.fsid)); | 2070 | return -ENOMEM; |
| 2071 | |||
| 2072 | fi_args->num_devices = fs_devices->num_devices; | ||
| 2073 | memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid)); | ||
| 2068 | 2074 | ||
| 2069 | mutex_lock(&fs_devices->device_list_mutex); | 2075 | mutex_lock(&fs_devices->device_list_mutex); |
| 2070 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { | 2076 | list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) { |
| 2071 | if (device->devid > fi_args.max_id) | 2077 | if (device->devid > fi_args->max_id) |
| 2072 | fi_args.max_id = device->devid; | 2078 | fi_args->max_id = device->devid; |
| 2073 | } | 2079 | } |
| 2074 | mutex_unlock(&fs_devices->device_list_mutex); | 2080 | mutex_unlock(&fs_devices->device_list_mutex); |
| 2075 | 2081 | ||
| 2076 | if (copy_to_user(arg, &fi_args, sizeof(fi_args))) | 2082 | if (copy_to_user(arg, fi_args, sizeof(*fi_args))) |
| 2077 | return -EFAULT; | 2083 | ret = -EFAULT; |
| 2078 | 2084 | ||
| 2079 | return 0; | 2085 | kfree(fi_args); |
| 2086 | return ret; | ||
| 2080 | } | 2087 | } |
| 2081 | 2088 | ||
| 2082 | static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg) | 2089 | static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg) |
| @@ -2489,12 +2496,10 @@ static long btrfs_ioctl_trans_start(struct file *file) | |||
| 2489 | if (ret) | 2496 | if (ret) |
| 2490 | goto out; | 2497 | goto out; |
| 2491 | 2498 | ||
| 2492 | mutex_lock(&root->fs_info->trans_mutex); | 2499 | atomic_inc(&root->fs_info->open_ioctl_trans); |
| 2493 | root->fs_info->open_ioctl_trans++; | ||
| 2494 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 2495 | 2500 | ||
| 2496 | ret = -ENOMEM; | 2501 | ret = -ENOMEM; |
| 2497 | trans = btrfs_start_ioctl_transaction(root, 0); | 2502 | trans = btrfs_start_ioctl_transaction(root); |
| 2498 | if (IS_ERR(trans)) | 2503 | if (IS_ERR(trans)) |
| 2499 | goto out_drop; | 2504 | goto out_drop; |
| 2500 | 2505 | ||
| @@ -2502,9 +2507,7 @@ static long btrfs_ioctl_trans_start(struct file *file) | |||
| 2502 | return 0; | 2507 | return 0; |
| 2503 | 2508 | ||
| 2504 | out_drop: | 2509 | out_drop: |
| 2505 | mutex_lock(&root->fs_info->trans_mutex); | 2510 | atomic_dec(&root->fs_info->open_ioctl_trans); |
| 2506 | root->fs_info->open_ioctl_trans--; | ||
| 2507 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 2508 | mnt_drop_write(file->f_path.mnt); | 2511 | mnt_drop_write(file->f_path.mnt); |
| 2509 | out: | 2512 | out: |
| 2510 | return ret; | 2513 | return ret; |
| @@ -2738,9 +2741,7 @@ long btrfs_ioctl_trans_end(struct file *file) | |||
| 2738 | 2741 | ||
| 2739 | btrfs_end_transaction(trans, root); | 2742 | btrfs_end_transaction(trans, root); |
| 2740 | 2743 | ||
| 2741 | mutex_lock(&root->fs_info->trans_mutex); | 2744 | atomic_dec(&root->fs_info->open_ioctl_trans); |
| 2742 | root->fs_info->open_ioctl_trans--; | ||
| 2743 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 2744 | 2745 | ||
| 2745 | mnt_drop_write(file->f_path.mnt); | 2746 | mnt_drop_write(file->f_path.mnt); |
| 2746 | return 0; | 2747 | return 0; |
diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c index ca38eca70af0..5e0a3dc79a45 100644 --- a/fs/btrfs/relocation.c +++ b/fs/btrfs/relocation.c | |||
| @@ -677,6 +677,8 @@ struct backref_node *build_backref_tree(struct reloc_control *rc, | |||
| 677 | err = -ENOMEM; | 677 | err = -ENOMEM; |
| 678 | goto out; | 678 | goto out; |
| 679 | } | 679 | } |
| 680 | path1->reada = 1; | ||
| 681 | path2->reada = 2; | ||
| 680 | 682 | ||
| 681 | node = alloc_backref_node(cache); | 683 | node = alloc_backref_node(cache); |
| 682 | if (!node) { | 684 | if (!node) { |
| @@ -1366,7 +1368,7 @@ int btrfs_update_reloc_root(struct btrfs_trans_handle *trans, | |||
| 1366 | int ret; | 1368 | int ret; |
| 1367 | 1369 | ||
| 1368 | if (!root->reloc_root) | 1370 | if (!root->reloc_root) |
| 1369 | return 0; | 1371 | goto out; |
| 1370 | 1372 | ||
| 1371 | reloc_root = root->reloc_root; | 1373 | reloc_root = root->reloc_root; |
| 1372 | root_item = &reloc_root->root_item; | 1374 | root_item = &reloc_root->root_item; |
| @@ -1388,6 +1390,8 @@ int btrfs_update_reloc_root(struct btrfs_trans_handle *trans, | |||
| 1388 | ret = btrfs_update_root(trans, root->fs_info->tree_root, | 1390 | ret = btrfs_update_root(trans, root->fs_info->tree_root, |
| 1389 | &reloc_root->root_key, root_item); | 1391 | &reloc_root->root_key, root_item); |
| 1390 | BUG_ON(ret); | 1392 | BUG_ON(ret); |
| 1393 | |||
| 1394 | out: | ||
| 1391 | return 0; | 1395 | return 0; |
| 1392 | } | 1396 | } |
| 1393 | 1397 | ||
| @@ -1999,6 +2003,7 @@ static noinline_for_stack int merge_reloc_root(struct reloc_control *rc, | |||
| 1999 | path = btrfs_alloc_path(); | 2003 | path = btrfs_alloc_path(); |
| 2000 | if (!path) | 2004 | if (!path) |
| 2001 | return -ENOMEM; | 2005 | return -ENOMEM; |
| 2006 | path->reada = 1; | ||
| 2002 | 2007 | ||
| 2003 | reloc_root = root->reloc_root; | 2008 | reloc_root = root->reloc_root; |
| 2004 | root_item = &reloc_root->root_item; | 2009 | root_item = &reloc_root->root_item; |
| @@ -2139,10 +2144,11 @@ int prepare_to_merge(struct reloc_control *rc, int err) | |||
| 2139 | u64 num_bytes = 0; | 2144 | u64 num_bytes = 0; |
| 2140 | int ret; | 2145 | int ret; |
| 2141 | 2146 | ||
| 2142 | mutex_lock(&root->fs_info->trans_mutex); | 2147 | mutex_lock(&root->fs_info->reloc_mutex); |
| 2143 | rc->merging_rsv_size += root->nodesize * (BTRFS_MAX_LEVEL - 1) * 2; | 2148 | rc->merging_rsv_size += root->nodesize * (BTRFS_MAX_LEVEL - 1) * 2; |
| 2144 | rc->merging_rsv_size += rc->nodes_relocated * 2; | 2149 | rc->merging_rsv_size += rc->nodes_relocated * 2; |
| 2145 | mutex_unlock(&root->fs_info->trans_mutex); | 2150 | mutex_unlock(&root->fs_info->reloc_mutex); |
| 2151 | |||
| 2146 | again: | 2152 | again: |
| 2147 | if (!err) { | 2153 | if (!err) { |
| 2148 | num_bytes = rc->merging_rsv_size; | 2154 | num_bytes = rc->merging_rsv_size; |
| @@ -2152,7 +2158,7 @@ again: | |||
| 2152 | err = ret; | 2158 | err = ret; |
| 2153 | } | 2159 | } |
| 2154 | 2160 | ||
| 2155 | trans = btrfs_join_transaction(rc->extent_root, 1); | 2161 | trans = btrfs_join_transaction(rc->extent_root); |
| 2156 | if (IS_ERR(trans)) { | 2162 | if (IS_ERR(trans)) { |
| 2157 | if (!err) | 2163 | if (!err) |
| 2158 | btrfs_block_rsv_release(rc->extent_root, | 2164 | btrfs_block_rsv_release(rc->extent_root, |
| @@ -2211,9 +2217,16 @@ int merge_reloc_roots(struct reloc_control *rc) | |||
| 2211 | int ret; | 2217 | int ret; |
| 2212 | again: | 2218 | again: |
| 2213 | root = rc->extent_root; | 2219 | root = rc->extent_root; |
| 2214 | mutex_lock(&root->fs_info->trans_mutex); | 2220 | |
| 2221 | /* | ||
| 2222 | * this serializes us with btrfs_record_root_in_transaction, | ||
| 2223 | * we have to make sure nobody is in the middle of | ||
| 2224 | * adding their roots to the list while we are | ||
| 2225 | * doing this splice | ||
| 2226 | */ | ||
| 2227 | mutex_lock(&root->fs_info->reloc_mutex); | ||
| 2215 | list_splice_init(&rc->reloc_roots, &reloc_roots); | 2228 | list_splice_init(&rc->reloc_roots, &reloc_roots); |
| 2216 | mutex_unlock(&root->fs_info->trans_mutex); | 2229 | mutex_unlock(&root->fs_info->reloc_mutex); |
| 2217 | 2230 | ||
| 2218 | while (!list_empty(&reloc_roots)) { | 2231 | while (!list_empty(&reloc_roots)) { |
| 2219 | found = 1; | 2232 | found = 1; |
| @@ -3236,7 +3249,7 @@ truncate: | |||
| 3236 | goto out; | 3249 | goto out; |
| 3237 | } | 3250 | } |
| 3238 | 3251 | ||
| 3239 | trans = btrfs_join_transaction(root, 0); | 3252 | trans = btrfs_join_transaction(root); |
| 3240 | if (IS_ERR(trans)) { | 3253 | if (IS_ERR(trans)) { |
| 3241 | btrfs_free_path(path); | 3254 | btrfs_free_path(path); |
| 3242 | ret = PTR_ERR(trans); | 3255 | ret = PTR_ERR(trans); |
| @@ -3300,6 +3313,7 @@ static int find_data_references(struct reloc_control *rc, | |||
| 3300 | path = btrfs_alloc_path(); | 3313 | path = btrfs_alloc_path(); |
| 3301 | if (!path) | 3314 | if (!path) |
| 3302 | return -ENOMEM; | 3315 | return -ENOMEM; |
| 3316 | path->reada = 1; | ||
| 3303 | 3317 | ||
| 3304 | root = read_fs_root(rc->extent_root->fs_info, ref_root); | 3318 | root = read_fs_root(rc->extent_root->fs_info, ref_root); |
| 3305 | if (IS_ERR(root)) { | 3319 | if (IS_ERR(root)) { |
| @@ -3586,17 +3600,19 @@ next: | |||
| 3586 | static void set_reloc_control(struct reloc_control *rc) | 3600 | static void set_reloc_control(struct reloc_control *rc) |
| 3587 | { | 3601 | { |
| 3588 | struct btrfs_fs_info *fs_info = rc->extent_root->fs_info; | 3602 | struct btrfs_fs_info *fs_info = rc->extent_root->fs_info; |
| 3589 | mutex_lock(&fs_info->trans_mutex); | 3603 | |
| 3604 | mutex_lock(&fs_info->reloc_mutex); | ||
| 3590 | fs_info->reloc_ctl = rc; | 3605 | fs_info->reloc_ctl = rc; |
| 3591 | mutex_unlock(&fs_info->trans_mutex); | 3606 | mutex_unlock(&fs_info->reloc_mutex); |
| 3592 | } | 3607 | } |
| 3593 | 3608 | ||
| 3594 | static void unset_reloc_control(struct reloc_control *rc) | 3609 | static void unset_reloc_control(struct reloc_control *rc) |
| 3595 | { | 3610 | { |
| 3596 | struct btrfs_fs_info *fs_info = rc->extent_root->fs_info; | 3611 | struct btrfs_fs_info *fs_info = rc->extent_root->fs_info; |
| 3597 | mutex_lock(&fs_info->trans_mutex); | 3612 | |
| 3613 | mutex_lock(&fs_info->reloc_mutex); | ||
| 3598 | fs_info->reloc_ctl = NULL; | 3614 | fs_info->reloc_ctl = NULL; |
| 3599 | mutex_unlock(&fs_info->trans_mutex); | 3615 | mutex_unlock(&fs_info->reloc_mutex); |
| 3600 | } | 3616 | } |
| 3601 | 3617 | ||
| 3602 | static int check_extent_flags(u64 flags) | 3618 | static int check_extent_flags(u64 flags) |
| @@ -3645,7 +3661,7 @@ int prepare_to_relocate(struct reloc_control *rc) | |||
| 3645 | rc->create_reloc_tree = 1; | 3661 | rc->create_reloc_tree = 1; |
| 3646 | set_reloc_control(rc); | 3662 | set_reloc_control(rc); |
| 3647 | 3663 | ||
| 3648 | trans = btrfs_join_transaction(rc->extent_root, 1); | 3664 | trans = btrfs_join_transaction(rc->extent_root); |
| 3649 | BUG_ON(IS_ERR(trans)); | 3665 | BUG_ON(IS_ERR(trans)); |
| 3650 | btrfs_commit_transaction(trans, rc->extent_root); | 3666 | btrfs_commit_transaction(trans, rc->extent_root); |
| 3651 | return 0; | 3667 | return 0; |
| @@ -3668,6 +3684,7 @@ static noinline_for_stack int relocate_block_group(struct reloc_control *rc) | |||
| 3668 | path = btrfs_alloc_path(); | 3684 | path = btrfs_alloc_path(); |
| 3669 | if (!path) | 3685 | if (!path) |
| 3670 | return -ENOMEM; | 3686 | return -ENOMEM; |
| 3687 | path->reada = 1; | ||
| 3671 | 3688 | ||
| 3672 | ret = prepare_to_relocate(rc); | 3689 | ret = prepare_to_relocate(rc); |
| 3673 | if (ret) { | 3690 | if (ret) { |
| @@ -3834,7 +3851,7 @@ restart: | |||
| 3834 | btrfs_block_rsv_release(rc->extent_root, rc->block_rsv, (u64)-1); | 3851 | btrfs_block_rsv_release(rc->extent_root, rc->block_rsv, (u64)-1); |
| 3835 | 3852 | ||
| 3836 | /* get rid of pinned extents */ | 3853 | /* get rid of pinned extents */ |
| 3837 | trans = btrfs_join_transaction(rc->extent_root, 1); | 3854 | trans = btrfs_join_transaction(rc->extent_root); |
| 3838 | if (IS_ERR(trans)) | 3855 | if (IS_ERR(trans)) |
| 3839 | err = PTR_ERR(trans); | 3856 | err = PTR_ERR(trans); |
| 3840 | else | 3857 | else |
| @@ -4093,6 +4110,7 @@ int btrfs_recover_relocation(struct btrfs_root *root) | |||
| 4093 | path = btrfs_alloc_path(); | 4110 | path = btrfs_alloc_path(); |
| 4094 | if (!path) | 4111 | if (!path) |
| 4095 | return -ENOMEM; | 4112 | return -ENOMEM; |
| 4113 | path->reada = -1; | ||
| 4096 | 4114 | ||
| 4097 | key.objectid = BTRFS_TREE_RELOC_OBJECTID; | 4115 | key.objectid = BTRFS_TREE_RELOC_OBJECTID; |
| 4098 | key.type = BTRFS_ROOT_ITEM_KEY; | 4116 | key.type = BTRFS_ROOT_ITEM_KEY; |
| @@ -4159,7 +4177,7 @@ int btrfs_recover_relocation(struct btrfs_root *root) | |||
| 4159 | 4177 | ||
| 4160 | set_reloc_control(rc); | 4178 | set_reloc_control(rc); |
| 4161 | 4179 | ||
| 4162 | trans = btrfs_join_transaction(rc->extent_root, 1); | 4180 | trans = btrfs_join_transaction(rc->extent_root); |
| 4163 | if (IS_ERR(trans)) { | 4181 | if (IS_ERR(trans)) { |
| 4164 | unset_reloc_control(rc); | 4182 | unset_reloc_control(rc); |
| 4165 | err = PTR_ERR(trans); | 4183 | err = PTR_ERR(trans); |
| @@ -4193,7 +4211,7 @@ int btrfs_recover_relocation(struct btrfs_root *root) | |||
| 4193 | 4211 | ||
| 4194 | unset_reloc_control(rc); | 4212 | unset_reloc_control(rc); |
| 4195 | 4213 | ||
| 4196 | trans = btrfs_join_transaction(rc->extent_root, 1); | 4214 | trans = btrfs_join_transaction(rc->extent_root); |
| 4197 | if (IS_ERR(trans)) | 4215 | if (IS_ERR(trans)) |
| 4198 | err = PTR_ERR(trans); | 4216 | err = PTR_ERR(trans); |
| 4199 | else | 4217 | else |
diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c index 6dfed0c27ac3..a8d03d5efb5d 100644 --- a/fs/btrfs/scrub.c +++ b/fs/btrfs/scrub.c | |||
| @@ -16,13 +16,7 @@ | |||
| 16 | * Boston, MA 021110-1307, USA. | 16 | * Boston, MA 021110-1307, USA. |
| 17 | */ | 17 | */ |
| 18 | 18 | ||
| 19 | #include <linux/sched.h> | ||
| 20 | #include <linux/pagemap.h> | ||
| 21 | #include <linux/writeback.h> | ||
| 22 | #include <linux/blkdev.h> | 19 | #include <linux/blkdev.h> |
| 23 | #include <linux/rbtree.h> | ||
| 24 | #include <linux/slab.h> | ||
| 25 | #include <linux/workqueue.h> | ||
| 26 | #include "ctree.h" | 20 | #include "ctree.h" |
| 27 | #include "volumes.h" | 21 | #include "volumes.h" |
| 28 | #include "disk-io.h" | 22 | #include "disk-io.h" |
| @@ -117,33 +111,37 @@ static void scrub_free_csums(struct scrub_dev *sdev) | |||
| 117 | } | 111 | } |
| 118 | } | 112 | } |
| 119 | 113 | ||
| 114 | static void scrub_free_bio(struct bio *bio) | ||
| 115 | { | ||
| 116 | int i; | ||
| 117 | struct page *last_page = NULL; | ||
| 118 | |||
| 119 | if (!bio) | ||
| 120 | return; | ||
| 121 | |||
| 122 | for (i = 0; i < bio->bi_vcnt; ++i) { | ||
| 123 | if (bio->bi_io_vec[i].bv_page == last_page) | ||
| 124 | continue; | ||
| 125 | last_page = bio->bi_io_vec[i].bv_page; | ||
| 126 | __free_page(last_page); | ||
| 127 | } | ||
| 128 | bio_put(bio); | ||
| 129 | } | ||
| 130 | |||
| 120 | static noinline_for_stack void scrub_free_dev(struct scrub_dev *sdev) | 131 | static noinline_for_stack void scrub_free_dev(struct scrub_dev *sdev) |
| 121 | { | 132 | { |
| 122 | int i; | 133 | int i; |
| 123 | int j; | ||
| 124 | struct page *last_page; | ||
| 125 | 134 | ||
| 126 | if (!sdev) | 135 | if (!sdev) |
| 127 | return; | 136 | return; |
| 128 | 137 | ||
| 129 | for (i = 0; i < SCRUB_BIOS_PER_DEV; ++i) { | 138 | for (i = 0; i < SCRUB_BIOS_PER_DEV; ++i) { |
| 130 | struct scrub_bio *sbio = sdev->bios[i]; | 139 | struct scrub_bio *sbio = sdev->bios[i]; |
| 131 | struct bio *bio; | ||
| 132 | 140 | ||
| 133 | if (!sbio) | 141 | if (!sbio) |
| 134 | break; | 142 | break; |
| 135 | 143 | ||
| 136 | bio = sbio->bio; | 144 | scrub_free_bio(sbio->bio); |
| 137 | if (bio) { | ||
| 138 | last_page = NULL; | ||
| 139 | for (j = 0; j < bio->bi_vcnt; ++j) { | ||
| 140 | if (bio->bi_io_vec[j].bv_page == last_page) | ||
| 141 | continue; | ||
| 142 | last_page = bio->bi_io_vec[j].bv_page; | ||
| 143 | __free_page(last_page); | ||
| 144 | } | ||
| 145 | bio_put(bio); | ||
| 146 | } | ||
| 147 | kfree(sbio); | 145 | kfree(sbio); |
| 148 | } | 146 | } |
| 149 | 147 | ||
| @@ -156,8 +154,6 @@ struct scrub_dev *scrub_setup_dev(struct btrfs_device *dev) | |||
| 156 | { | 154 | { |
| 157 | struct scrub_dev *sdev; | 155 | struct scrub_dev *sdev; |
| 158 | int i; | 156 | int i; |
| 159 | int j; | ||
| 160 | int ret; | ||
| 161 | struct btrfs_fs_info *fs_info = dev->dev_root->fs_info; | 157 | struct btrfs_fs_info *fs_info = dev->dev_root->fs_info; |
| 162 | 158 | ||
| 163 | sdev = kzalloc(sizeof(*sdev), GFP_NOFS); | 159 | sdev = kzalloc(sizeof(*sdev), GFP_NOFS); |
| @@ -165,7 +161,6 @@ struct scrub_dev *scrub_setup_dev(struct btrfs_device *dev) | |||
| 165 | goto nomem; | 161 | goto nomem; |
| 166 | sdev->dev = dev; | 162 | sdev->dev = dev; |
| 167 | for (i = 0; i < SCRUB_BIOS_PER_DEV; ++i) { | 163 | for (i = 0; i < SCRUB_BIOS_PER_DEV; ++i) { |
| 168 | struct bio *bio; | ||
| 169 | struct scrub_bio *sbio; | 164 | struct scrub_bio *sbio; |
| 170 | 165 | ||
| 171 | sbio = kzalloc(sizeof(*sbio), GFP_NOFS); | 166 | sbio = kzalloc(sizeof(*sbio), GFP_NOFS); |
| @@ -173,32 +168,10 @@ struct scrub_dev *scrub_setup_dev(struct btrfs_device *dev) | |||
| 173 | goto nomem; | 168 | goto nomem; |
| 174 | sdev->bios[i] = sbio; | 169 | sdev->bios[i] = sbio; |
| 175 | 170 | ||
| 176 | bio = bio_kmalloc(GFP_NOFS, SCRUB_PAGES_PER_BIO); | ||
| 177 | if (!bio) | ||
| 178 | goto nomem; | ||
| 179 | |||
| 180 | sbio->index = i; | 171 | sbio->index = i; |
| 181 | sbio->sdev = sdev; | 172 | sbio->sdev = sdev; |
| 182 | sbio->bio = bio; | ||
| 183 | sbio->count = 0; | 173 | sbio->count = 0; |
| 184 | sbio->work.func = scrub_checksum; | 174 | sbio->work.func = scrub_checksum; |
| 185 | bio->bi_private = sdev->bios[i]; | ||
| 186 | bio->bi_end_io = scrub_bio_end_io; | ||
| 187 | bio->bi_sector = 0; | ||
| 188 | bio->bi_bdev = dev->bdev; | ||
| 189 | bio->bi_size = 0; | ||
| 190 | |||
| 191 | for (j = 0; j < SCRUB_PAGES_PER_BIO; ++j) { | ||
| 192 | struct page *page; | ||
| 193 | page = alloc_page(GFP_NOFS); | ||
| 194 | if (!page) | ||
| 195 | goto nomem; | ||
| 196 | |||
| 197 | ret = bio_add_page(bio, page, PAGE_SIZE, 0); | ||
| 198 | if (!ret) | ||
| 199 | goto nomem; | ||
| 200 | } | ||
| 201 | WARN_ON(bio->bi_vcnt != SCRUB_PAGES_PER_BIO); | ||
| 202 | 175 | ||
| 203 | if (i != SCRUB_BIOS_PER_DEV-1) | 176 | if (i != SCRUB_BIOS_PER_DEV-1) |
| 204 | sdev->bios[i]->next_free = i + 1; | 177 | sdev->bios[i]->next_free = i + 1; |
| @@ -369,9 +342,6 @@ static int scrub_fixup_io(int rw, struct block_device *bdev, sector_t sector, | |||
| 369 | int ret; | 342 | int ret; |
| 370 | DECLARE_COMPLETION_ONSTACK(complete); | 343 | DECLARE_COMPLETION_ONSTACK(complete); |
| 371 | 344 | ||
| 372 | /* we are going to wait on this IO */ | ||
| 373 | rw |= REQ_SYNC; | ||
| 374 | |||
| 375 | bio = bio_alloc(GFP_NOFS, 1); | 345 | bio = bio_alloc(GFP_NOFS, 1); |
| 376 | bio->bi_bdev = bdev; | 346 | bio->bi_bdev = bdev; |
| 377 | bio->bi_sector = sector; | 347 | bio->bi_sector = sector; |
| @@ -380,6 +350,7 @@ static int scrub_fixup_io(int rw, struct block_device *bdev, sector_t sector, | |||
| 380 | bio->bi_private = &complete; | 350 | bio->bi_private = &complete; |
| 381 | submit_bio(rw, bio); | 351 | submit_bio(rw, bio); |
| 382 | 352 | ||
| 353 | /* this will also unplug the queue */ | ||
| 383 | wait_for_completion(&complete); | 354 | wait_for_completion(&complete); |
| 384 | 355 | ||
| 385 | ret = !test_bit(BIO_UPTODATE, &bio->bi_flags); | 356 | ret = !test_bit(BIO_UPTODATE, &bio->bi_flags); |
| @@ -394,6 +365,7 @@ static void scrub_bio_end_io(struct bio *bio, int err) | |||
| 394 | struct btrfs_fs_info *fs_info = sdev->dev->dev_root->fs_info; | 365 | struct btrfs_fs_info *fs_info = sdev->dev->dev_root->fs_info; |
| 395 | 366 | ||
| 396 | sbio->err = err; | 367 | sbio->err = err; |
| 368 | sbio->bio = bio; | ||
| 397 | 369 | ||
| 398 | btrfs_queue_worker(&fs_info->scrub_workers, &sbio->work); | 370 | btrfs_queue_worker(&fs_info->scrub_workers, &sbio->work); |
| 399 | } | 371 | } |
| @@ -453,6 +425,8 @@ static void scrub_checksum(struct btrfs_work *work) | |||
| 453 | } | 425 | } |
| 454 | 426 | ||
| 455 | out: | 427 | out: |
| 428 | scrub_free_bio(sbio->bio); | ||
| 429 | sbio->bio = NULL; | ||
| 456 | spin_lock(&sdev->list_lock); | 430 | spin_lock(&sdev->list_lock); |
| 457 | sbio->next_free = sdev->first_free; | 431 | sbio->next_free = sdev->first_free; |
| 458 | sdev->first_free = sbio->index; | 432 | sdev->first_free = sbio->index; |
| @@ -583,25 +557,50 @@ static int scrub_checksum_super(struct scrub_bio *sbio, void *buffer) | |||
| 583 | static int scrub_submit(struct scrub_dev *sdev) | 557 | static int scrub_submit(struct scrub_dev *sdev) |
| 584 | { | 558 | { |
| 585 | struct scrub_bio *sbio; | 559 | struct scrub_bio *sbio; |
| 560 | struct bio *bio; | ||
| 561 | int i; | ||
| 586 | 562 | ||
| 587 | if (sdev->curr == -1) | 563 | if (sdev->curr == -1) |
| 588 | return 0; | 564 | return 0; |
| 589 | 565 | ||
| 590 | sbio = sdev->bios[sdev->curr]; | 566 | sbio = sdev->bios[sdev->curr]; |
| 591 | 567 | ||
| 592 | sbio->bio->bi_sector = sbio->physical >> 9; | 568 | bio = bio_alloc(GFP_NOFS, sbio->count); |
| 593 | sbio->bio->bi_size = sbio->count * PAGE_SIZE; | 569 | if (!bio) |
| 594 | sbio->bio->bi_next = NULL; | 570 | goto nomem; |
| 595 | sbio->bio->bi_flags |= 1 << BIO_UPTODATE; | 571 | |
| 596 | sbio->bio->bi_comp_cpu = -1; | 572 | bio->bi_private = sbio; |
| 597 | sbio->bio->bi_bdev = sdev->dev->bdev; | 573 | bio->bi_end_io = scrub_bio_end_io; |
| 574 | bio->bi_bdev = sdev->dev->bdev; | ||
| 575 | bio->bi_sector = sbio->physical >> 9; | ||
| 576 | |||
| 577 | for (i = 0; i < sbio->count; ++i) { | ||
| 578 | struct page *page; | ||
| 579 | int ret; | ||
| 580 | |||
| 581 | page = alloc_page(GFP_NOFS); | ||
| 582 | if (!page) | ||
| 583 | goto nomem; | ||
| 584 | |||
| 585 | ret = bio_add_page(bio, page, PAGE_SIZE, 0); | ||
| 586 | if (!ret) { | ||
| 587 | __free_page(page); | ||
| 588 | goto nomem; | ||
| 589 | } | ||
| 590 | } | ||
| 591 | |||
| 598 | sbio->err = 0; | 592 | sbio->err = 0; |
| 599 | sdev->curr = -1; | 593 | sdev->curr = -1; |
| 600 | atomic_inc(&sdev->in_flight); | 594 | atomic_inc(&sdev->in_flight); |
| 601 | 595 | ||
| 602 | submit_bio(0, sbio->bio); | 596 | submit_bio(READ, bio); |
| 603 | 597 | ||
| 604 | return 0; | 598 | return 0; |
| 599 | |||
| 600 | nomem: | ||
| 601 | scrub_free_bio(bio); | ||
| 602 | |||
| 603 | return -ENOMEM; | ||
| 605 | } | 604 | } |
| 606 | 605 | ||
| 607 | static int scrub_page(struct scrub_dev *sdev, u64 logical, u64 len, | 606 | static int scrub_page(struct scrub_dev *sdev, u64 logical, u64 len, |
| @@ -633,7 +632,11 @@ again: | |||
| 633 | sbio->logical = logical; | 632 | sbio->logical = logical; |
| 634 | } else if (sbio->physical + sbio->count * PAGE_SIZE != physical || | 633 | } else if (sbio->physical + sbio->count * PAGE_SIZE != physical || |
| 635 | sbio->logical + sbio->count * PAGE_SIZE != logical) { | 634 | sbio->logical + sbio->count * PAGE_SIZE != logical) { |
| 636 | scrub_submit(sdev); | 635 | int ret; |
| 636 | |||
| 637 | ret = scrub_submit(sdev); | ||
| 638 | if (ret) | ||
| 639 | return ret; | ||
| 637 | goto again; | 640 | goto again; |
| 638 | } | 641 | } |
| 639 | sbio->spag[sbio->count].flags = flags; | 642 | sbio->spag[sbio->count].flags = flags; |
| @@ -645,8 +648,13 @@ again: | |||
| 645 | memcpy(sbio->spag[sbio->count].csum, csum, sdev->csum_size); | 648 | memcpy(sbio->spag[sbio->count].csum, csum, sdev->csum_size); |
| 646 | } | 649 | } |
| 647 | ++sbio->count; | 650 | ++sbio->count; |
| 648 | if (sbio->count == SCRUB_PAGES_PER_BIO || force) | 651 | if (sbio->count == SCRUB_PAGES_PER_BIO || force) { |
| 649 | scrub_submit(sdev); | 652 | int ret; |
| 653 | |||
| 654 | ret = scrub_submit(sdev); | ||
| 655 | if (ret) | ||
| 656 | return ret; | ||
| 657 | } | ||
| 650 | 658 | ||
| 651 | return 0; | 659 | return 0; |
| 652 | } | 660 | } |
| @@ -727,6 +735,7 @@ static noinline_for_stack int scrub_stripe(struct scrub_dev *sdev, | |||
| 727 | struct btrfs_root *root = fs_info->extent_root; | 735 | struct btrfs_root *root = fs_info->extent_root; |
| 728 | struct btrfs_root *csum_root = fs_info->csum_root; | 736 | struct btrfs_root *csum_root = fs_info->csum_root; |
| 729 | struct btrfs_extent_item *extent; | 737 | struct btrfs_extent_item *extent; |
| 738 | struct blk_plug plug; | ||
| 730 | u64 flags; | 739 | u64 flags; |
| 731 | int ret; | 740 | int ret; |
| 732 | int slot; | 741 | int slot; |
| @@ -789,18 +798,12 @@ static noinline_for_stack int scrub_stripe(struct scrub_dev *sdev, | |||
| 789 | 798 | ||
| 790 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | 799 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 791 | if (ret < 0) | 800 | if (ret < 0) |
| 792 | goto out; | 801 | goto out_noplug; |
| 793 | |||
| 794 | l = path->nodes[0]; | ||
| 795 | slot = path->slots[0]; | ||
| 796 | btrfs_item_key_to_cpu(l, &key, slot); | ||
| 797 | if (key.objectid != logical) { | ||
| 798 | ret = btrfs_previous_item(root, path, 0, | ||
| 799 | BTRFS_EXTENT_ITEM_KEY); | ||
| 800 | if (ret < 0) | ||
| 801 | goto out; | ||
| 802 | } | ||
| 803 | 802 | ||
| 803 | /* | ||
| 804 | * we might miss half an extent here, but that doesn't matter, | ||
| 805 | * as it's only the prefetch | ||
| 806 | */ | ||
| 804 | while (1) { | 807 | while (1) { |
| 805 | l = path->nodes[0]; | 808 | l = path->nodes[0]; |
| 806 | slot = path->slots[0]; | 809 | slot = path->slots[0]; |
| @@ -809,7 +812,7 @@ static noinline_for_stack int scrub_stripe(struct scrub_dev *sdev, | |||
| 809 | if (ret == 0) | 812 | if (ret == 0) |
| 810 | continue; | 813 | continue; |
| 811 | if (ret < 0) | 814 | if (ret < 0) |
| 812 | goto out; | 815 | goto out_noplug; |
| 813 | 816 | ||
| 814 | break; | 817 | break; |
| 815 | } | 818 | } |
| @@ -831,6 +834,7 @@ static noinline_for_stack int scrub_stripe(struct scrub_dev *sdev, | |||
| 831 | * the scrub. This might currently (crc32) end up to be about 1MB | 834 | * the scrub. This might currently (crc32) end up to be about 1MB |
| 832 | */ | 835 | */ |
| 833 | start_stripe = 0; | 836 | start_stripe = 0; |
| 837 | blk_start_plug(&plug); | ||
| 834 | again: | 838 | again: |
| 835 | logical = base + offset + start_stripe * increment; | 839 | logical = base + offset + start_stripe * increment; |
| 836 | for (i = start_stripe; i < nstripes; ++i) { | 840 | for (i = start_stripe; i < nstripes; ++i) { |
| @@ -890,15 +894,20 @@ again: | |||
| 890 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | 894 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 891 | if (ret < 0) | 895 | if (ret < 0) |
| 892 | goto out; | 896 | goto out; |
| 893 | 897 | if (ret > 0) { | |
| 894 | l = path->nodes[0]; | ||
| 895 | slot = path->slots[0]; | ||
| 896 | btrfs_item_key_to_cpu(l, &key, slot); | ||
| 897 | if (key.objectid != logical) { | ||
| 898 | ret = btrfs_previous_item(root, path, 0, | 898 | ret = btrfs_previous_item(root, path, 0, |
| 899 | BTRFS_EXTENT_ITEM_KEY); | 899 | BTRFS_EXTENT_ITEM_KEY); |
| 900 | if (ret < 0) | 900 | if (ret < 0) |
| 901 | goto out; | 901 | goto out; |
| 902 | if (ret > 0) { | ||
| 903 | /* there's no smaller item, so stick with the | ||
| 904 | * larger one */ | ||
| 905 | btrfs_release_path(path); | ||
| 906 | ret = btrfs_search_slot(NULL, root, &key, | ||
| 907 | path, 0, 0); | ||
| 908 | if (ret < 0) | ||
| 909 | goto out; | ||
| 910 | } | ||
| 902 | } | 911 | } |
| 903 | 912 | ||
| 904 | while (1) { | 913 | while (1) { |
| @@ -972,6 +981,8 @@ next: | |||
| 972 | scrub_submit(sdev); | 981 | scrub_submit(sdev); |
| 973 | 982 | ||
| 974 | out: | 983 | out: |
| 984 | blk_finish_plug(&plug); | ||
| 985 | out_noplug: | ||
| 975 | btrfs_free_path(path); | 986 | btrfs_free_path(path); |
| 976 | return ret < 0 ? ret : 0; | 987 | return ret < 0 ? ret : 0; |
| 977 | } | 988 | } |
| @@ -1047,8 +1058,15 @@ int scrub_enumerate_chunks(struct scrub_dev *sdev, u64 start, u64 end) | |||
| 1047 | while (1) { | 1058 | while (1) { |
| 1048 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | 1059 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 1049 | if (ret < 0) | 1060 | if (ret < 0) |
| 1050 | goto out; | 1061 | break; |
| 1051 | ret = 0; | 1062 | if (ret > 0) { |
| 1063 | if (path->slots[0] >= | ||
| 1064 | btrfs_header_nritems(path->nodes[0])) { | ||
| 1065 | ret = btrfs_next_leaf(root, path); | ||
| 1066 | if (ret) | ||
| 1067 | break; | ||
| 1068 | } | ||
| 1069 | } | ||
| 1052 | 1070 | ||
| 1053 | l = path->nodes[0]; | 1071 | l = path->nodes[0]; |
| 1054 | slot = path->slots[0]; | 1072 | slot = path->slots[0]; |
| @@ -1058,7 +1076,7 @@ int scrub_enumerate_chunks(struct scrub_dev *sdev, u64 start, u64 end) | |||
| 1058 | if (found_key.objectid != sdev->dev->devid) | 1076 | if (found_key.objectid != sdev->dev->devid) |
| 1059 | break; | 1077 | break; |
| 1060 | 1078 | ||
| 1061 | if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY) | 1079 | if (btrfs_key_type(&found_key) != BTRFS_DEV_EXTENT_KEY) |
| 1062 | break; | 1080 | break; |
| 1063 | 1081 | ||
| 1064 | if (found_key.offset >= end) | 1082 | if (found_key.offset >= end) |
| @@ -1087,7 +1105,7 @@ int scrub_enumerate_chunks(struct scrub_dev *sdev, u64 start, u64 end) | |||
| 1087 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); | 1105 | cache = btrfs_lookup_block_group(fs_info, chunk_offset); |
| 1088 | if (!cache) { | 1106 | if (!cache) { |
| 1089 | ret = -ENOENT; | 1107 | ret = -ENOENT; |
| 1090 | goto out; | 1108 | break; |
| 1091 | } | 1109 | } |
| 1092 | ret = scrub_chunk(sdev, chunk_tree, chunk_objectid, | 1110 | ret = scrub_chunk(sdev, chunk_tree, chunk_objectid, |
| 1093 | chunk_offset, length); | 1111 | chunk_offset, length); |
| @@ -1099,9 +1117,13 @@ int scrub_enumerate_chunks(struct scrub_dev *sdev, u64 start, u64 end) | |||
| 1099 | btrfs_release_path(path); | 1117 | btrfs_release_path(path); |
| 1100 | } | 1118 | } |
| 1101 | 1119 | ||
| 1102 | out: | ||
| 1103 | btrfs_free_path(path); | 1120 | btrfs_free_path(path); |
| 1104 | return ret; | 1121 | |
| 1122 | /* | ||
| 1123 | * ret can still be 1 from search_slot or next_leaf, | ||
| 1124 | * that's not an error | ||
| 1125 | */ | ||
| 1126 | return ret < 0 ? ret : 0; | ||
| 1105 | } | 1127 | } |
| 1106 | 1128 | ||
| 1107 | static noinline_for_stack int scrub_supers(struct scrub_dev *sdev) | 1129 | static noinline_for_stack int scrub_supers(struct scrub_dev *sdev) |
| @@ -1138,8 +1160,12 @@ static noinline_for_stack int scrub_workers_get(struct btrfs_root *root) | |||
| 1138 | struct btrfs_fs_info *fs_info = root->fs_info; | 1160 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 1139 | 1161 | ||
| 1140 | mutex_lock(&fs_info->scrub_lock); | 1162 | mutex_lock(&fs_info->scrub_lock); |
| 1141 | if (fs_info->scrub_workers_refcnt == 0) | 1163 | if (fs_info->scrub_workers_refcnt == 0) { |
| 1164 | btrfs_init_workers(&fs_info->scrub_workers, "scrub", | ||
| 1165 | fs_info->thread_pool_size, &fs_info->generic_worker); | ||
| 1166 | fs_info->scrub_workers.idle_thresh = 4; | ||
| 1142 | btrfs_start_workers(&fs_info->scrub_workers, 1); | 1167 | btrfs_start_workers(&fs_info->scrub_workers, 1); |
| 1168 | } | ||
| 1143 | ++fs_info->scrub_workers_refcnt; | 1169 | ++fs_info->scrub_workers_refcnt; |
| 1144 | mutex_unlock(&fs_info->scrub_lock); | 1170 | mutex_unlock(&fs_info->scrub_lock); |
| 1145 | 1171 | ||
| @@ -1166,7 +1192,7 @@ int btrfs_scrub_dev(struct btrfs_root *root, u64 devid, u64 start, u64 end, | |||
| 1166 | int ret; | 1192 | int ret; |
| 1167 | struct btrfs_device *dev; | 1193 | struct btrfs_device *dev; |
| 1168 | 1194 | ||
| 1169 | if (root->fs_info->closing) | 1195 | if (btrfs_fs_closing(root->fs_info)) |
| 1170 | return -EINVAL; | 1196 | return -EINVAL; |
| 1171 | 1197 | ||
| 1172 | /* | 1198 | /* |
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 9b2e7e5bc3ef..0bb4ebbb71b7 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c | |||
| @@ -161,7 +161,8 @@ enum { | |||
| 161 | Opt_compress_type, Opt_compress_force, Opt_compress_force_type, | 161 | Opt_compress_type, Opt_compress_force, Opt_compress_force_type, |
| 162 | Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard, | 162 | Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard, |
| 163 | Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed, | 163 | Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed, |
| 164 | Opt_enospc_debug, Opt_subvolrootid, Opt_defrag, Opt_err, | 164 | Opt_enospc_debug, Opt_subvolrootid, Opt_defrag, |
| 165 | Opt_inode_cache, Opt_err, | ||
| 165 | }; | 166 | }; |
| 166 | 167 | ||
| 167 | static match_table_t tokens = { | 168 | static match_table_t tokens = { |
| @@ -193,6 +194,7 @@ static match_table_t tokens = { | |||
| 193 | {Opt_enospc_debug, "enospc_debug"}, | 194 | {Opt_enospc_debug, "enospc_debug"}, |
| 194 | {Opt_subvolrootid, "subvolrootid=%d"}, | 195 | {Opt_subvolrootid, "subvolrootid=%d"}, |
| 195 | {Opt_defrag, "autodefrag"}, | 196 | {Opt_defrag, "autodefrag"}, |
| 197 | {Opt_inode_cache, "inode_cache"}, | ||
| 196 | {Opt_err, NULL}, | 198 | {Opt_err, NULL}, |
| 197 | }; | 199 | }; |
| 198 | 200 | ||
| @@ -361,6 +363,10 @@ int btrfs_parse_options(struct btrfs_root *root, char *options) | |||
| 361 | printk(KERN_INFO "btrfs: enabling disk space caching\n"); | 363 | printk(KERN_INFO "btrfs: enabling disk space caching\n"); |
| 362 | btrfs_set_opt(info->mount_opt, SPACE_CACHE); | 364 | btrfs_set_opt(info->mount_opt, SPACE_CACHE); |
| 363 | break; | 365 | break; |
| 366 | case Opt_inode_cache: | ||
| 367 | printk(KERN_INFO "btrfs: enabling inode map caching\n"); | ||
| 368 | btrfs_set_opt(info->mount_opt, INODE_MAP_CACHE); | ||
| 369 | break; | ||
| 364 | case Opt_clear_cache: | 370 | case Opt_clear_cache: |
| 365 | printk(KERN_INFO "btrfs: force clearing of disk cache\n"); | 371 | printk(KERN_INFO "btrfs: force clearing of disk cache\n"); |
| 366 | btrfs_set_opt(info->mount_opt, CLEAR_CACHE); | 372 | btrfs_set_opt(info->mount_opt, CLEAR_CACHE); |
| @@ -819,7 +825,7 @@ static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags, | |||
| 819 | } else { | 825 | } else { |
| 820 | char b[BDEVNAME_SIZE]; | 826 | char b[BDEVNAME_SIZE]; |
| 821 | 827 | ||
| 822 | s->s_flags = flags; | 828 | s->s_flags = flags | MS_NOSEC; |
| 823 | strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id)); | 829 | strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id)); |
| 824 | error = btrfs_fill_super(s, fs_devices, data, | 830 | error = btrfs_fill_super(s, fs_devices, data, |
| 825 | flags & MS_SILENT ? 1 : 0); | 831 | flags & MS_SILENT ? 1 : 0); |
diff --git a/fs/btrfs/sysfs.c b/fs/btrfs/sysfs.c index c3c223ae6691..daac9ae6d731 100644 --- a/fs/btrfs/sysfs.c +++ b/fs/btrfs/sysfs.c | |||
| @@ -28,152 +28,6 @@ | |||
| 28 | #include "disk-io.h" | 28 | #include "disk-io.h" |
| 29 | #include "transaction.h" | 29 | #include "transaction.h" |
| 30 | 30 | ||
| 31 | static ssize_t root_blocks_used_show(struct btrfs_root *root, char *buf) | ||
| 32 | { | ||
| 33 | return snprintf(buf, PAGE_SIZE, "%llu\n", | ||
| 34 | (unsigned long long)btrfs_root_used(&root->root_item)); | ||
| 35 | } | ||
| 36 | |||
| 37 | static ssize_t root_block_limit_show(struct btrfs_root *root, char *buf) | ||
| 38 | { | ||
| 39 | return snprintf(buf, PAGE_SIZE, "%llu\n", | ||
| 40 | (unsigned long long)btrfs_root_limit(&root->root_item)); | ||
| 41 | } | ||
| 42 | |||
| 43 | static ssize_t super_blocks_used_show(struct btrfs_fs_info *fs, char *buf) | ||
| 44 | { | ||
| 45 | |||
| 46 | return snprintf(buf, PAGE_SIZE, "%llu\n", | ||
| 47 | (unsigned long long)btrfs_super_bytes_used(&fs->super_copy)); | ||
| 48 | } | ||
| 49 | |||
| 50 | static ssize_t super_total_blocks_show(struct btrfs_fs_info *fs, char *buf) | ||
| 51 | { | ||
| 52 | return snprintf(buf, PAGE_SIZE, "%llu\n", | ||
| 53 | (unsigned long long)btrfs_super_total_bytes(&fs->super_copy)); | ||
| 54 | } | ||
| 55 | |||
| 56 | static ssize_t super_blocksize_show(struct btrfs_fs_info *fs, char *buf) | ||
| 57 | { | ||
| 58 | return snprintf(buf, PAGE_SIZE, "%llu\n", | ||
| 59 | (unsigned long long)btrfs_super_sectorsize(&fs->super_copy)); | ||
| 60 | } | ||
| 61 | |||
| 62 | /* this is for root attrs (subvols/snapshots) */ | ||
| 63 | struct btrfs_root_attr { | ||
| 64 | struct attribute attr; | ||
| 65 | ssize_t (*show)(struct btrfs_root *, char *); | ||
| 66 | ssize_t (*store)(struct btrfs_root *, const char *, size_t); | ||
| 67 | }; | ||
| 68 | |||
| 69 | #define ROOT_ATTR(name, mode, show, store) \ | ||
| 70 | static struct btrfs_root_attr btrfs_root_attr_##name = __ATTR(name, mode, \ | ||
| 71 | show, store) | ||
| 72 | |||
| 73 | ROOT_ATTR(blocks_used, 0444, root_blocks_used_show, NULL); | ||
| 74 | ROOT_ATTR(block_limit, 0644, root_block_limit_show, NULL); | ||
| 75 | |||
| 76 | static struct attribute *btrfs_root_attrs[] = { | ||
| 77 | &btrfs_root_attr_blocks_used.attr, | ||
| 78 | &btrfs_root_attr_block_limit.attr, | ||
| 79 | NULL, | ||
| 80 | }; | ||
| 81 | |||
| 82 | /* this is for super attrs (actual full fs) */ | ||
| 83 | struct btrfs_super_attr { | ||
| 84 | struct attribute attr; | ||
| 85 | ssize_t (*show)(struct btrfs_fs_info *, char *); | ||
| 86 | ssize_t (*store)(struct btrfs_fs_info *, const char *, size_t); | ||
| 87 | }; | ||
| 88 | |||
| 89 | #define SUPER_ATTR(name, mode, show, store) \ | ||
| 90 | static struct btrfs_super_attr btrfs_super_attr_##name = __ATTR(name, mode, \ | ||
| 91 | show, store) | ||
| 92 | |||
| 93 | SUPER_ATTR(blocks_used, 0444, super_blocks_used_show, NULL); | ||
| 94 | SUPER_ATTR(total_blocks, 0444, super_total_blocks_show, NULL); | ||
| 95 | SUPER_ATTR(blocksize, 0444, super_blocksize_show, NULL); | ||
| 96 | |||
| 97 | static struct attribute *btrfs_super_attrs[] = { | ||
| 98 | &btrfs_super_attr_blocks_used.attr, | ||
| 99 | &btrfs_super_attr_total_blocks.attr, | ||
| 100 | &btrfs_super_attr_blocksize.attr, | ||
| 101 | NULL, | ||
| 102 | }; | ||
| 103 | |||
| 104 | static ssize_t btrfs_super_attr_show(struct kobject *kobj, | ||
| 105 | struct attribute *attr, char *buf) | ||
| 106 | { | ||
| 107 | struct btrfs_fs_info *fs = container_of(kobj, struct btrfs_fs_info, | ||
| 108 | super_kobj); | ||
| 109 | struct btrfs_super_attr *a = container_of(attr, | ||
| 110 | struct btrfs_super_attr, | ||
| 111 | attr); | ||
| 112 | |||
| 113 | return a->show ? a->show(fs, buf) : 0; | ||
| 114 | } | ||
| 115 | |||
| 116 | static ssize_t btrfs_super_attr_store(struct kobject *kobj, | ||
| 117 | struct attribute *attr, | ||
| 118 | const char *buf, size_t len) | ||
| 119 | { | ||
| 120 | struct btrfs_fs_info *fs = container_of(kobj, struct btrfs_fs_info, | ||
| 121 | super_kobj); | ||
| 122 | struct btrfs_super_attr *a = container_of(attr, | ||
| 123 | struct btrfs_super_attr, | ||
| 124 | attr); | ||
| 125 | |||
| 126 | return a->store ? a->store(fs, buf, len) : 0; | ||
| 127 | } | ||
| 128 | |||
| 129 | static ssize_t btrfs_root_attr_show(struct kobject *kobj, | ||
| 130 | struct attribute *attr, char *buf) | ||
| 131 | { | ||
| 132 | struct btrfs_root *root = container_of(kobj, struct btrfs_root, | ||
| 133 | root_kobj); | ||
| 134 | struct btrfs_root_attr *a = container_of(attr, | ||
| 135 | struct btrfs_root_attr, | ||
| 136 | attr); | ||
| 137 | |||
| 138 | return a->show ? a->show(root, buf) : 0; | ||
| 139 | } | ||
| 140 | |||
| 141 | static ssize_t btrfs_root_attr_store(struct kobject *kobj, | ||
| 142 | struct attribute *attr, | ||
| 143 | const char *buf, size_t len) | ||
| 144 | { | ||
| 145 | struct btrfs_root *root = container_of(kobj, struct btrfs_root, | ||
| 146 | root_kobj); | ||
| 147 | struct btrfs_root_attr *a = container_of(attr, | ||
| 148 | struct btrfs_root_attr, | ||
| 149 | attr); | ||
| 150 | return a->store ? a->store(root, buf, len) : 0; | ||
| 151 | } | ||
| 152 | |||
| 153 | static void btrfs_super_release(struct kobject *kobj) | ||
| 154 | { | ||
| 155 | struct btrfs_fs_info *fs = container_of(kobj, struct btrfs_fs_info, | ||
| 156 | super_kobj); | ||
| 157 | complete(&fs->kobj_unregister); | ||
| 158 | } | ||
| 159 | |||
| 160 | static void btrfs_root_release(struct kobject *kobj) | ||
| 161 | { | ||
| 162 | struct btrfs_root *root = container_of(kobj, struct btrfs_root, | ||
| 163 | root_kobj); | ||
| 164 | complete(&root->kobj_unregister); | ||
| 165 | } | ||
| 166 | |||
| 167 | static const struct sysfs_ops btrfs_super_attr_ops = { | ||
| 168 | .show = btrfs_super_attr_show, | ||
| 169 | .store = btrfs_super_attr_store, | ||
| 170 | }; | ||
| 171 | |||
| 172 | static const struct sysfs_ops btrfs_root_attr_ops = { | ||
| 173 | .show = btrfs_root_attr_show, | ||
| 174 | .store = btrfs_root_attr_store, | ||
| 175 | }; | ||
| 176 | |||
| 177 | /* /sys/fs/btrfs/ entry */ | 31 | /* /sys/fs/btrfs/ entry */ |
| 178 | static struct kset *btrfs_kset; | 32 | static struct kset *btrfs_kset; |
| 179 | 33 | ||
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c index dc80f7156923..51dcec86757f 100644 --- a/fs/btrfs/transaction.c +++ b/fs/btrfs/transaction.c | |||
| @@ -35,6 +35,7 @@ static noinline void put_transaction(struct btrfs_transaction *transaction) | |||
| 35 | { | 35 | { |
| 36 | WARN_ON(atomic_read(&transaction->use_count) == 0); | 36 | WARN_ON(atomic_read(&transaction->use_count) == 0); |
| 37 | if (atomic_dec_and_test(&transaction->use_count)) { | 37 | if (atomic_dec_and_test(&transaction->use_count)) { |
| 38 | BUG_ON(!list_empty(&transaction->list)); | ||
| 38 | memset(transaction, 0, sizeof(*transaction)); | 39 | memset(transaction, 0, sizeof(*transaction)); |
| 39 | kmem_cache_free(btrfs_transaction_cachep, transaction); | 40 | kmem_cache_free(btrfs_transaction_cachep, transaction); |
| 40 | } | 41 | } |
| @@ -49,46 +50,72 @@ static noinline void switch_commit_root(struct btrfs_root *root) | |||
| 49 | /* | 50 | /* |
| 50 | * either allocate a new transaction or hop into the existing one | 51 | * either allocate a new transaction or hop into the existing one |
| 51 | */ | 52 | */ |
| 52 | static noinline int join_transaction(struct btrfs_root *root) | 53 | static noinline int join_transaction(struct btrfs_root *root, int nofail) |
| 53 | { | 54 | { |
| 54 | struct btrfs_transaction *cur_trans; | 55 | struct btrfs_transaction *cur_trans; |
| 56 | |||
| 57 | spin_lock(&root->fs_info->trans_lock); | ||
| 58 | if (root->fs_info->trans_no_join) { | ||
| 59 | if (!nofail) { | ||
| 60 | spin_unlock(&root->fs_info->trans_lock); | ||
| 61 | return -EBUSY; | ||
| 62 | } | ||
| 63 | } | ||
| 64 | |||
| 55 | cur_trans = root->fs_info->running_transaction; | 65 | cur_trans = root->fs_info->running_transaction; |
| 56 | if (!cur_trans) { | 66 | if (cur_trans) { |
| 57 | cur_trans = kmem_cache_alloc(btrfs_transaction_cachep, | 67 | atomic_inc(&cur_trans->use_count); |
| 58 | GFP_NOFS); | 68 | atomic_inc(&cur_trans->num_writers); |
| 59 | if (!cur_trans) | 69 | cur_trans->num_joined++; |
| 60 | return -ENOMEM; | 70 | spin_unlock(&root->fs_info->trans_lock); |
| 61 | root->fs_info->generation++; | 71 | return 0; |
| 62 | atomic_set(&cur_trans->num_writers, 1); | 72 | } |
| 63 | cur_trans->num_joined = 0; | 73 | spin_unlock(&root->fs_info->trans_lock); |
| 64 | cur_trans->transid = root->fs_info->generation; | 74 | |
| 65 | init_waitqueue_head(&cur_trans->writer_wait); | 75 | cur_trans = kmem_cache_alloc(btrfs_transaction_cachep, GFP_NOFS); |
| 66 | init_waitqueue_head(&cur_trans->commit_wait); | 76 | if (!cur_trans) |
| 67 | cur_trans->in_commit = 0; | 77 | return -ENOMEM; |
| 68 | cur_trans->blocked = 0; | 78 | spin_lock(&root->fs_info->trans_lock); |
| 69 | atomic_set(&cur_trans->use_count, 1); | 79 | if (root->fs_info->running_transaction) { |
| 70 | cur_trans->commit_done = 0; | 80 | kmem_cache_free(btrfs_transaction_cachep, cur_trans); |
| 71 | cur_trans->start_time = get_seconds(); | 81 | cur_trans = root->fs_info->running_transaction; |
| 72 | 82 | atomic_inc(&cur_trans->use_count); | |
| 73 | cur_trans->delayed_refs.root = RB_ROOT; | ||
| 74 | cur_trans->delayed_refs.num_entries = 0; | ||
| 75 | cur_trans->delayed_refs.num_heads_ready = 0; | ||
| 76 | cur_trans->delayed_refs.num_heads = 0; | ||
| 77 | cur_trans->delayed_refs.flushing = 0; | ||
| 78 | cur_trans->delayed_refs.run_delayed_start = 0; | ||
| 79 | spin_lock_init(&cur_trans->delayed_refs.lock); | ||
| 80 | |||
| 81 | INIT_LIST_HEAD(&cur_trans->pending_snapshots); | ||
| 82 | list_add_tail(&cur_trans->list, &root->fs_info->trans_list); | ||
| 83 | extent_io_tree_init(&cur_trans->dirty_pages, | ||
| 84 | root->fs_info->btree_inode->i_mapping); | ||
| 85 | spin_lock(&root->fs_info->new_trans_lock); | ||
| 86 | root->fs_info->running_transaction = cur_trans; | ||
| 87 | spin_unlock(&root->fs_info->new_trans_lock); | ||
| 88 | } else { | ||
| 89 | atomic_inc(&cur_trans->num_writers); | 83 | atomic_inc(&cur_trans->num_writers); |
| 90 | cur_trans->num_joined++; | 84 | cur_trans->num_joined++; |
| 85 | spin_unlock(&root->fs_info->trans_lock); | ||
| 86 | return 0; | ||
| 91 | } | 87 | } |
| 88 | atomic_set(&cur_trans->num_writers, 1); | ||
| 89 | cur_trans->num_joined = 0; | ||
| 90 | init_waitqueue_head(&cur_trans->writer_wait); | ||
| 91 | init_waitqueue_head(&cur_trans->commit_wait); | ||
| 92 | cur_trans->in_commit = 0; | ||
| 93 | cur_trans->blocked = 0; | ||
| 94 | /* | ||
| 95 | * One for this trans handle, one so it will live on until we | ||
| 96 | * commit the transaction. | ||
| 97 | */ | ||
| 98 | atomic_set(&cur_trans->use_count, 2); | ||
| 99 | cur_trans->commit_done = 0; | ||
| 100 | cur_trans->start_time = get_seconds(); | ||
| 101 | |||
| 102 | cur_trans->delayed_refs.root = RB_ROOT; | ||
| 103 | cur_trans->delayed_refs.num_entries = 0; | ||
| 104 | cur_trans->delayed_refs.num_heads_ready = 0; | ||
| 105 | cur_trans->delayed_refs.num_heads = 0; | ||
| 106 | cur_trans->delayed_refs.flushing = 0; | ||
| 107 | cur_trans->delayed_refs.run_delayed_start = 0; | ||
| 108 | spin_lock_init(&cur_trans->commit_lock); | ||
| 109 | spin_lock_init(&cur_trans->delayed_refs.lock); | ||
| 110 | |||
| 111 | INIT_LIST_HEAD(&cur_trans->pending_snapshots); | ||
| 112 | list_add_tail(&cur_trans->list, &root->fs_info->trans_list); | ||
| 113 | extent_io_tree_init(&cur_trans->dirty_pages, | ||
| 114 | root->fs_info->btree_inode->i_mapping); | ||
| 115 | root->fs_info->generation++; | ||
| 116 | cur_trans->transid = root->fs_info->generation; | ||
| 117 | root->fs_info->running_transaction = cur_trans; | ||
| 118 | spin_unlock(&root->fs_info->trans_lock); | ||
| 92 | 119 | ||
| 93 | return 0; | 120 | return 0; |
| 94 | } | 121 | } |
| @@ -99,36 +126,82 @@ static noinline int join_transaction(struct btrfs_root *root) | |||
| 99 | * to make sure the old root from before we joined the transaction is deleted | 126 | * to make sure the old root from before we joined the transaction is deleted |
| 100 | * when the transaction commits | 127 | * when the transaction commits |
| 101 | */ | 128 | */ |
| 102 | static noinline int record_root_in_trans(struct btrfs_trans_handle *trans, | 129 | static int record_root_in_trans(struct btrfs_trans_handle *trans, |
| 103 | struct btrfs_root *root) | 130 | struct btrfs_root *root) |
| 104 | { | 131 | { |
| 105 | if (root->ref_cows && root->last_trans < trans->transid) { | 132 | if (root->ref_cows && root->last_trans < trans->transid) { |
| 106 | WARN_ON(root == root->fs_info->extent_root); | 133 | WARN_ON(root == root->fs_info->extent_root); |
| 107 | WARN_ON(root->commit_root != root->node); | 134 | WARN_ON(root->commit_root != root->node); |
| 108 | 135 | ||
| 136 | /* | ||
| 137 | * see below for in_trans_setup usage rules | ||
| 138 | * we have the reloc mutex held now, so there | ||
| 139 | * is only one writer in this function | ||
| 140 | */ | ||
| 141 | root->in_trans_setup = 1; | ||
| 142 | |||
| 143 | /* make sure readers find in_trans_setup before | ||
| 144 | * they find our root->last_trans update | ||
| 145 | */ | ||
| 146 | smp_wmb(); | ||
| 147 | |||
| 148 | spin_lock(&root->fs_info->fs_roots_radix_lock); | ||
| 149 | if (root->last_trans == trans->transid) { | ||
| 150 | spin_unlock(&root->fs_info->fs_roots_radix_lock); | ||
| 151 | return 0; | ||
| 152 | } | ||
| 109 | radix_tree_tag_set(&root->fs_info->fs_roots_radix, | 153 | radix_tree_tag_set(&root->fs_info->fs_roots_radix, |
| 110 | (unsigned long)root->root_key.objectid, | 154 | (unsigned long)root->root_key.objectid, |
| 111 | BTRFS_ROOT_TRANS_TAG); | 155 | BTRFS_ROOT_TRANS_TAG); |
| 156 | spin_unlock(&root->fs_info->fs_roots_radix_lock); | ||
| 112 | root->last_trans = trans->transid; | 157 | root->last_trans = trans->transid; |
| 158 | |||
| 159 | /* this is pretty tricky. We don't want to | ||
| 160 | * take the relocation lock in btrfs_record_root_in_trans | ||
| 161 | * unless we're really doing the first setup for this root in | ||
| 162 | * this transaction. | ||
| 163 | * | ||
| 164 | * Normally we'd use root->last_trans as a flag to decide | ||
| 165 | * if we want to take the expensive mutex. | ||
| 166 | * | ||
| 167 | * But, we have to set root->last_trans before we | ||
| 168 | * init the relocation root, otherwise, we trip over warnings | ||
| 169 | * in ctree.c. The solution used here is to flag ourselves | ||
| 170 | * with root->in_trans_setup. When this is 1, we're still | ||
| 171 | * fixing up the reloc trees and everyone must wait. | ||
| 172 | * | ||
| 173 | * When this is zero, they can trust root->last_trans and fly | ||
| 174 | * through btrfs_record_root_in_trans without having to take the | ||
| 175 | * lock. smp_wmb() makes sure that all the writes above are | ||
| 176 | * done before we pop in the zero below | ||
| 177 | */ | ||
| 113 | btrfs_init_reloc_root(trans, root); | 178 | btrfs_init_reloc_root(trans, root); |
| 179 | smp_wmb(); | ||
| 180 | root->in_trans_setup = 0; | ||
| 114 | } | 181 | } |
| 115 | return 0; | 182 | return 0; |
| 116 | } | 183 | } |
| 117 | 184 | ||
| 185 | |||
| 118 | int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, | 186 | int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, |
| 119 | struct btrfs_root *root) | 187 | struct btrfs_root *root) |
| 120 | { | 188 | { |
| 121 | if (!root->ref_cows) | 189 | if (!root->ref_cows) |
| 122 | return 0; | 190 | return 0; |
| 123 | 191 | ||
| 124 | mutex_lock(&root->fs_info->trans_mutex); | 192 | /* |
| 125 | if (root->last_trans == trans->transid) { | 193 | * see record_root_in_trans for comments about in_trans_setup usage |
| 126 | mutex_unlock(&root->fs_info->trans_mutex); | 194 | * and barriers |
| 195 | */ | ||
| 196 | smp_rmb(); | ||
| 197 | if (root->last_trans == trans->transid && | ||
| 198 | !root->in_trans_setup) | ||
| 127 | return 0; | 199 | return 0; |
| 128 | } | ||
| 129 | 200 | ||
| 201 | mutex_lock(&root->fs_info->reloc_mutex); | ||
| 130 | record_root_in_trans(trans, root); | 202 | record_root_in_trans(trans, root); |
| 131 | mutex_unlock(&root->fs_info->trans_mutex); | 203 | mutex_unlock(&root->fs_info->reloc_mutex); |
| 204 | |||
| 132 | return 0; | 205 | return 0; |
| 133 | } | 206 | } |
| 134 | 207 | ||
| @@ -140,21 +213,23 @@ static void wait_current_trans(struct btrfs_root *root) | |||
| 140 | { | 213 | { |
| 141 | struct btrfs_transaction *cur_trans; | 214 | struct btrfs_transaction *cur_trans; |
| 142 | 215 | ||
| 216 | spin_lock(&root->fs_info->trans_lock); | ||
| 143 | cur_trans = root->fs_info->running_transaction; | 217 | cur_trans = root->fs_info->running_transaction; |
| 144 | if (cur_trans && cur_trans->blocked) { | 218 | if (cur_trans && cur_trans->blocked) { |
| 145 | DEFINE_WAIT(wait); | 219 | DEFINE_WAIT(wait); |
| 146 | atomic_inc(&cur_trans->use_count); | 220 | atomic_inc(&cur_trans->use_count); |
| 221 | spin_unlock(&root->fs_info->trans_lock); | ||
| 147 | while (1) { | 222 | while (1) { |
| 148 | prepare_to_wait(&root->fs_info->transaction_wait, &wait, | 223 | prepare_to_wait(&root->fs_info->transaction_wait, &wait, |
| 149 | TASK_UNINTERRUPTIBLE); | 224 | TASK_UNINTERRUPTIBLE); |
| 150 | if (!cur_trans->blocked) | 225 | if (!cur_trans->blocked) |
| 151 | break; | 226 | break; |
| 152 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 153 | schedule(); | 227 | schedule(); |
| 154 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 155 | } | 228 | } |
| 156 | finish_wait(&root->fs_info->transaction_wait, &wait); | 229 | finish_wait(&root->fs_info->transaction_wait, &wait); |
| 157 | put_transaction(cur_trans); | 230 | put_transaction(cur_trans); |
| 231 | } else { | ||
| 232 | spin_unlock(&root->fs_info->trans_lock); | ||
| 158 | } | 233 | } |
| 159 | } | 234 | } |
| 160 | 235 | ||
| @@ -167,10 +242,16 @@ enum btrfs_trans_type { | |||
| 167 | 242 | ||
| 168 | static int may_wait_transaction(struct btrfs_root *root, int type) | 243 | static int may_wait_transaction(struct btrfs_root *root, int type) |
| 169 | { | 244 | { |
| 170 | if (!root->fs_info->log_root_recovering && | 245 | if (root->fs_info->log_root_recovering) |
| 171 | ((type == TRANS_START && !root->fs_info->open_ioctl_trans) || | 246 | return 0; |
| 172 | type == TRANS_USERSPACE)) | 247 | |
| 248 | if (type == TRANS_USERSPACE) | ||
| 173 | return 1; | 249 | return 1; |
| 250 | |||
| 251 | if (type == TRANS_START && | ||
| 252 | !atomic_read(&root->fs_info->open_ioctl_trans)) | ||
| 253 | return 1; | ||
| 254 | |||
| 174 | return 0; | 255 | return 0; |
| 175 | } | 256 | } |
| 176 | 257 | ||
| @@ -184,36 +265,44 @@ static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root, | |||
| 184 | 265 | ||
| 185 | if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) | 266 | if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) |
| 186 | return ERR_PTR(-EROFS); | 267 | return ERR_PTR(-EROFS); |
| 268 | |||
| 269 | if (current->journal_info) { | ||
| 270 | WARN_ON(type != TRANS_JOIN && type != TRANS_JOIN_NOLOCK); | ||
| 271 | h = current->journal_info; | ||
| 272 | h->use_count++; | ||
| 273 | h->orig_rsv = h->block_rsv; | ||
| 274 | h->block_rsv = NULL; | ||
| 275 | goto got_it; | ||
| 276 | } | ||
| 187 | again: | 277 | again: |
| 188 | h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS); | 278 | h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS); |
| 189 | if (!h) | 279 | if (!h) |
| 190 | return ERR_PTR(-ENOMEM); | 280 | return ERR_PTR(-ENOMEM); |
| 191 | 281 | ||
| 192 | if (type != TRANS_JOIN_NOLOCK) | ||
| 193 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 194 | if (may_wait_transaction(root, type)) | 282 | if (may_wait_transaction(root, type)) |
| 195 | wait_current_trans(root); | 283 | wait_current_trans(root); |
| 196 | 284 | ||
| 197 | ret = join_transaction(root); | 285 | do { |
| 286 | ret = join_transaction(root, type == TRANS_JOIN_NOLOCK); | ||
| 287 | if (ret == -EBUSY) | ||
| 288 | wait_current_trans(root); | ||
| 289 | } while (ret == -EBUSY); | ||
| 290 | |||
| 198 | if (ret < 0) { | 291 | if (ret < 0) { |
| 199 | kmem_cache_free(btrfs_trans_handle_cachep, h); | 292 | kmem_cache_free(btrfs_trans_handle_cachep, h); |
| 200 | if (type != TRANS_JOIN_NOLOCK) | ||
| 201 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 202 | return ERR_PTR(ret); | 293 | return ERR_PTR(ret); |
| 203 | } | 294 | } |
| 204 | 295 | ||
| 205 | cur_trans = root->fs_info->running_transaction; | 296 | cur_trans = root->fs_info->running_transaction; |
| 206 | atomic_inc(&cur_trans->use_count); | ||
| 207 | if (type != TRANS_JOIN_NOLOCK) | ||
| 208 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 209 | 297 | ||
| 210 | h->transid = cur_trans->transid; | 298 | h->transid = cur_trans->transid; |
| 211 | h->transaction = cur_trans; | 299 | h->transaction = cur_trans; |
| 212 | h->blocks_used = 0; | 300 | h->blocks_used = 0; |
| 213 | h->block_group = 0; | ||
| 214 | h->bytes_reserved = 0; | 301 | h->bytes_reserved = 0; |
| 215 | h->delayed_ref_updates = 0; | 302 | h->delayed_ref_updates = 0; |
| 303 | h->use_count = 1; | ||
| 216 | h->block_rsv = NULL; | 304 | h->block_rsv = NULL; |
| 305 | h->orig_rsv = NULL; | ||
| 217 | 306 | ||
| 218 | smp_mb(); | 307 | smp_mb(); |
| 219 | if (cur_trans->blocked && may_wait_transaction(root, type)) { | 308 | if (cur_trans->blocked && may_wait_transaction(root, type)) { |
| @@ -241,11 +330,8 @@ again: | |||
| 241 | } | 330 | } |
| 242 | } | 331 | } |
| 243 | 332 | ||
| 244 | if (type != TRANS_JOIN_NOLOCK) | 333 | got_it: |
| 245 | mutex_lock(&root->fs_info->trans_mutex); | 334 | btrfs_record_root_in_trans(h, root); |
| 246 | record_root_in_trans(h, root); | ||
| 247 | if (type != TRANS_JOIN_NOLOCK) | ||
| 248 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 249 | 335 | ||
| 250 | if (!current->journal_info && type != TRANS_USERSPACE) | 336 | if (!current->journal_info && type != TRANS_USERSPACE) |
| 251 | current->journal_info = h; | 337 | current->journal_info = h; |
| @@ -257,22 +343,19 @@ struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, | |||
| 257 | { | 343 | { |
| 258 | return start_transaction(root, num_items, TRANS_START); | 344 | return start_transaction(root, num_items, TRANS_START); |
| 259 | } | 345 | } |
| 260 | struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root, | 346 | struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root) |
| 261 | int num_blocks) | ||
| 262 | { | 347 | { |
| 263 | return start_transaction(root, 0, TRANS_JOIN); | 348 | return start_transaction(root, 0, TRANS_JOIN); |
| 264 | } | 349 | } |
| 265 | 350 | ||
| 266 | struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root, | 351 | struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root) |
| 267 | int num_blocks) | ||
| 268 | { | 352 | { |
| 269 | return start_transaction(root, 0, TRANS_JOIN_NOLOCK); | 353 | return start_transaction(root, 0, TRANS_JOIN_NOLOCK); |
| 270 | } | 354 | } |
| 271 | 355 | ||
| 272 | struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r, | 356 | struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *root) |
| 273 | int num_blocks) | ||
| 274 | { | 357 | { |
| 275 | return start_transaction(r, 0, TRANS_USERSPACE); | 358 | return start_transaction(root, 0, TRANS_USERSPACE); |
| 276 | } | 359 | } |
| 277 | 360 | ||
| 278 | /* wait for a transaction commit to be fully complete */ | 361 | /* wait for a transaction commit to be fully complete */ |
| @@ -280,17 +363,13 @@ static noinline int wait_for_commit(struct btrfs_root *root, | |||
| 280 | struct btrfs_transaction *commit) | 363 | struct btrfs_transaction *commit) |
| 281 | { | 364 | { |
| 282 | DEFINE_WAIT(wait); | 365 | DEFINE_WAIT(wait); |
| 283 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 284 | while (!commit->commit_done) { | 366 | while (!commit->commit_done) { |
| 285 | prepare_to_wait(&commit->commit_wait, &wait, | 367 | prepare_to_wait(&commit->commit_wait, &wait, |
| 286 | TASK_UNINTERRUPTIBLE); | 368 | TASK_UNINTERRUPTIBLE); |
| 287 | if (commit->commit_done) | 369 | if (commit->commit_done) |
| 288 | break; | 370 | break; |
| 289 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 290 | schedule(); | 371 | schedule(); |
| 291 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 292 | } | 372 | } |
| 293 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 294 | finish_wait(&commit->commit_wait, &wait); | 373 | finish_wait(&commit->commit_wait, &wait); |
| 295 | return 0; | 374 | return 0; |
| 296 | } | 375 | } |
| @@ -300,59 +379,56 @@ int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid) | |||
| 300 | struct btrfs_transaction *cur_trans = NULL, *t; | 379 | struct btrfs_transaction *cur_trans = NULL, *t; |
| 301 | int ret; | 380 | int ret; |
| 302 | 381 | ||
| 303 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 304 | |||
| 305 | ret = 0; | 382 | ret = 0; |
| 306 | if (transid) { | 383 | if (transid) { |
| 307 | if (transid <= root->fs_info->last_trans_committed) | 384 | if (transid <= root->fs_info->last_trans_committed) |
| 308 | goto out_unlock; | 385 | goto out; |
| 309 | 386 | ||
| 310 | /* find specified transaction */ | 387 | /* find specified transaction */ |
| 388 | spin_lock(&root->fs_info->trans_lock); | ||
| 311 | list_for_each_entry(t, &root->fs_info->trans_list, list) { | 389 | list_for_each_entry(t, &root->fs_info->trans_list, list) { |
| 312 | if (t->transid == transid) { | 390 | if (t->transid == transid) { |
| 313 | cur_trans = t; | 391 | cur_trans = t; |
| 392 | atomic_inc(&cur_trans->use_count); | ||
| 314 | break; | 393 | break; |
| 315 | } | 394 | } |
| 316 | if (t->transid > transid) | 395 | if (t->transid > transid) |
| 317 | break; | 396 | break; |
| 318 | } | 397 | } |
| 398 | spin_unlock(&root->fs_info->trans_lock); | ||
| 319 | ret = -EINVAL; | 399 | ret = -EINVAL; |
| 320 | if (!cur_trans) | 400 | if (!cur_trans) |
| 321 | goto out_unlock; /* bad transid */ | 401 | goto out; /* bad transid */ |
| 322 | } else { | 402 | } else { |
| 323 | /* find newest transaction that is committing | committed */ | 403 | /* find newest transaction that is committing | committed */ |
| 404 | spin_lock(&root->fs_info->trans_lock); | ||
| 324 | list_for_each_entry_reverse(t, &root->fs_info->trans_list, | 405 | list_for_each_entry_reverse(t, &root->fs_info->trans_list, |
| 325 | list) { | 406 | list) { |
| 326 | if (t->in_commit) { | 407 | if (t->in_commit) { |
| 327 | if (t->commit_done) | 408 | if (t->commit_done) |
| 328 | goto out_unlock; | 409 | break; |
| 329 | cur_trans = t; | 410 | cur_trans = t; |
| 411 | atomic_inc(&cur_trans->use_count); | ||
| 330 | break; | 412 | break; |
| 331 | } | 413 | } |
| 332 | } | 414 | } |
| 415 | spin_unlock(&root->fs_info->trans_lock); | ||
| 333 | if (!cur_trans) | 416 | if (!cur_trans) |
| 334 | goto out_unlock; /* nothing committing|committed */ | 417 | goto out; /* nothing committing|committed */ |
| 335 | } | 418 | } |
| 336 | 419 | ||
| 337 | atomic_inc(&cur_trans->use_count); | ||
| 338 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 339 | |||
| 340 | wait_for_commit(root, cur_trans); | 420 | wait_for_commit(root, cur_trans); |
| 341 | 421 | ||
| 342 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 343 | put_transaction(cur_trans); | 422 | put_transaction(cur_trans); |
| 344 | ret = 0; | 423 | ret = 0; |
| 345 | out_unlock: | 424 | out: |
| 346 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 347 | return ret; | 425 | return ret; |
| 348 | } | 426 | } |
| 349 | 427 | ||
| 350 | void btrfs_throttle(struct btrfs_root *root) | 428 | void btrfs_throttle(struct btrfs_root *root) |
| 351 | { | 429 | { |
| 352 | mutex_lock(&root->fs_info->trans_mutex); | 430 | if (!atomic_read(&root->fs_info->open_ioctl_trans)) |
| 353 | if (!root->fs_info->open_ioctl_trans) | ||
| 354 | wait_current_trans(root); | 431 | wait_current_trans(root); |
| 355 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 356 | } | 432 | } |
| 357 | 433 | ||
| 358 | static int should_end_transaction(struct btrfs_trans_handle *trans, | 434 | static int should_end_transaction(struct btrfs_trans_handle *trans, |
| @@ -370,6 +446,7 @@ int btrfs_should_end_transaction(struct btrfs_trans_handle *trans, | |||
| 370 | struct btrfs_transaction *cur_trans = trans->transaction; | 446 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 371 | int updates; | 447 | int updates; |
| 372 | 448 | ||
| 449 | smp_mb(); | ||
| 373 | if (cur_trans->blocked || cur_trans->delayed_refs.flushing) | 450 | if (cur_trans->blocked || cur_trans->delayed_refs.flushing) |
| 374 | return 1; | 451 | return 1; |
| 375 | 452 | ||
| @@ -388,6 +465,11 @@ static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, | |||
| 388 | struct btrfs_fs_info *info = root->fs_info; | 465 | struct btrfs_fs_info *info = root->fs_info; |
| 389 | int count = 0; | 466 | int count = 0; |
| 390 | 467 | ||
| 468 | if (--trans->use_count) { | ||
| 469 | trans->block_rsv = trans->orig_rsv; | ||
| 470 | return 0; | ||
| 471 | } | ||
| 472 | |||
| 391 | while (count < 4) { | 473 | while (count < 4) { |
| 392 | unsigned long cur = trans->delayed_ref_updates; | 474 | unsigned long cur = trans->delayed_ref_updates; |
| 393 | trans->delayed_ref_updates = 0; | 475 | trans->delayed_ref_updates = 0; |
| @@ -410,9 +492,11 @@ static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, | |||
| 410 | 492 | ||
| 411 | btrfs_trans_release_metadata(trans, root); | 493 | btrfs_trans_release_metadata(trans, root); |
| 412 | 494 | ||
| 413 | if (lock && !root->fs_info->open_ioctl_trans && | 495 | if (lock && !atomic_read(&root->fs_info->open_ioctl_trans) && |
| 414 | should_end_transaction(trans, root)) | 496 | should_end_transaction(trans, root)) { |
| 415 | trans->transaction->blocked = 1; | 497 | trans->transaction->blocked = 1; |
| 498 | smp_wmb(); | ||
| 499 | } | ||
| 416 | 500 | ||
| 417 | if (lock && cur_trans->blocked && !cur_trans->in_commit) { | 501 | if (lock && cur_trans->blocked && !cur_trans->in_commit) { |
| 418 | if (throttle) | 502 | if (throttle) |
| @@ -703,9 +787,9 @@ static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans, | |||
| 703 | */ | 787 | */ |
| 704 | int btrfs_add_dead_root(struct btrfs_root *root) | 788 | int btrfs_add_dead_root(struct btrfs_root *root) |
| 705 | { | 789 | { |
| 706 | mutex_lock(&root->fs_info->trans_mutex); | 790 | spin_lock(&root->fs_info->trans_lock); |
| 707 | list_add(&root->root_list, &root->fs_info->dead_roots); | 791 | list_add(&root->root_list, &root->fs_info->dead_roots); |
| 708 | mutex_unlock(&root->fs_info->trans_mutex); | 792 | spin_unlock(&root->fs_info->trans_lock); |
| 709 | return 0; | 793 | return 0; |
| 710 | } | 794 | } |
| 711 | 795 | ||
| @@ -721,6 +805,7 @@ static noinline int commit_fs_roots(struct btrfs_trans_handle *trans, | |||
| 721 | int ret; | 805 | int ret; |
| 722 | int err = 0; | 806 | int err = 0; |
| 723 | 807 | ||
| 808 | spin_lock(&fs_info->fs_roots_radix_lock); | ||
| 724 | while (1) { | 809 | while (1) { |
| 725 | ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, | 810 | ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, |
| 726 | (void **)gang, 0, | 811 | (void **)gang, 0, |
| @@ -733,6 +818,7 @@ static noinline int commit_fs_roots(struct btrfs_trans_handle *trans, | |||
| 733 | radix_tree_tag_clear(&fs_info->fs_roots_radix, | 818 | radix_tree_tag_clear(&fs_info->fs_roots_radix, |
| 734 | (unsigned long)root->root_key.objectid, | 819 | (unsigned long)root->root_key.objectid, |
| 735 | BTRFS_ROOT_TRANS_TAG); | 820 | BTRFS_ROOT_TRANS_TAG); |
| 821 | spin_unlock(&fs_info->fs_roots_radix_lock); | ||
| 736 | 822 | ||
| 737 | btrfs_free_log(trans, root); | 823 | btrfs_free_log(trans, root); |
| 738 | btrfs_update_reloc_root(trans, root); | 824 | btrfs_update_reloc_root(trans, root); |
| @@ -753,10 +839,12 @@ static noinline int commit_fs_roots(struct btrfs_trans_handle *trans, | |||
| 753 | err = btrfs_update_root(trans, fs_info->tree_root, | 839 | err = btrfs_update_root(trans, fs_info->tree_root, |
| 754 | &root->root_key, | 840 | &root->root_key, |
| 755 | &root->root_item); | 841 | &root->root_item); |
| 842 | spin_lock(&fs_info->fs_roots_radix_lock); | ||
| 756 | if (err) | 843 | if (err) |
| 757 | break; | 844 | break; |
| 758 | } | 845 | } |
| 759 | } | 846 | } |
| 847 | spin_unlock(&fs_info->fs_roots_radix_lock); | ||
| 760 | return err; | 848 | return err; |
| 761 | } | 849 | } |
| 762 | 850 | ||
| @@ -786,7 +874,7 @@ int btrfs_defrag_root(struct btrfs_root *root, int cacheonly) | |||
| 786 | btrfs_btree_balance_dirty(info->tree_root, nr); | 874 | btrfs_btree_balance_dirty(info->tree_root, nr); |
| 787 | cond_resched(); | 875 | cond_resched(); |
| 788 | 876 | ||
| 789 | if (root->fs_info->closing || ret != -EAGAIN) | 877 | if (btrfs_fs_closing(root->fs_info) || ret != -EAGAIN) |
| 790 | break; | 878 | break; |
| 791 | } | 879 | } |
| 792 | root->defrag_running = 0; | 880 | root->defrag_running = 0; |
| @@ -869,6 +957,15 @@ static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, | |||
| 869 | ret = btrfs_update_inode(trans, parent_root, parent_inode); | 957 | ret = btrfs_update_inode(trans, parent_root, parent_inode); |
| 870 | BUG_ON(ret); | 958 | BUG_ON(ret); |
| 871 | 959 | ||
| 960 | /* | ||
| 961 | * pull in the delayed directory update | ||
| 962 | * and the delayed inode item | ||
| 963 | * otherwise we corrupt the FS during | ||
| 964 | * snapshot | ||
| 965 | */ | ||
| 966 | ret = btrfs_run_delayed_items(trans, root); | ||
| 967 | BUG_ON(ret); | ||
| 968 | |||
| 872 | record_root_in_trans(trans, root); | 969 | record_root_in_trans(trans, root); |
| 873 | btrfs_set_root_last_snapshot(&root->root_item, trans->transid); | 970 | btrfs_set_root_last_snapshot(&root->root_item, trans->transid); |
| 874 | memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); | 971 | memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); |
| @@ -930,14 +1027,6 @@ static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans, | |||
| 930 | int ret; | 1027 | int ret; |
| 931 | 1028 | ||
| 932 | list_for_each_entry(pending, head, list) { | 1029 | list_for_each_entry(pending, head, list) { |
| 933 | /* | ||
| 934 | * We must deal with the delayed items before creating | ||
| 935 | * snapshots, or we will create a snapthot with inconsistent | ||
| 936 | * information. | ||
| 937 | */ | ||
| 938 | ret = btrfs_run_delayed_items(trans, fs_info->fs_root); | ||
| 939 | BUG_ON(ret); | ||
| 940 | |||
| 941 | ret = create_pending_snapshot(trans, fs_info, pending); | 1030 | ret = create_pending_snapshot(trans, fs_info, pending); |
| 942 | BUG_ON(ret); | 1031 | BUG_ON(ret); |
| 943 | } | 1032 | } |
| @@ -967,20 +1056,20 @@ static void update_super_roots(struct btrfs_root *root) | |||
| 967 | int btrfs_transaction_in_commit(struct btrfs_fs_info *info) | 1056 | int btrfs_transaction_in_commit(struct btrfs_fs_info *info) |
| 968 | { | 1057 | { |
| 969 | int ret = 0; | 1058 | int ret = 0; |
| 970 | spin_lock(&info->new_trans_lock); | 1059 | spin_lock(&info->trans_lock); |
| 971 | if (info->running_transaction) | 1060 | if (info->running_transaction) |
| 972 | ret = info->running_transaction->in_commit; | 1061 | ret = info->running_transaction->in_commit; |
| 973 | spin_unlock(&info->new_trans_lock); | 1062 | spin_unlock(&info->trans_lock); |
| 974 | return ret; | 1063 | return ret; |
| 975 | } | 1064 | } |
| 976 | 1065 | ||
| 977 | int btrfs_transaction_blocked(struct btrfs_fs_info *info) | 1066 | int btrfs_transaction_blocked(struct btrfs_fs_info *info) |
| 978 | { | 1067 | { |
| 979 | int ret = 0; | 1068 | int ret = 0; |
| 980 | spin_lock(&info->new_trans_lock); | 1069 | spin_lock(&info->trans_lock); |
| 981 | if (info->running_transaction) | 1070 | if (info->running_transaction) |
| 982 | ret = info->running_transaction->blocked; | 1071 | ret = info->running_transaction->blocked; |
| 983 | spin_unlock(&info->new_trans_lock); | 1072 | spin_unlock(&info->trans_lock); |
| 984 | return ret; | 1073 | return ret; |
| 985 | } | 1074 | } |
| 986 | 1075 | ||
| @@ -1004,9 +1093,7 @@ static void wait_current_trans_commit_start(struct btrfs_root *root, | |||
| 1004 | &wait); | 1093 | &wait); |
| 1005 | break; | 1094 | break; |
| 1006 | } | 1095 | } |
| 1007 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1008 | schedule(); | 1096 | schedule(); |
| 1009 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 1010 | finish_wait(&root->fs_info->transaction_blocked_wait, &wait); | 1097 | finish_wait(&root->fs_info->transaction_blocked_wait, &wait); |
| 1011 | } | 1098 | } |
| 1012 | } | 1099 | } |
| @@ -1032,9 +1119,7 @@ static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root, | |||
| 1032 | &wait); | 1119 | &wait); |
| 1033 | break; | 1120 | break; |
| 1034 | } | 1121 | } |
| 1035 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1036 | schedule(); | 1122 | schedule(); |
| 1037 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 1038 | finish_wait(&root->fs_info->transaction_wait, | 1123 | finish_wait(&root->fs_info->transaction_wait, |
| 1039 | &wait); | 1124 | &wait); |
| 1040 | } | 1125 | } |
| @@ -1072,7 +1157,7 @@ int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans, | |||
| 1072 | 1157 | ||
| 1073 | INIT_DELAYED_WORK(&ac->work, do_async_commit); | 1158 | INIT_DELAYED_WORK(&ac->work, do_async_commit); |
| 1074 | ac->root = root; | 1159 | ac->root = root; |
| 1075 | ac->newtrans = btrfs_join_transaction(root, 0); | 1160 | ac->newtrans = btrfs_join_transaction(root); |
| 1076 | if (IS_ERR(ac->newtrans)) { | 1161 | if (IS_ERR(ac->newtrans)) { |
| 1077 | int err = PTR_ERR(ac->newtrans); | 1162 | int err = PTR_ERR(ac->newtrans); |
| 1078 | kfree(ac); | 1163 | kfree(ac); |
| @@ -1080,23 +1165,22 @@ int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans, | |||
| 1080 | } | 1165 | } |
| 1081 | 1166 | ||
| 1082 | /* take transaction reference */ | 1167 | /* take transaction reference */ |
| 1083 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 1084 | cur_trans = trans->transaction; | 1168 | cur_trans = trans->transaction; |
| 1085 | atomic_inc(&cur_trans->use_count); | 1169 | atomic_inc(&cur_trans->use_count); |
| 1086 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1087 | 1170 | ||
| 1088 | btrfs_end_transaction(trans, root); | 1171 | btrfs_end_transaction(trans, root); |
| 1089 | schedule_delayed_work(&ac->work, 0); | 1172 | schedule_delayed_work(&ac->work, 0); |
| 1090 | 1173 | ||
| 1091 | /* wait for transaction to start and unblock */ | 1174 | /* wait for transaction to start and unblock */ |
| 1092 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 1093 | if (wait_for_unblock) | 1175 | if (wait_for_unblock) |
| 1094 | wait_current_trans_commit_start_and_unblock(root, cur_trans); | 1176 | wait_current_trans_commit_start_and_unblock(root, cur_trans); |
| 1095 | else | 1177 | else |
| 1096 | wait_current_trans_commit_start(root, cur_trans); | 1178 | wait_current_trans_commit_start(root, cur_trans); |
| 1097 | put_transaction(cur_trans); | ||
| 1098 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1099 | 1179 | ||
| 1180 | if (current->journal_info == trans) | ||
| 1181 | current->journal_info = NULL; | ||
| 1182 | |||
| 1183 | put_transaction(cur_trans); | ||
| 1100 | return 0; | 1184 | return 0; |
| 1101 | } | 1185 | } |
| 1102 | 1186 | ||
| @@ -1139,38 +1223,41 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans, | |||
| 1139 | ret = btrfs_run_delayed_refs(trans, root, 0); | 1223 | ret = btrfs_run_delayed_refs(trans, root, 0); |
| 1140 | BUG_ON(ret); | 1224 | BUG_ON(ret); |
| 1141 | 1225 | ||
| 1142 | mutex_lock(&root->fs_info->trans_mutex); | 1226 | spin_lock(&cur_trans->commit_lock); |
| 1143 | if (cur_trans->in_commit) { | 1227 | if (cur_trans->in_commit) { |
| 1228 | spin_unlock(&cur_trans->commit_lock); | ||
| 1144 | atomic_inc(&cur_trans->use_count); | 1229 | atomic_inc(&cur_trans->use_count); |
| 1145 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1146 | btrfs_end_transaction(trans, root); | 1230 | btrfs_end_transaction(trans, root); |
| 1147 | 1231 | ||
| 1148 | ret = wait_for_commit(root, cur_trans); | 1232 | ret = wait_for_commit(root, cur_trans); |
| 1149 | BUG_ON(ret); | 1233 | BUG_ON(ret); |
| 1150 | 1234 | ||
| 1151 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 1152 | put_transaction(cur_trans); | 1235 | put_transaction(cur_trans); |
| 1153 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1154 | 1236 | ||
| 1155 | return 0; | 1237 | return 0; |
| 1156 | } | 1238 | } |
| 1157 | 1239 | ||
| 1158 | trans->transaction->in_commit = 1; | 1240 | trans->transaction->in_commit = 1; |
| 1159 | trans->transaction->blocked = 1; | 1241 | trans->transaction->blocked = 1; |
| 1242 | spin_unlock(&cur_trans->commit_lock); | ||
| 1160 | wake_up(&root->fs_info->transaction_blocked_wait); | 1243 | wake_up(&root->fs_info->transaction_blocked_wait); |
| 1161 | 1244 | ||
| 1245 | spin_lock(&root->fs_info->trans_lock); | ||
| 1162 | if (cur_trans->list.prev != &root->fs_info->trans_list) { | 1246 | if (cur_trans->list.prev != &root->fs_info->trans_list) { |
| 1163 | prev_trans = list_entry(cur_trans->list.prev, | 1247 | prev_trans = list_entry(cur_trans->list.prev, |
| 1164 | struct btrfs_transaction, list); | 1248 | struct btrfs_transaction, list); |
| 1165 | if (!prev_trans->commit_done) { | 1249 | if (!prev_trans->commit_done) { |
| 1166 | atomic_inc(&prev_trans->use_count); | 1250 | atomic_inc(&prev_trans->use_count); |
| 1167 | mutex_unlock(&root->fs_info->trans_mutex); | 1251 | spin_unlock(&root->fs_info->trans_lock); |
| 1168 | 1252 | ||
| 1169 | wait_for_commit(root, prev_trans); | 1253 | wait_for_commit(root, prev_trans); |
| 1170 | 1254 | ||
| 1171 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 1172 | put_transaction(prev_trans); | 1255 | put_transaction(prev_trans); |
| 1256 | } else { | ||
| 1257 | spin_unlock(&root->fs_info->trans_lock); | ||
| 1173 | } | 1258 | } |
| 1259 | } else { | ||
| 1260 | spin_unlock(&root->fs_info->trans_lock); | ||
| 1174 | } | 1261 | } |
| 1175 | 1262 | ||
| 1176 | if (now < cur_trans->start_time || now - cur_trans->start_time < 1) | 1263 | if (now < cur_trans->start_time || now - cur_trans->start_time < 1) |
| @@ -1178,12 +1265,12 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans, | |||
| 1178 | 1265 | ||
| 1179 | do { | 1266 | do { |
| 1180 | int snap_pending = 0; | 1267 | int snap_pending = 0; |
| 1268 | |||
| 1181 | joined = cur_trans->num_joined; | 1269 | joined = cur_trans->num_joined; |
| 1182 | if (!list_empty(&trans->transaction->pending_snapshots)) | 1270 | if (!list_empty(&trans->transaction->pending_snapshots)) |
| 1183 | snap_pending = 1; | 1271 | snap_pending = 1; |
| 1184 | 1272 | ||
| 1185 | WARN_ON(cur_trans != trans->transaction); | 1273 | WARN_ON(cur_trans != trans->transaction); |
| 1186 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1187 | 1274 | ||
| 1188 | if (flush_on_commit || snap_pending) { | 1275 | if (flush_on_commit || snap_pending) { |
| 1189 | btrfs_start_delalloc_inodes(root, 1); | 1276 | btrfs_start_delalloc_inodes(root, 1); |
| @@ -1206,26 +1293,48 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans, | |||
| 1206 | prepare_to_wait(&cur_trans->writer_wait, &wait, | 1293 | prepare_to_wait(&cur_trans->writer_wait, &wait, |
| 1207 | TASK_UNINTERRUPTIBLE); | 1294 | TASK_UNINTERRUPTIBLE); |
| 1208 | 1295 | ||
| 1209 | smp_mb(); | ||
| 1210 | if (atomic_read(&cur_trans->num_writers) > 1) | 1296 | if (atomic_read(&cur_trans->num_writers) > 1) |
| 1211 | schedule_timeout(MAX_SCHEDULE_TIMEOUT); | 1297 | schedule_timeout(MAX_SCHEDULE_TIMEOUT); |
| 1212 | else if (should_grow) | 1298 | else if (should_grow) |
| 1213 | schedule_timeout(1); | 1299 | schedule_timeout(1); |
| 1214 | 1300 | ||
| 1215 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 1216 | finish_wait(&cur_trans->writer_wait, &wait); | 1301 | finish_wait(&cur_trans->writer_wait, &wait); |
| 1217 | } while (atomic_read(&cur_trans->num_writers) > 1 || | 1302 | } while (atomic_read(&cur_trans->num_writers) > 1 || |
| 1218 | (should_grow && cur_trans->num_joined != joined)); | 1303 | (should_grow && cur_trans->num_joined != joined)); |
| 1219 | 1304 | ||
| 1220 | ret = create_pending_snapshots(trans, root->fs_info); | 1305 | /* |
| 1221 | BUG_ON(ret); | 1306 | * Ok now we need to make sure to block out any other joins while we |
| 1307 | * commit the transaction. We could have started a join before setting | ||
| 1308 | * no_join so make sure to wait for num_writers to == 1 again. | ||
| 1309 | */ | ||
| 1310 | spin_lock(&root->fs_info->trans_lock); | ||
| 1311 | root->fs_info->trans_no_join = 1; | ||
| 1312 | spin_unlock(&root->fs_info->trans_lock); | ||
| 1313 | wait_event(cur_trans->writer_wait, | ||
| 1314 | atomic_read(&cur_trans->num_writers) == 1); | ||
| 1315 | |||
| 1316 | /* | ||
| 1317 | * the reloc mutex makes sure that we stop | ||
| 1318 | * the balancing code from coming in and moving | ||
| 1319 | * extents around in the middle of the commit | ||
| 1320 | */ | ||
| 1321 | mutex_lock(&root->fs_info->reloc_mutex); | ||
| 1222 | 1322 | ||
| 1223 | ret = btrfs_run_delayed_items(trans, root); | 1323 | ret = btrfs_run_delayed_items(trans, root); |
| 1224 | BUG_ON(ret); | 1324 | BUG_ON(ret); |
| 1225 | 1325 | ||
| 1326 | ret = create_pending_snapshots(trans, root->fs_info); | ||
| 1327 | BUG_ON(ret); | ||
| 1328 | |||
| 1226 | ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); | 1329 | ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); |
| 1227 | BUG_ON(ret); | 1330 | BUG_ON(ret); |
| 1228 | 1331 | ||
| 1332 | /* | ||
| 1333 | * make sure none of the code above managed to slip in a | ||
| 1334 | * delayed item | ||
| 1335 | */ | ||
| 1336 | btrfs_assert_delayed_root_empty(root); | ||
| 1337 | |||
| 1229 | WARN_ON(cur_trans != trans->transaction); | 1338 | WARN_ON(cur_trans != trans->transaction); |
| 1230 | 1339 | ||
| 1231 | btrfs_scrub_pause(root); | 1340 | btrfs_scrub_pause(root); |
| @@ -1258,9 +1367,6 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans, | |||
| 1258 | btrfs_prepare_extent_commit(trans, root); | 1367 | btrfs_prepare_extent_commit(trans, root); |
| 1259 | 1368 | ||
| 1260 | cur_trans = root->fs_info->running_transaction; | 1369 | cur_trans = root->fs_info->running_transaction; |
| 1261 | spin_lock(&root->fs_info->new_trans_lock); | ||
| 1262 | root->fs_info->running_transaction = NULL; | ||
| 1263 | spin_unlock(&root->fs_info->new_trans_lock); | ||
| 1264 | 1370 | ||
| 1265 | btrfs_set_root_node(&root->fs_info->tree_root->root_item, | 1371 | btrfs_set_root_node(&root->fs_info->tree_root->root_item, |
| 1266 | root->fs_info->tree_root->node); | 1372 | root->fs_info->tree_root->node); |
| @@ -1281,10 +1387,14 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans, | |||
| 1281 | sizeof(root->fs_info->super_copy)); | 1387 | sizeof(root->fs_info->super_copy)); |
| 1282 | 1388 | ||
| 1283 | trans->transaction->blocked = 0; | 1389 | trans->transaction->blocked = 0; |
| 1390 | spin_lock(&root->fs_info->trans_lock); | ||
| 1391 | root->fs_info->running_transaction = NULL; | ||
| 1392 | root->fs_info->trans_no_join = 0; | ||
| 1393 | spin_unlock(&root->fs_info->trans_lock); | ||
| 1394 | mutex_unlock(&root->fs_info->reloc_mutex); | ||
| 1284 | 1395 | ||
| 1285 | wake_up(&root->fs_info->transaction_wait); | 1396 | wake_up(&root->fs_info->transaction_wait); |
| 1286 | 1397 | ||
| 1287 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1288 | ret = btrfs_write_and_wait_transaction(trans, root); | 1398 | ret = btrfs_write_and_wait_transaction(trans, root); |
| 1289 | BUG_ON(ret); | 1399 | BUG_ON(ret); |
| 1290 | write_ctree_super(trans, root, 0); | 1400 | write_ctree_super(trans, root, 0); |
| @@ -1297,22 +1407,21 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans, | |||
| 1297 | 1407 | ||
| 1298 | btrfs_finish_extent_commit(trans, root); | 1408 | btrfs_finish_extent_commit(trans, root); |
| 1299 | 1409 | ||
| 1300 | mutex_lock(&root->fs_info->trans_mutex); | ||
| 1301 | |||
| 1302 | cur_trans->commit_done = 1; | 1410 | cur_trans->commit_done = 1; |
| 1303 | 1411 | ||
| 1304 | root->fs_info->last_trans_committed = cur_trans->transid; | 1412 | root->fs_info->last_trans_committed = cur_trans->transid; |
| 1305 | 1413 | ||
| 1306 | wake_up(&cur_trans->commit_wait); | 1414 | wake_up(&cur_trans->commit_wait); |
| 1307 | 1415 | ||
| 1416 | spin_lock(&root->fs_info->trans_lock); | ||
| 1308 | list_del_init(&cur_trans->list); | 1417 | list_del_init(&cur_trans->list); |
| 1418 | spin_unlock(&root->fs_info->trans_lock); | ||
| 1419 | |||
| 1309 | put_transaction(cur_trans); | 1420 | put_transaction(cur_trans); |
| 1310 | put_transaction(cur_trans); | 1421 | put_transaction(cur_trans); |
| 1311 | 1422 | ||
| 1312 | trace_btrfs_transaction_commit(root); | 1423 | trace_btrfs_transaction_commit(root); |
| 1313 | 1424 | ||
| 1314 | mutex_unlock(&root->fs_info->trans_mutex); | ||
| 1315 | |||
| 1316 | btrfs_scrub_continue(root); | 1425 | btrfs_scrub_continue(root); |
| 1317 | 1426 | ||
| 1318 | if (current->journal_info == trans) | 1427 | if (current->journal_info == trans) |
| @@ -1334,9 +1443,9 @@ int btrfs_clean_old_snapshots(struct btrfs_root *root) | |||
| 1334 | LIST_HEAD(list); | 1443 | LIST_HEAD(list); |
| 1335 | struct btrfs_fs_info *fs_info = root->fs_info; | 1444 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 1336 | 1445 | ||
| 1337 | mutex_lock(&fs_info->trans_mutex); | 1446 | spin_lock(&fs_info->trans_lock); |
| 1338 | list_splice_init(&fs_info->dead_roots, &list); | 1447 | list_splice_init(&fs_info->dead_roots, &list); |
| 1339 | mutex_unlock(&fs_info->trans_mutex); | 1448 | spin_unlock(&fs_info->trans_lock); |
| 1340 | 1449 | ||
| 1341 | while (!list_empty(&list)) { | 1450 | while (!list_empty(&list)) { |
| 1342 | root = list_entry(list.next, struct btrfs_root, root_list); | 1451 | root = list_entry(list.next, struct btrfs_root, root_list); |
diff --git a/fs/btrfs/transaction.h b/fs/btrfs/transaction.h index 804c88639e5d..02564e6230ac 100644 --- a/fs/btrfs/transaction.h +++ b/fs/btrfs/transaction.h | |||
| @@ -28,10 +28,12 @@ struct btrfs_transaction { | |||
| 28 | * transaction can end | 28 | * transaction can end |
| 29 | */ | 29 | */ |
| 30 | atomic_t num_writers; | 30 | atomic_t num_writers; |
| 31 | atomic_t use_count; | ||
| 31 | 32 | ||
| 32 | unsigned long num_joined; | 33 | unsigned long num_joined; |
| 34 | |||
| 35 | spinlock_t commit_lock; | ||
| 33 | int in_commit; | 36 | int in_commit; |
| 34 | atomic_t use_count; | ||
| 35 | int commit_done; | 37 | int commit_done; |
| 36 | int blocked; | 38 | int blocked; |
| 37 | struct list_head list; | 39 | struct list_head list; |
| @@ -45,13 +47,14 @@ struct btrfs_transaction { | |||
| 45 | 47 | ||
| 46 | struct btrfs_trans_handle { | 48 | struct btrfs_trans_handle { |
| 47 | u64 transid; | 49 | u64 transid; |
| 48 | u64 block_group; | ||
| 49 | u64 bytes_reserved; | 50 | u64 bytes_reserved; |
| 51 | unsigned long use_count; | ||
| 50 | unsigned long blocks_reserved; | 52 | unsigned long blocks_reserved; |
| 51 | unsigned long blocks_used; | 53 | unsigned long blocks_used; |
| 52 | unsigned long delayed_ref_updates; | 54 | unsigned long delayed_ref_updates; |
| 53 | struct btrfs_transaction *transaction; | 55 | struct btrfs_transaction *transaction; |
| 54 | struct btrfs_block_rsv *block_rsv; | 56 | struct btrfs_block_rsv *block_rsv; |
| 57 | struct btrfs_block_rsv *orig_rsv; | ||
| 55 | }; | 58 | }; |
| 56 | 59 | ||
| 57 | struct btrfs_pending_snapshot { | 60 | struct btrfs_pending_snapshot { |
| @@ -66,19 +69,6 @@ struct btrfs_pending_snapshot { | |||
| 66 | struct list_head list; | 69 | struct list_head list; |
| 67 | }; | 70 | }; |
| 68 | 71 | ||
| 69 | static inline void btrfs_set_trans_block_group(struct btrfs_trans_handle *trans, | ||
| 70 | struct inode *inode) | ||
| 71 | { | ||
| 72 | trans->block_group = BTRFS_I(inode)->block_group; | ||
| 73 | } | ||
| 74 | |||
| 75 | static inline void btrfs_update_inode_block_group( | ||
| 76 | struct btrfs_trans_handle *trans, | ||
| 77 | struct inode *inode) | ||
| 78 | { | ||
| 79 | BTRFS_I(inode)->block_group = trans->block_group; | ||
| 80 | } | ||
| 81 | |||
| 82 | static inline void btrfs_set_inode_last_trans(struct btrfs_trans_handle *trans, | 72 | static inline void btrfs_set_inode_last_trans(struct btrfs_trans_handle *trans, |
| 83 | struct inode *inode) | 73 | struct inode *inode) |
| 84 | { | 74 | { |
| @@ -92,12 +82,9 @@ int btrfs_end_transaction_nolock(struct btrfs_trans_handle *trans, | |||
| 92 | struct btrfs_root *root); | 82 | struct btrfs_root *root); |
| 93 | struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, | 83 | struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, |
| 94 | int num_items); | 84 | int num_items); |
| 95 | struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root, | 85 | struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root); |
| 96 | int num_blocks); | 86 | struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root); |
| 97 | struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root, | 87 | struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *root); |
| 98 | int num_blocks); | ||
| 99 | struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r, | ||
| 100 | int num_blocks); | ||
| 101 | int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid); | 88 | int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid); |
| 102 | int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans, | 89 | int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans, |
| 103 | struct btrfs_root *root); | 90 | struct btrfs_root *root); |
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index 592396c6dc47..4ce8a9f41d1e 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c | |||
| @@ -3177,7 +3177,7 @@ again: | |||
| 3177 | tmp_key.offset = (u64)-1; | 3177 | tmp_key.offset = (u64)-1; |
| 3178 | 3178 | ||
| 3179 | wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key); | 3179 | wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key); |
| 3180 | BUG_ON(!wc.replay_dest); | 3180 | BUG_ON(IS_ERR_OR_NULL(wc.replay_dest)); |
| 3181 | 3181 | ||
| 3182 | wc.replay_dest->log_root = log; | 3182 | wc.replay_dest->log_root = log; |
| 3183 | btrfs_record_root_in_trans(trans, wc.replay_dest); | 3183 | btrfs_record_root_in_trans(trans, wc.replay_dest); |
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index c48214ef5c09..1efa56e18f9b 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c | |||
| @@ -504,7 +504,7 @@ static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices) | |||
| 504 | BUG_ON(!new_device); | 504 | BUG_ON(!new_device); |
| 505 | memcpy(new_device, device, sizeof(*new_device)); | 505 | memcpy(new_device, device, sizeof(*new_device)); |
| 506 | new_device->name = kstrdup(device->name, GFP_NOFS); | 506 | new_device->name = kstrdup(device->name, GFP_NOFS); |
| 507 | BUG_ON(!new_device->name); | 507 | BUG_ON(device->name && !new_device->name); |
| 508 | new_device->bdev = NULL; | 508 | new_device->bdev = NULL; |
| 509 | new_device->writeable = 0; | 509 | new_device->writeable = 0; |
| 510 | new_device->in_fs_metadata = 0; | 510 | new_device->in_fs_metadata = 0; |
| @@ -689,12 +689,8 @@ int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder, | |||
| 689 | transid = btrfs_super_generation(disk_super); | 689 | transid = btrfs_super_generation(disk_super); |
| 690 | if (disk_super->label[0]) | 690 | if (disk_super->label[0]) |
| 691 | printk(KERN_INFO "device label %s ", disk_super->label); | 691 | printk(KERN_INFO "device label %s ", disk_super->label); |
| 692 | else { | 692 | else |
| 693 | /* FIXME, make a readl uuid parser */ | 693 | printk(KERN_INFO "device fsid %pU ", disk_super->fsid); |
| 694 | printk(KERN_INFO "device fsid %llx-%llx ", | ||
| 695 | *(unsigned long long *)disk_super->fsid, | ||
| 696 | *(unsigned long long *)(disk_super->fsid + 8)); | ||
| 697 | } | ||
| 698 | printk(KERN_CONT "devid %llu transid %llu %s\n", | 694 | printk(KERN_CONT "devid %llu transid %llu %s\n", |
| 699 | (unsigned long long)devid, (unsigned long long)transid, path); | 695 | (unsigned long long)devid, (unsigned long long)transid, path); |
| 700 | ret = device_list_add(path, disk_super, devid, fs_devices_ret); | 696 | ret = device_list_add(path, disk_super, devid, fs_devices_ret); |
diff --git a/fs/btrfs/xattr.c b/fs/btrfs/xattr.c index f3107e4b4d56..5366fe452ab0 100644 --- a/fs/btrfs/xattr.c +++ b/fs/btrfs/xattr.c | |||
| @@ -158,8 +158,6 @@ int __btrfs_setxattr(struct btrfs_trans_handle *trans, | |||
| 158 | if (IS_ERR(trans)) | 158 | if (IS_ERR(trans)) |
| 159 | return PTR_ERR(trans); | 159 | return PTR_ERR(trans); |
| 160 | 160 | ||
| 161 | btrfs_set_trans_block_group(trans, inode); | ||
| 162 | |||
| 163 | ret = do_setxattr(trans, inode, name, value, size, flags); | 161 | ret = do_setxattr(trans, inode, name, value, size, flags); |
| 164 | if (ret) | 162 | if (ret) |
| 165 | goto out; | 163 | goto out; |
diff --git a/fs/buffer.c b/fs/buffer.c index 49c9aada0374..1a80b048ade8 100644 --- a/fs/buffer.c +++ b/fs/buffer.c | |||
| @@ -1902,10 +1902,8 @@ int __block_write_begin(struct page *page, loff_t pos, unsigned len, | |||
| 1902 | if (!buffer_uptodate(*wait_bh)) | 1902 | if (!buffer_uptodate(*wait_bh)) |
| 1903 | err = -EIO; | 1903 | err = -EIO; |
| 1904 | } | 1904 | } |
| 1905 | if (unlikely(err)) { | 1905 | if (unlikely(err)) |
| 1906 | page_zero_new_buffers(page, from, to); | 1906 | page_zero_new_buffers(page, from, to); |
| 1907 | ClearPageUptodate(page); | ||
| 1908 | } | ||
| 1909 | return err; | 1907 | return err; |
| 1910 | } | 1908 | } |
| 1911 | EXPORT_SYMBOL(__block_write_begin); | 1909 | EXPORT_SYMBOL(__block_write_begin); |
diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c index 33da49dc3cc6..5a3953db8118 100644 --- a/fs/ceph/addr.c +++ b/fs/ceph/addr.c | |||
| @@ -453,7 +453,7 @@ static int ceph_writepage(struct page *page, struct writeback_control *wbc) | |||
| 453 | int err; | 453 | int err; |
| 454 | struct inode *inode = page->mapping->host; | 454 | struct inode *inode = page->mapping->host; |
| 455 | BUG_ON(!inode); | 455 | BUG_ON(!inode); |
| 456 | igrab(inode); | 456 | ihold(inode); |
| 457 | err = writepage_nounlock(page, wbc); | 457 | err = writepage_nounlock(page, wbc); |
| 458 | unlock_page(page); | 458 | unlock_page(page); |
| 459 | iput(inode); | 459 | iput(inode); |
diff --git a/fs/ceph/caps.c b/fs/ceph/caps.c index 1f72b00447c4..f605753c8fe9 100644 --- a/fs/ceph/caps.c +++ b/fs/ceph/caps.c | |||
| @@ -2940,14 +2940,12 @@ void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc) | |||
| 2940 | while (!list_empty(&mdsc->cap_dirty)) { | 2940 | while (!list_empty(&mdsc->cap_dirty)) { |
| 2941 | ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info, | 2941 | ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info, |
| 2942 | i_dirty_item); | 2942 | i_dirty_item); |
| 2943 | inode = igrab(&ci->vfs_inode); | 2943 | inode = &ci->vfs_inode; |
| 2944 | ihold(inode); | ||
| 2944 | dout("flush_dirty_caps %p\n", inode); | 2945 | dout("flush_dirty_caps %p\n", inode); |
| 2945 | spin_unlock(&mdsc->cap_dirty_lock); | 2946 | spin_unlock(&mdsc->cap_dirty_lock); |
| 2946 | if (inode) { | 2947 | ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_FLUSH, NULL); |
| 2947 | ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_FLUSH, | 2948 | iput(inode); |
| 2948 | NULL); | ||
| 2949 | iput(inode); | ||
| 2950 | } | ||
| 2951 | spin_lock(&mdsc->cap_dirty_lock); | 2949 | spin_lock(&mdsc->cap_dirty_lock); |
| 2952 | } | 2950 | } |
| 2953 | spin_unlock(&mdsc->cap_dirty_lock); | 2951 | spin_unlock(&mdsc->cap_dirty_lock); |
diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c index 33729e822bb9..ef8f08c343e8 100644 --- a/fs/ceph/dir.c +++ b/fs/ceph/dir.c | |||
| @@ -308,7 +308,8 @@ more: | |||
| 308 | req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS); | 308 | req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS); |
| 309 | if (IS_ERR(req)) | 309 | if (IS_ERR(req)) |
| 310 | return PTR_ERR(req); | 310 | return PTR_ERR(req); |
| 311 | req->r_inode = igrab(inode); | 311 | req->r_inode = inode; |
| 312 | ihold(inode); | ||
| 312 | req->r_dentry = dget(filp->f_dentry); | 313 | req->r_dentry = dget(filp->f_dentry); |
| 313 | /* hints to request -> mds selection code */ | 314 | /* hints to request -> mds selection code */ |
| 314 | req->r_direct_mode = USE_AUTH_MDS; | 315 | req->r_direct_mode = USE_AUTH_MDS; |
| @@ -787,10 +788,12 @@ static int ceph_link(struct dentry *old_dentry, struct inode *dir, | |||
| 787 | req->r_dentry_drop = CEPH_CAP_FILE_SHARED; | 788 | req->r_dentry_drop = CEPH_CAP_FILE_SHARED; |
| 788 | req->r_dentry_unless = CEPH_CAP_FILE_EXCL; | 789 | req->r_dentry_unless = CEPH_CAP_FILE_EXCL; |
| 789 | err = ceph_mdsc_do_request(mdsc, dir, req); | 790 | err = ceph_mdsc_do_request(mdsc, dir, req); |
| 790 | if (err) | 791 | if (err) { |
| 791 | d_drop(dentry); | 792 | d_drop(dentry); |
| 792 | else if (!req->r_reply_info.head->is_dentry) | 793 | } else if (!req->r_reply_info.head->is_dentry) { |
| 793 | d_instantiate(dentry, igrab(old_dentry->d_inode)); | 794 | ihold(old_dentry->d_inode); |
| 795 | d_instantiate(dentry, old_dentry->d_inode); | ||
| 796 | } | ||
| 794 | ceph_mdsc_put_request(req); | 797 | ceph_mdsc_put_request(req); |
| 795 | return err; | 798 | return err; |
| 796 | } | 799 | } |
diff --git a/fs/ceph/export.c b/fs/ceph/export.c index a610d3d67488..f67b687550de 100644 --- a/fs/ceph/export.c +++ b/fs/ceph/export.c | |||
| @@ -109,7 +109,7 @@ static struct dentry *__fh_to_dentry(struct super_block *sb, | |||
| 109 | err = ceph_mdsc_do_request(mdsc, NULL, req); | 109 | err = ceph_mdsc_do_request(mdsc, NULL, req); |
| 110 | inode = req->r_target_inode; | 110 | inode = req->r_target_inode; |
| 111 | if (inode) | 111 | if (inode) |
| 112 | igrab(inode); | 112 | ihold(inode); |
| 113 | ceph_mdsc_put_request(req); | 113 | ceph_mdsc_put_request(req); |
| 114 | if (!inode) | 114 | if (!inode) |
| 115 | return ERR_PTR(-ESTALE); | 115 | return ERR_PTR(-ESTALE); |
| @@ -167,7 +167,7 @@ static struct dentry *__cfh_to_dentry(struct super_block *sb, | |||
| 167 | err = ceph_mdsc_do_request(mdsc, NULL, req); | 167 | err = ceph_mdsc_do_request(mdsc, NULL, req); |
| 168 | inode = req->r_target_inode; | 168 | inode = req->r_target_inode; |
| 169 | if (inode) | 169 | if (inode) |
| 170 | igrab(inode); | 170 | ihold(inode); |
| 171 | ceph_mdsc_put_request(req); | 171 | ceph_mdsc_put_request(req); |
| 172 | if (!inode) | 172 | if (!inode) |
| 173 | return ERR_PTR(err ? err : -ESTALE); | 173 | return ERR_PTR(err ? err : -ESTALE); |
diff --git a/fs/ceph/file.c b/fs/ceph/file.c index 203252d88d9f..9542f07d0b93 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c | |||
| @@ -191,7 +191,8 @@ int ceph_open(struct inode *inode, struct file *file) | |||
| 191 | err = PTR_ERR(req); | 191 | err = PTR_ERR(req); |
| 192 | goto out; | 192 | goto out; |
| 193 | } | 193 | } |
| 194 | req->r_inode = igrab(inode); | 194 | req->r_inode = inode; |
| 195 | ihold(inode); | ||
| 195 | req->r_num_caps = 1; | 196 | req->r_num_caps = 1; |
| 196 | err = ceph_mdsc_do_request(mdsc, parent_inode, req); | 197 | err = ceph_mdsc_do_request(mdsc, parent_inode, req); |
| 197 | if (!err) | 198 | if (!err) |
| @@ -282,7 +283,7 @@ int ceph_release(struct inode *inode, struct file *file) | |||
| 282 | static int striped_read(struct inode *inode, | 283 | static int striped_read(struct inode *inode, |
| 283 | u64 off, u64 len, | 284 | u64 off, u64 len, |
| 284 | struct page **pages, int num_pages, | 285 | struct page **pages, int num_pages, |
| 285 | int *checkeof, bool align_to_pages, | 286 | int *checkeof, bool o_direct, |
| 286 | unsigned long buf_align) | 287 | unsigned long buf_align) |
| 287 | { | 288 | { |
| 288 | struct ceph_fs_client *fsc = ceph_inode_to_client(inode); | 289 | struct ceph_fs_client *fsc = ceph_inode_to_client(inode); |
| @@ -307,7 +308,7 @@ static int striped_read(struct inode *inode, | |||
| 307 | io_align = off & ~PAGE_MASK; | 308 | io_align = off & ~PAGE_MASK; |
| 308 | 309 | ||
| 309 | more: | 310 | more: |
| 310 | if (align_to_pages) | 311 | if (o_direct) |
| 311 | page_align = (pos - io_align + buf_align) & ~PAGE_MASK; | 312 | page_align = (pos - io_align + buf_align) & ~PAGE_MASK; |
| 312 | else | 313 | else |
| 313 | page_align = pos & ~PAGE_MASK; | 314 | page_align = pos & ~PAGE_MASK; |
| @@ -317,10 +318,10 @@ more: | |||
| 317 | ci->i_truncate_seq, | 318 | ci->i_truncate_seq, |
| 318 | ci->i_truncate_size, | 319 | ci->i_truncate_size, |
| 319 | page_pos, pages_left, page_align); | 320 | page_pos, pages_left, page_align); |
| 320 | hit_stripe = this_len < left; | ||
| 321 | was_short = ret >= 0 && ret < this_len; | ||
| 322 | if (ret == -ENOENT) | 321 | if (ret == -ENOENT) |
| 323 | ret = 0; | 322 | ret = 0; |
| 323 | hit_stripe = this_len < left; | ||
| 324 | was_short = ret >= 0 && ret < this_len; | ||
| 324 | dout("striped_read %llu~%u (read %u) got %d%s%s\n", pos, left, read, | 325 | dout("striped_read %llu~%u (read %u) got %d%s%s\n", pos, left, read, |
| 325 | ret, hit_stripe ? " HITSTRIPE" : "", was_short ? " SHORT" : ""); | 326 | ret, hit_stripe ? " HITSTRIPE" : "", was_short ? " SHORT" : ""); |
| 326 | 327 | ||
| @@ -345,20 +346,22 @@ more: | |||
| 345 | } | 346 | } |
| 346 | 347 | ||
| 347 | if (was_short) { | 348 | if (was_short) { |
| 348 | /* was original extent fully inside i_size? */ | 349 | /* did we bounce off eof? */ |
| 349 | if (pos + left <= inode->i_size) { | 350 | if (pos + left > inode->i_size) |
| 350 | dout("zero tail\n"); | 351 | *checkeof = 1; |
| 351 | ceph_zero_page_vector_range(page_off + read, len - read, | 352 | |
| 353 | /* zero trailing bytes (inside i_size) */ | ||
| 354 | if (left > 0 && pos < inode->i_size) { | ||
| 355 | if (pos + left > inode->i_size) | ||
| 356 | left = inode->i_size - pos; | ||
| 357 | |||
| 358 | dout("zero tail %d\n", left); | ||
| 359 | ceph_zero_page_vector_range(page_off + read, left, | ||
| 352 | pages); | 360 | pages); |
| 353 | read = len; | 361 | read += left; |
| 354 | goto out; | ||
| 355 | } | 362 | } |
| 356 | |||
| 357 | /* check i_size */ | ||
| 358 | *checkeof = 1; | ||
| 359 | } | 363 | } |
| 360 | 364 | ||
| 361 | out: | ||
| 362 | if (ret >= 0) | 365 | if (ret >= 0) |
| 363 | ret = read; | 366 | ret = read; |
| 364 | dout("striped_read returns %d\n", ret); | 367 | dout("striped_read returns %d\n", ret); |
| @@ -658,7 +661,7 @@ out: | |||
| 658 | 661 | ||
| 659 | /* hit EOF or hole? */ | 662 | /* hit EOF or hole? */ |
| 660 | if (statret == 0 && *ppos < inode->i_size) { | 663 | if (statret == 0 && *ppos < inode->i_size) { |
| 661 | dout("aio_read sync_read hit hole, reading more\n"); | 664 | dout("aio_read sync_read hit hole, ppos %lld < size %lld, reading more\n", *ppos, inode->i_size); |
| 662 | read += ret; | 665 | read += ret; |
| 663 | base += ret; | 666 | base += ret; |
| 664 | len -= ret; | 667 | len -= ret; |
diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c index 70b6a4839c38..d8858e96ab18 100644 --- a/fs/ceph/inode.c +++ b/fs/ceph/inode.c | |||
| @@ -1101,10 +1101,10 @@ int ceph_fill_trace(struct super_block *sb, struct ceph_mds_request *req, | |||
| 1101 | goto done; | 1101 | goto done; |
| 1102 | } | 1102 | } |
| 1103 | req->r_dentry = dn; /* may have spliced */ | 1103 | req->r_dentry = dn; /* may have spliced */ |
| 1104 | igrab(in); | 1104 | ihold(in); |
| 1105 | } else if (ceph_ino(in) == vino.ino && | 1105 | } else if (ceph_ino(in) == vino.ino && |
| 1106 | ceph_snap(in) == vino.snap) { | 1106 | ceph_snap(in) == vino.snap) { |
| 1107 | igrab(in); | 1107 | ihold(in); |
| 1108 | } else { | 1108 | } else { |
| 1109 | dout(" %p links to %p %llx.%llx, not %llx.%llx\n", | 1109 | dout(" %p links to %p %llx.%llx, not %llx.%llx\n", |
| 1110 | dn, in, ceph_ino(in), ceph_snap(in), | 1110 | dn, in, ceph_ino(in), ceph_snap(in), |
| @@ -1144,7 +1144,7 @@ int ceph_fill_trace(struct super_block *sb, struct ceph_mds_request *req, | |||
| 1144 | goto done; | 1144 | goto done; |
| 1145 | } | 1145 | } |
| 1146 | req->r_dentry = dn; /* may have spliced */ | 1146 | req->r_dentry = dn; /* may have spliced */ |
| 1147 | igrab(in); | 1147 | ihold(in); |
| 1148 | rinfo->head->is_dentry = 1; /* fool notrace handlers */ | 1148 | rinfo->head->is_dentry = 1; /* fool notrace handlers */ |
| 1149 | } | 1149 | } |
| 1150 | 1150 | ||
| @@ -1328,7 +1328,7 @@ void ceph_queue_writeback(struct inode *inode) | |||
| 1328 | if (queue_work(ceph_inode_to_client(inode)->wb_wq, | 1328 | if (queue_work(ceph_inode_to_client(inode)->wb_wq, |
| 1329 | &ceph_inode(inode)->i_wb_work)) { | 1329 | &ceph_inode(inode)->i_wb_work)) { |
| 1330 | dout("ceph_queue_writeback %p\n", inode); | 1330 | dout("ceph_queue_writeback %p\n", inode); |
| 1331 | igrab(inode); | 1331 | ihold(inode); |
| 1332 | } else { | 1332 | } else { |
| 1333 | dout("ceph_queue_writeback %p failed\n", inode); | 1333 | dout("ceph_queue_writeback %p failed\n", inode); |
| 1334 | } | 1334 | } |
| @@ -1353,7 +1353,7 @@ void ceph_queue_invalidate(struct inode *inode) | |||
| 1353 | if (queue_work(ceph_inode_to_client(inode)->pg_inv_wq, | 1353 | if (queue_work(ceph_inode_to_client(inode)->pg_inv_wq, |
| 1354 | &ceph_inode(inode)->i_pg_inv_work)) { | 1354 | &ceph_inode(inode)->i_pg_inv_work)) { |
| 1355 | dout("ceph_queue_invalidate %p\n", inode); | 1355 | dout("ceph_queue_invalidate %p\n", inode); |
| 1356 | igrab(inode); | 1356 | ihold(inode); |
| 1357 | } else { | 1357 | } else { |
| 1358 | dout("ceph_queue_invalidate %p failed\n", inode); | 1358 | dout("ceph_queue_invalidate %p failed\n", inode); |
| 1359 | } | 1359 | } |
| @@ -1477,7 +1477,7 @@ void ceph_queue_vmtruncate(struct inode *inode) | |||
| 1477 | if (queue_work(ceph_sb_to_client(inode->i_sb)->trunc_wq, | 1477 | if (queue_work(ceph_sb_to_client(inode->i_sb)->trunc_wq, |
| 1478 | &ci->i_vmtruncate_work)) { | 1478 | &ci->i_vmtruncate_work)) { |
| 1479 | dout("ceph_queue_vmtruncate %p\n", inode); | 1479 | dout("ceph_queue_vmtruncate %p\n", inode); |
| 1480 | igrab(inode); | 1480 | ihold(inode); |
| 1481 | } else { | 1481 | } else { |
| 1482 | dout("ceph_queue_vmtruncate %p failed, pending=%d\n", | 1482 | dout("ceph_queue_vmtruncate %p failed, pending=%d\n", |
| 1483 | inode, ci->i_truncate_pending); | 1483 | inode, ci->i_truncate_pending); |
| @@ -1738,7 +1738,8 @@ int ceph_setattr(struct dentry *dentry, struct iattr *attr) | |||
| 1738 | __mark_inode_dirty(inode, inode_dirty_flags); | 1738 | __mark_inode_dirty(inode, inode_dirty_flags); |
| 1739 | 1739 | ||
| 1740 | if (mask) { | 1740 | if (mask) { |
| 1741 | req->r_inode = igrab(inode); | 1741 | req->r_inode = inode; |
| 1742 | ihold(inode); | ||
| 1742 | req->r_inode_drop = release; | 1743 | req->r_inode_drop = release; |
| 1743 | req->r_args.setattr.mask = cpu_to_le32(mask); | 1744 | req->r_args.setattr.mask = cpu_to_le32(mask); |
| 1744 | req->r_num_caps = 1; | 1745 | req->r_num_caps = 1; |
| @@ -1779,7 +1780,8 @@ int ceph_do_getattr(struct inode *inode, int mask) | |||
| 1779 | req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS); | 1780 | req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS); |
| 1780 | if (IS_ERR(req)) | 1781 | if (IS_ERR(req)) |
| 1781 | return PTR_ERR(req); | 1782 | return PTR_ERR(req); |
| 1782 | req->r_inode = igrab(inode); | 1783 | req->r_inode = inode; |
| 1784 | ihold(inode); | ||
| 1783 | req->r_num_caps = 1; | 1785 | req->r_num_caps = 1; |
| 1784 | req->r_args.getattr.mask = cpu_to_le32(mask); | 1786 | req->r_args.getattr.mask = cpu_to_le32(mask); |
| 1785 | err = ceph_mdsc_do_request(mdsc, NULL, req); | 1787 | err = ceph_mdsc_do_request(mdsc, NULL, req); |
diff --git a/fs/ceph/ioctl.c b/fs/ceph/ioctl.c index 8888c9ba68db..ef0b5f48e13a 100644 --- a/fs/ceph/ioctl.c +++ b/fs/ceph/ioctl.c | |||
| @@ -73,7 +73,8 @@ static long ceph_ioctl_set_layout(struct file *file, void __user *arg) | |||
| 73 | USE_AUTH_MDS); | 73 | USE_AUTH_MDS); |
| 74 | if (IS_ERR(req)) | 74 | if (IS_ERR(req)) |
| 75 | return PTR_ERR(req); | 75 | return PTR_ERR(req); |
| 76 | req->r_inode = igrab(inode); | 76 | req->r_inode = inode; |
| 77 | ihold(inode); | ||
| 77 | req->r_inode_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL; | 78 | req->r_inode_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL; |
| 78 | 79 | ||
| 79 | req->r_args.setlayout.layout.fl_stripe_unit = | 80 | req->r_args.setlayout.layout.fl_stripe_unit = |
| @@ -135,7 +136,8 @@ static long ceph_ioctl_set_layout_policy (struct file *file, void __user *arg) | |||
| 135 | 136 | ||
| 136 | if (IS_ERR(req)) | 137 | if (IS_ERR(req)) |
| 137 | return PTR_ERR(req); | 138 | return PTR_ERR(req); |
| 138 | req->r_inode = igrab(inode); | 139 | req->r_inode = inode; |
| 140 | ihold(inode); | ||
| 139 | 141 | ||
| 140 | req->r_args.setlayout.layout.fl_stripe_unit = | 142 | req->r_args.setlayout.layout.fl_stripe_unit = |
| 141 | cpu_to_le32(l.stripe_unit); | 143 | cpu_to_le32(l.stripe_unit); |
diff --git a/fs/ceph/locks.c b/fs/ceph/locks.c index 476b329867d4..80576d05d687 100644 --- a/fs/ceph/locks.c +++ b/fs/ceph/locks.c | |||
| @@ -23,7 +23,8 @@ static int ceph_lock_message(u8 lock_type, u16 operation, struct file *file, | |||
| 23 | req = ceph_mdsc_create_request(mdsc, operation, USE_AUTH_MDS); | 23 | req = ceph_mdsc_create_request(mdsc, operation, USE_AUTH_MDS); |
| 24 | if (IS_ERR(req)) | 24 | if (IS_ERR(req)) |
| 25 | return PTR_ERR(req); | 25 | return PTR_ERR(req); |
| 26 | req->r_inode = igrab(inode); | 26 | req->r_inode = inode; |
| 27 | ihold(inode); | ||
| 27 | 28 | ||
| 28 | /* mds requires start and length rather than start and end */ | 29 | /* mds requires start and length rather than start and end */ |
| 29 | if (LLONG_MAX == fl->fl_end) | 30 | if (LLONG_MAX == fl->fl_end) |
| @@ -32,11 +33,10 @@ static int ceph_lock_message(u8 lock_type, u16 operation, struct file *file, | |||
| 32 | length = fl->fl_end - fl->fl_start + 1; | 33 | length = fl->fl_end - fl->fl_start + 1; |
| 33 | 34 | ||
| 34 | dout("ceph_lock_message: rule: %d, op: %d, pid: %llu, start: %llu, " | 35 | dout("ceph_lock_message: rule: %d, op: %d, pid: %llu, start: %llu, " |
| 35 | "length: %llu, wait: %d, type`: %d", (int)lock_type, | 36 | "length: %llu, wait: %d, type: %d", (int)lock_type, |
| 36 | (int)operation, (u64)fl->fl_pid, fl->fl_start, | 37 | (int)operation, (u64)fl->fl_pid, fl->fl_start, |
| 37 | length, wait, fl->fl_type); | 38 | length, wait, fl->fl_type); |
| 38 | 39 | ||
| 39 | |||
| 40 | req->r_args.filelock_change.rule = lock_type; | 40 | req->r_args.filelock_change.rule = lock_type; |
| 41 | req->r_args.filelock_change.type = cmd; | 41 | req->r_args.filelock_change.type = cmd; |
| 42 | req->r_args.filelock_change.pid = cpu_to_le64((u64)fl->fl_pid); | 42 | req->r_args.filelock_change.pid = cpu_to_le64((u64)fl->fl_pid); |
| @@ -70,7 +70,7 @@ static int ceph_lock_message(u8 lock_type, u16 operation, struct file *file, | |||
| 70 | } | 70 | } |
| 71 | ceph_mdsc_put_request(req); | 71 | ceph_mdsc_put_request(req); |
| 72 | dout("ceph_lock_message: rule: %d, op: %d, pid: %llu, start: %llu, " | 72 | dout("ceph_lock_message: rule: %d, op: %d, pid: %llu, start: %llu, " |
| 73 | "length: %llu, wait: %d, type`: %d, err code %d", (int)lock_type, | 73 | "length: %llu, wait: %d, type: %d, err code %d", (int)lock_type, |
| 74 | (int)operation, (u64)fl->fl_pid, fl->fl_start, | 74 | (int)operation, (u64)fl->fl_pid, fl->fl_start, |
| 75 | length, wait, fl->fl_type, err); | 75 | length, wait, fl->fl_type, err); |
| 76 | return err; | 76 | return err; |
| @@ -109,16 +109,20 @@ int ceph_lock(struct file *file, int cmd, struct file_lock *fl) | |||
| 109 | dout("mds locked, locking locally"); | 109 | dout("mds locked, locking locally"); |
| 110 | err = posix_lock_file(file, fl, NULL); | 110 | err = posix_lock_file(file, fl, NULL); |
| 111 | if (err && (CEPH_MDS_OP_SETFILELOCK == op)) { | 111 | if (err && (CEPH_MDS_OP_SETFILELOCK == op)) { |
| 112 | /* undo! This should only happen if the kernel detects | 112 | /* undo! This should only happen if |
| 113 | * local deadlock. */ | 113 | * the kernel detects local |
| 114 | * deadlock. */ | ||
| 114 | ceph_lock_message(CEPH_LOCK_FCNTL, op, file, | 115 | ceph_lock_message(CEPH_LOCK_FCNTL, op, file, |
| 115 | CEPH_LOCK_UNLOCK, 0, fl); | 116 | CEPH_LOCK_UNLOCK, 0, fl); |
| 116 | dout("got %d on posix_lock_file, undid lock", err); | 117 | dout("got %d on posix_lock_file, undid lock", |
| 118 | err); | ||
| 117 | } | 119 | } |
| 118 | } | 120 | } |
| 119 | 121 | ||
| 120 | } else { | 122 | } else if (err == -ERESTARTSYS) { |
| 121 | dout("mds returned error code %d", err); | 123 | dout("undoing lock\n"); |
| 124 | ceph_lock_message(CEPH_LOCK_FCNTL, op, file, | ||
| 125 | CEPH_LOCK_UNLOCK, 0, fl); | ||
| 122 | } | 126 | } |
| 123 | return err; | 127 | return err; |
| 124 | } | 128 | } |
| @@ -155,8 +159,11 @@ int ceph_flock(struct file *file, int cmd, struct file_lock *fl) | |||
| 155 | file, CEPH_LOCK_UNLOCK, 0, fl); | 159 | file, CEPH_LOCK_UNLOCK, 0, fl); |
| 156 | dout("got %d on flock_lock_file_wait, undid lock", err); | 160 | dout("got %d on flock_lock_file_wait, undid lock", err); |
| 157 | } | 161 | } |
| 158 | } else { | 162 | } else if (err == -ERESTARTSYS) { |
| 159 | dout("mds error code %d", err); | 163 | dout("undoing lock\n"); |
| 164 | ceph_lock_message(CEPH_LOCK_FLOCK, | ||
| 165 | CEPH_MDS_OP_SETFILELOCK, | ||
| 166 | file, CEPH_LOCK_UNLOCK, 0, fl); | ||
| 160 | } | 167 | } |
| 161 | return err; | 168 | return err; |
| 162 | } | 169 | } |
diff --git a/fs/ceph/snap.c b/fs/ceph/snap.c index 24067d68a554..54b14de2e729 100644 --- a/fs/ceph/snap.c +++ b/fs/ceph/snap.c | |||
| @@ -722,7 +722,7 @@ static void flush_snaps(struct ceph_mds_client *mdsc) | |||
| 722 | ci = list_first_entry(&mdsc->snap_flush_list, | 722 | ci = list_first_entry(&mdsc->snap_flush_list, |
| 723 | struct ceph_inode_info, i_snap_flush_item); | 723 | struct ceph_inode_info, i_snap_flush_item); |
| 724 | inode = &ci->vfs_inode; | 724 | inode = &ci->vfs_inode; |
| 725 | igrab(inode); | 725 | ihold(inode); |
| 726 | spin_unlock(&mdsc->snap_flush_lock); | 726 | spin_unlock(&mdsc->snap_flush_lock); |
| 727 | spin_lock(&inode->i_lock); | 727 | spin_lock(&inode->i_lock); |
| 728 | __ceph_flush_snaps(ci, &session, 0); | 728 | __ceph_flush_snaps(ci, &session, 0); |
diff --git a/fs/ceph/xattr.c b/fs/ceph/xattr.c index f2b628696180..f42d730f1b66 100644 --- a/fs/ceph/xattr.c +++ b/fs/ceph/xattr.c | |||
| @@ -665,7 +665,8 @@ static int ceph_sync_setxattr(struct dentry *dentry, const char *name, | |||
| 665 | err = PTR_ERR(req); | 665 | err = PTR_ERR(req); |
| 666 | goto out; | 666 | goto out; |
| 667 | } | 667 | } |
| 668 | req->r_inode = igrab(inode); | 668 | req->r_inode = inode; |
| 669 | ihold(inode); | ||
| 669 | req->r_inode_drop = CEPH_CAP_XATTR_SHARED; | 670 | req->r_inode_drop = CEPH_CAP_XATTR_SHARED; |
| 670 | req->r_num_caps = 1; | 671 | req->r_num_caps = 1; |
| 671 | req->r_args.setxattr.flags = cpu_to_le32(flags); | 672 | req->r_args.setxattr.flags = cpu_to_le32(flags); |
| @@ -795,7 +796,8 @@ static int ceph_send_removexattr(struct dentry *dentry, const char *name) | |||
| 795 | USE_AUTH_MDS); | 796 | USE_AUTH_MDS); |
| 796 | if (IS_ERR(req)) | 797 | if (IS_ERR(req)) |
| 797 | return PTR_ERR(req); | 798 | return PTR_ERR(req); |
| 798 | req->r_inode = igrab(inode); | 799 | req->r_inode = inode; |
| 800 | ihold(inode); | ||
| 799 | req->r_inode_drop = CEPH_CAP_XATTR_SHARED; | 801 | req->r_inode_drop = CEPH_CAP_XATTR_SHARED; |
| 800 | req->r_num_caps = 1; | 802 | req->r_num_caps = 1; |
| 801 | req->r_path2 = kstrdup(name, GFP_NOFS); | 803 | req->r_path2 = kstrdup(name, GFP_NOFS); |
diff --git a/fs/cifs/Kconfig b/fs/cifs/Kconfig index 1cd4c3a1862d..53ed1ad2c112 100644 --- a/fs/cifs/Kconfig +++ b/fs/cifs/Kconfig | |||
| @@ -7,6 +7,7 @@ config CIFS | |||
| 7 | select CRYPTO_MD5 | 7 | select CRYPTO_MD5 |
| 8 | select CRYPTO_HMAC | 8 | select CRYPTO_HMAC |
| 9 | select CRYPTO_ARC4 | 9 | select CRYPTO_ARC4 |
| 10 | select CRYPTO_ECB | ||
| 10 | select CRYPTO_DES | 11 | select CRYPTO_DES |
| 11 | help | 12 | help |
| 12 | This is the client VFS module for the Common Internet File System | 13 | This is the client VFS module for the Common Internet File System |
| @@ -148,7 +149,7 @@ config CIFS_FSCACHE | |||
| 148 | 149 | ||
| 149 | config CIFS_ACL | 150 | config CIFS_ACL |
| 150 | bool "Provide CIFS ACL support (EXPERIMENTAL)" | 151 | bool "Provide CIFS ACL support (EXPERIMENTAL)" |
| 151 | depends on EXPERIMENTAL && CIFS_XATTR | 152 | depends on EXPERIMENTAL && CIFS_XATTR && KEYS |
| 152 | help | 153 | help |
| 153 | Allows to fetch CIFS/NTFS ACL from the server. The DACL blob | 154 | Allows to fetch CIFS/NTFS ACL from the server. The DACL blob |
| 154 | is handed over to the application/caller. | 155 | is handed over to the application/caller. |
diff --git a/fs/cifs/cache.c b/fs/cifs/cache.c index dd8584d35a14..545509c3313b 100644 --- a/fs/cifs/cache.c +++ b/fs/cifs/cache.c | |||
| @@ -92,7 +92,7 @@ static uint16_t cifs_server_get_key(const void *cookie_netfs_data, | |||
| 92 | break; | 92 | break; |
| 93 | 93 | ||
| 94 | default: | 94 | default: |
| 95 | cERROR(1, "CIFS: Unknown network family '%d'", sa->sa_family); | 95 | cERROR(1, "Unknown network family '%d'", sa->sa_family); |
| 96 | key_len = 0; | 96 | key_len = 0; |
| 97 | break; | 97 | break; |
| 98 | } | 98 | } |
| @@ -152,7 +152,7 @@ static uint16_t cifs_super_get_key(const void *cookie_netfs_data, void *buffer, | |||
| 152 | 152 | ||
| 153 | sharename = extract_sharename(tcon->treeName); | 153 | sharename = extract_sharename(tcon->treeName); |
| 154 | if (IS_ERR(sharename)) { | 154 | if (IS_ERR(sharename)) { |
| 155 | cFYI(1, "CIFS: couldn't extract sharename\n"); | 155 | cFYI(1, "%s: couldn't extract sharename\n", __func__); |
| 156 | sharename = NULL; | 156 | sharename = NULL; |
| 157 | return 0; | 157 | return 0; |
| 158 | } | 158 | } |
| @@ -302,7 +302,7 @@ static void cifs_fscache_inode_now_uncached(void *cookie_netfs_data) | |||
| 302 | pagevec_init(&pvec, 0); | 302 | pagevec_init(&pvec, 0); |
| 303 | first = 0; | 303 | first = 0; |
| 304 | 304 | ||
| 305 | cFYI(1, "cifs inode 0x%p now uncached", cifsi); | 305 | cFYI(1, "%s: cifs inode 0x%p now uncached", __func__, cifsi); |
| 306 | 306 | ||
| 307 | for (;;) { | 307 | for (;;) { |
| 308 | nr_pages = pagevec_lookup(&pvec, | 308 | nr_pages = pagevec_lookup(&pvec, |
diff --git a/fs/cifs/cifsencrypt.c b/fs/cifs/cifsencrypt.c index dfbd9f1f373d..5a0ee7f2af06 100644 --- a/fs/cifs/cifsencrypt.c +++ b/fs/cifs/cifsencrypt.c | |||
| @@ -184,7 +184,7 @@ int cifs_verify_signature(struct smb_hdr *cifs_pdu, | |||
| 184 | if (cifs_pdu == NULL || server == NULL) | 184 | if (cifs_pdu == NULL || server == NULL) |
| 185 | return -EINVAL; | 185 | return -EINVAL; |
| 186 | 186 | ||
| 187 | if (cifs_pdu->Command == SMB_COM_NEGOTIATE) | 187 | if (!server->session_estab) |
| 188 | return 0; | 188 | return 0; |
| 189 | 189 | ||
| 190 | if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) { | 190 | if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) { |
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 989442dcfb45..2f0c58646c10 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c | |||
| @@ -257,9 +257,6 @@ static int cifs_permission(struct inode *inode, int mask, unsigned int flags) | |||
| 257 | { | 257 | { |
| 258 | struct cifs_sb_info *cifs_sb; | 258 | struct cifs_sb_info *cifs_sb; |
| 259 | 259 | ||
| 260 | if (flags & IPERM_FLAG_RCU) | ||
| 261 | return -ECHILD; | ||
| 262 | |||
| 263 | cifs_sb = CIFS_SB(inode->i_sb); | 260 | cifs_sb = CIFS_SB(inode->i_sb); |
| 264 | 261 | ||
| 265 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) { | 262 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) { |
| @@ -352,6 +349,37 @@ cifs_show_address(struct seq_file *s, struct TCP_Server_Info *server) | |||
| 352 | } | 349 | } |
| 353 | } | 350 | } |
| 354 | 351 | ||
| 352 | static void | ||
| 353 | cifs_show_security(struct seq_file *s, struct TCP_Server_Info *server) | ||
| 354 | { | ||
| 355 | seq_printf(s, ",sec="); | ||
| 356 | |||
| 357 | switch (server->secType) { | ||
| 358 | case LANMAN: | ||
| 359 | seq_printf(s, "lanman"); | ||
| 360 | break; | ||
| 361 | case NTLMv2: | ||
| 362 | seq_printf(s, "ntlmv2"); | ||
| 363 | break; | ||
| 364 | case NTLM: | ||
| 365 | seq_printf(s, "ntlm"); | ||
| 366 | break; | ||
| 367 | case Kerberos: | ||
| 368 | seq_printf(s, "krb5"); | ||
| 369 | break; | ||
| 370 | case RawNTLMSSP: | ||
| 371 | seq_printf(s, "ntlmssp"); | ||
| 372 | break; | ||
| 373 | default: | ||
| 374 | /* shouldn't ever happen */ | ||
| 375 | seq_printf(s, "unknown"); | ||
| 376 | break; | ||
| 377 | } | ||
| 378 | |||
| 379 | if (server->sec_mode & (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) | ||
| 380 | seq_printf(s, "i"); | ||
| 381 | } | ||
| 382 | |||
| 355 | /* | 383 | /* |
| 356 | * cifs_show_options() is for displaying mount options in /proc/mounts. | 384 | * cifs_show_options() is for displaying mount options in /proc/mounts. |
| 357 | * Not all settable options are displayed but most of the important | 385 | * Not all settable options are displayed but most of the important |
| @@ -365,6 +393,8 @@ cifs_show_options(struct seq_file *s, struct vfsmount *m) | |||
| 365 | struct sockaddr *srcaddr; | 393 | struct sockaddr *srcaddr; |
| 366 | srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr; | 394 | srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr; |
| 367 | 395 | ||
| 396 | cifs_show_security(s, tcon->ses->server); | ||
| 397 | |||
| 368 | seq_printf(s, ",unc=%s", tcon->treeName); | 398 | seq_printf(s, ",unc=%s", tcon->treeName); |
| 369 | 399 | ||
| 370 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER) | 400 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER) |
diff --git a/fs/cifs/cifsfs.h b/fs/cifs/cifsfs.h index 64313f778ebf..0900e1658c96 100644 --- a/fs/cifs/cifsfs.h +++ b/fs/cifs/cifsfs.h | |||
| @@ -129,5 +129,5 @@ extern long cifs_ioctl(struct file *filep, unsigned int cmd, unsigned long arg); | |||
| 129 | extern const struct export_operations cifs_export_ops; | 129 | extern const struct export_operations cifs_export_ops; |
| 130 | #endif /* CIFS_NFSD_EXPORT */ | 130 | #endif /* CIFS_NFSD_EXPORT */ |
| 131 | 131 | ||
| 132 | #define CIFS_VERSION "1.72" | 132 | #define CIFS_VERSION "1.73" |
| 133 | #endif /* _CIFSFS_H */ | 133 | #endif /* _CIFSFS_H */ |
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 6d88b82537c3..12cf72dd0c42 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c | |||
| @@ -152,7 +152,7 @@ cifs_reconnect(struct TCP_Server_Info *server) | |||
| 152 | mid_entry->callback(mid_entry); | 152 | mid_entry->callback(mid_entry); |
| 153 | } | 153 | } |
| 154 | 154 | ||
| 155 | while (server->tcpStatus == CifsNeedReconnect) { | 155 | do { |
| 156 | try_to_freeze(); | 156 | try_to_freeze(); |
| 157 | 157 | ||
| 158 | /* we should try only the port we connected to before */ | 158 | /* we should try only the port we connected to before */ |
| @@ -167,7 +167,7 @@ cifs_reconnect(struct TCP_Server_Info *server) | |||
| 167 | server->tcpStatus = CifsNeedNegotiate; | 167 | server->tcpStatus = CifsNeedNegotiate; |
| 168 | spin_unlock(&GlobalMid_Lock); | 168 | spin_unlock(&GlobalMid_Lock); |
| 169 | } | 169 | } |
| 170 | } | 170 | } while (server->tcpStatus == CifsNeedReconnect); |
| 171 | 171 | ||
| 172 | return rc; | 172 | return rc; |
| 173 | } | 173 | } |
| @@ -784,7 +784,7 @@ cifs_parse_mount_options(const char *mountdata, const char *devname, | |||
| 784 | struct smb_vol *vol) | 784 | struct smb_vol *vol) |
| 785 | { | 785 | { |
| 786 | char *value, *data, *end; | 786 | char *value, *data, *end; |
| 787 | char *mountdata_copy, *options; | 787 | char *mountdata_copy = NULL, *options; |
| 788 | unsigned int temp_len, i, j; | 788 | unsigned int temp_len, i, j; |
| 789 | char separator[2]; | 789 | char separator[2]; |
| 790 | short int override_uid = -1; | 790 | short int override_uid = -1; |
| @@ -1391,7 +1391,7 @@ cifs_parse_mount_options(const char *mountdata, const char *devname, | |||
| 1391 | "/proc/fs/cifs/LookupCacheEnabled to 0\n"); | 1391 | "/proc/fs/cifs/LookupCacheEnabled to 0\n"); |
| 1392 | } else if (strnicmp(data, "fsc", 3) == 0) { | 1392 | } else if (strnicmp(data, "fsc", 3) == 0) { |
| 1393 | #ifndef CONFIG_CIFS_FSCACHE | 1393 | #ifndef CONFIG_CIFS_FSCACHE |
| 1394 | cERROR(1, "FS-Cache support needs CONFIG_CIFS_FSCACHE" | 1394 | cERROR(1, "FS-Cache support needs CONFIG_CIFS_FSCACHE " |
| 1395 | "kernel config option set"); | 1395 | "kernel config option set"); |
| 1396 | goto cifs_parse_mount_err; | 1396 | goto cifs_parse_mount_err; |
| 1397 | #endif | 1397 | #endif |
| @@ -1976,7 +1976,7 @@ cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info) | |||
| 1976 | warned_on_ntlm = true; | 1976 | warned_on_ntlm = true; |
| 1977 | cERROR(1, "default security mechanism requested. The default " | 1977 | cERROR(1, "default security mechanism requested. The default " |
| 1978 | "security mechanism will be upgraded from ntlm to " | 1978 | "security mechanism will be upgraded from ntlm to " |
| 1979 | "ntlmv2 in kernel release 2.6.41"); | 1979 | "ntlmv2 in kernel release 3.1"); |
| 1980 | } | 1980 | } |
| 1981 | ses->overrideSecFlg = volume_info->secFlg; | 1981 | ses->overrideSecFlg = volume_info->secFlg; |
| 1982 | 1982 | ||
| @@ -2149,7 +2149,10 @@ cifs_put_tlink(struct tcon_link *tlink) | |||
| 2149 | } | 2149 | } |
| 2150 | 2150 | ||
| 2151 | static inline struct tcon_link * | 2151 | static inline struct tcon_link * |
| 2152 | cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb); | 2152 | cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb) |
| 2153 | { | ||
| 2154 | return cifs_sb->master_tlink; | ||
| 2155 | } | ||
| 2153 | 2156 | ||
| 2154 | static int | 2157 | static int |
| 2155 | compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data) | 2158 | compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data) |
| @@ -3171,6 +3174,10 @@ out: | |||
| 3171 | return rc; | 3174 | return rc; |
| 3172 | } | 3175 | } |
| 3173 | 3176 | ||
| 3177 | /* | ||
| 3178 | * Issue a TREE_CONNECT request. Note that for IPC$ shares, that the tcon | ||
| 3179 | * pointer may be NULL. | ||
| 3180 | */ | ||
| 3174 | int | 3181 | int |
| 3175 | CIFSTCon(unsigned int xid, struct cifs_ses *ses, | 3182 | CIFSTCon(unsigned int xid, struct cifs_ses *ses, |
| 3176 | const char *tree, struct cifs_tcon *tcon, | 3183 | const char *tree, struct cifs_tcon *tcon, |
| @@ -3205,7 +3212,7 @@ CIFSTCon(unsigned int xid, struct cifs_ses *ses, | |||
| 3205 | pSMB->AndXCommand = 0xFF; | 3212 | pSMB->AndXCommand = 0xFF; |
| 3206 | pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO); | 3213 | pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO); |
| 3207 | bcc_ptr = &pSMB->Password[0]; | 3214 | bcc_ptr = &pSMB->Password[0]; |
| 3208 | if ((ses->server->sec_mode) & SECMODE_USER) { | 3215 | if (!tcon || (ses->server->sec_mode & SECMODE_USER)) { |
| 3209 | pSMB->PasswordLength = cpu_to_le16(1); /* minimum */ | 3216 | pSMB->PasswordLength = cpu_to_le16(1); /* minimum */ |
| 3210 | *bcc_ptr = 0; /* password is null byte */ | 3217 | *bcc_ptr = 0; /* password is null byte */ |
| 3211 | bcc_ptr++; /* skip password */ | 3218 | bcc_ptr++; /* skip password */ |
| @@ -3371,7 +3378,7 @@ int cifs_negotiate_protocol(unsigned int xid, struct cifs_ses *ses) | |||
| 3371 | } | 3378 | } |
| 3372 | if (rc == 0) { | 3379 | if (rc == 0) { |
| 3373 | spin_lock(&GlobalMid_Lock); | 3380 | spin_lock(&GlobalMid_Lock); |
| 3374 | if (server->tcpStatus != CifsExiting) | 3381 | if (server->tcpStatus == CifsNeedNegotiate) |
| 3375 | server->tcpStatus = CifsGood; | 3382 | server->tcpStatus = CifsGood; |
| 3376 | else | 3383 | else |
| 3377 | rc = -EHOSTDOWN; | 3384 | rc = -EHOSTDOWN; |
| @@ -3484,12 +3491,6 @@ out: | |||
| 3484 | return tcon; | 3491 | return tcon; |
| 3485 | } | 3492 | } |
| 3486 | 3493 | ||
| 3487 | static inline struct tcon_link * | ||
| 3488 | cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb) | ||
| 3489 | { | ||
| 3490 | return cifs_sb->master_tlink; | ||
| 3491 | } | ||
| 3492 | |||
| 3493 | struct cifs_tcon * | 3494 | struct cifs_tcon * |
| 3494 | cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb) | 3495 | cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb) |
| 3495 | { | 3496 | { |
diff --git a/fs/cifs/fscache.c b/fs/cifs/fscache.c index d368a47ba5eb..816696621ec9 100644 --- a/fs/cifs/fscache.c +++ b/fs/cifs/fscache.c | |||
| @@ -28,14 +28,14 @@ void cifs_fscache_get_client_cookie(struct TCP_Server_Info *server) | |||
| 28 | server->fscache = | 28 | server->fscache = |
| 29 | fscache_acquire_cookie(cifs_fscache_netfs.primary_index, | 29 | fscache_acquire_cookie(cifs_fscache_netfs.primary_index, |
| 30 | &cifs_fscache_server_index_def, server); | 30 | &cifs_fscache_server_index_def, server); |
| 31 | cFYI(1, "CIFS: get client cookie (0x%p/0x%p)", server, | 31 | cFYI(1, "%s: (0x%p/0x%p)", __func__, server, |
| 32 | server->fscache); | 32 | server->fscache); |
| 33 | } | 33 | } |
| 34 | 34 | ||
| 35 | void cifs_fscache_release_client_cookie(struct TCP_Server_Info *server) | 35 | void cifs_fscache_release_client_cookie(struct TCP_Server_Info *server) |
| 36 | { | 36 | { |
| 37 | cFYI(1, "CIFS: release client cookie (0x%p/0x%p)", server, | 37 | cFYI(1, "%s: (0x%p/0x%p)", __func__, server, |
| 38 | server->fscache); | 38 | server->fscache); |
| 39 | fscache_relinquish_cookie(server->fscache, 0); | 39 | fscache_relinquish_cookie(server->fscache, 0); |
| 40 | server->fscache = NULL; | 40 | server->fscache = NULL; |
| 41 | } | 41 | } |
| @@ -47,13 +47,13 @@ void cifs_fscache_get_super_cookie(struct cifs_tcon *tcon) | |||
| 47 | tcon->fscache = | 47 | tcon->fscache = |
| 48 | fscache_acquire_cookie(server->fscache, | 48 | fscache_acquire_cookie(server->fscache, |
| 49 | &cifs_fscache_super_index_def, tcon); | 49 | &cifs_fscache_super_index_def, tcon); |
| 50 | cFYI(1, "CIFS: get superblock cookie (0x%p/0x%p)", | 50 | cFYI(1, "%s: (0x%p/0x%p)", __func__, server->fscache, |
| 51 | server->fscache, tcon->fscache); | 51 | tcon->fscache); |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | void cifs_fscache_release_super_cookie(struct cifs_tcon *tcon) | 54 | void cifs_fscache_release_super_cookie(struct cifs_tcon *tcon) |
| 55 | { | 55 | { |
| 56 | cFYI(1, "CIFS: releasing superblock cookie (0x%p)", tcon->fscache); | 56 | cFYI(1, "%s: (0x%p)", __func__, tcon->fscache); |
| 57 | fscache_relinquish_cookie(tcon->fscache, 0); | 57 | fscache_relinquish_cookie(tcon->fscache, 0); |
| 58 | tcon->fscache = NULL; | 58 | tcon->fscache = NULL; |
| 59 | } | 59 | } |
| @@ -70,8 +70,8 @@ static void cifs_fscache_enable_inode_cookie(struct inode *inode) | |||
| 70 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE) { | 70 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE) { |
| 71 | cifsi->fscache = fscache_acquire_cookie(tcon->fscache, | 71 | cifsi->fscache = fscache_acquire_cookie(tcon->fscache, |
| 72 | &cifs_fscache_inode_object_def, cifsi); | 72 | &cifs_fscache_inode_object_def, cifsi); |
| 73 | cFYI(1, "CIFS: got FH cookie (0x%p/0x%p)", tcon->fscache, | 73 | cFYI(1, "%s: got FH cookie (0x%p/0x%p)", __func__, |
| 74 | cifsi->fscache); | 74 | tcon->fscache, cifsi->fscache); |
| 75 | } | 75 | } |
| 76 | } | 76 | } |
| 77 | 77 | ||
| @@ -80,8 +80,7 @@ void cifs_fscache_release_inode_cookie(struct inode *inode) | |||
| 80 | struct cifsInodeInfo *cifsi = CIFS_I(inode); | 80 | struct cifsInodeInfo *cifsi = CIFS_I(inode); |
| 81 | 81 | ||
| 82 | if (cifsi->fscache) { | 82 | if (cifsi->fscache) { |
| 83 | cFYI(1, "CIFS releasing inode cookie (0x%p)", | 83 | cFYI(1, "%s: (0x%p)", __func__, cifsi->fscache); |
| 84 | cifsi->fscache); | ||
| 85 | fscache_relinquish_cookie(cifsi->fscache, 0); | 84 | fscache_relinquish_cookie(cifsi->fscache, 0); |
| 86 | cifsi->fscache = NULL; | 85 | cifsi->fscache = NULL; |
| 87 | } | 86 | } |
| @@ -92,8 +91,7 @@ static void cifs_fscache_disable_inode_cookie(struct inode *inode) | |||
| 92 | struct cifsInodeInfo *cifsi = CIFS_I(inode); | 91 | struct cifsInodeInfo *cifsi = CIFS_I(inode); |
| 93 | 92 | ||
| 94 | if (cifsi->fscache) { | 93 | if (cifsi->fscache) { |
| 95 | cFYI(1, "CIFS disabling inode cookie (0x%p)", | 94 | cFYI(1, "%s: (0x%p)", __func__, cifsi->fscache); |
| 96 | cifsi->fscache); | ||
| 97 | fscache_relinquish_cookie(cifsi->fscache, 1); | 95 | fscache_relinquish_cookie(cifsi->fscache, 1); |
| 98 | cifsi->fscache = NULL; | 96 | cifsi->fscache = NULL; |
| 99 | } | 97 | } |
| @@ -121,8 +119,8 @@ void cifs_fscache_reset_inode_cookie(struct inode *inode) | |||
| 121 | cifs_sb_master_tcon(cifs_sb)->fscache, | 119 | cifs_sb_master_tcon(cifs_sb)->fscache, |
| 122 | &cifs_fscache_inode_object_def, | 120 | &cifs_fscache_inode_object_def, |
| 123 | cifsi); | 121 | cifsi); |
| 124 | cFYI(1, "CIFS: new cookie 0x%p oldcookie 0x%p", | 122 | cFYI(1, "%s: new cookie 0x%p oldcookie 0x%p", |
| 125 | cifsi->fscache, old); | 123 | __func__, cifsi->fscache, old); |
| 126 | } | 124 | } |
| 127 | } | 125 | } |
| 128 | 126 | ||
| @@ -132,8 +130,8 @@ int cifs_fscache_release_page(struct page *page, gfp_t gfp) | |||
| 132 | struct inode *inode = page->mapping->host; | 130 | struct inode *inode = page->mapping->host; |
| 133 | struct cifsInodeInfo *cifsi = CIFS_I(inode); | 131 | struct cifsInodeInfo *cifsi = CIFS_I(inode); |
| 134 | 132 | ||
| 135 | cFYI(1, "CIFS: fscache release page (0x%p/0x%p)", | 133 | cFYI(1, "%s: (0x%p/0x%p)", __func__, page, |
| 136 | page, cifsi->fscache); | 134 | cifsi->fscache); |
| 137 | if (!fscache_maybe_release_page(cifsi->fscache, page, gfp)) | 135 | if (!fscache_maybe_release_page(cifsi->fscache, page, gfp)) |
| 138 | return 0; | 136 | return 0; |
| 139 | } | 137 | } |
| @@ -144,8 +142,7 @@ int cifs_fscache_release_page(struct page *page, gfp_t gfp) | |||
| 144 | static void cifs_readpage_from_fscache_complete(struct page *page, void *ctx, | 142 | static void cifs_readpage_from_fscache_complete(struct page *page, void *ctx, |
| 145 | int error) | 143 | int error) |
| 146 | { | 144 | { |
| 147 | cFYI(1, "CFS: readpage_from_fscache_complete (0x%p/%d)", | 145 | cFYI(1, "%s: (0x%p/%d)", __func__, page, error); |
| 148 | page, error); | ||
| 149 | if (!error) | 146 | if (!error) |
| 150 | SetPageUptodate(page); | 147 | SetPageUptodate(page); |
| 151 | unlock_page(page); | 148 | unlock_page(page); |
| @@ -158,7 +155,7 @@ int __cifs_readpage_from_fscache(struct inode *inode, struct page *page) | |||
| 158 | { | 155 | { |
| 159 | int ret; | 156 | int ret; |
| 160 | 157 | ||
| 161 | cFYI(1, "CIFS: readpage_from_fscache(fsc:%p, p:%p, i:0x%p", | 158 | cFYI(1, "%s: (fsc:%p, p:%p, i:0x%p", __func__, |
| 162 | CIFS_I(inode)->fscache, page, inode); | 159 | CIFS_I(inode)->fscache, page, inode); |
| 163 | ret = fscache_read_or_alloc_page(CIFS_I(inode)->fscache, page, | 160 | ret = fscache_read_or_alloc_page(CIFS_I(inode)->fscache, page, |
| 164 | cifs_readpage_from_fscache_complete, | 161 | cifs_readpage_from_fscache_complete, |
| @@ -167,11 +164,11 @@ int __cifs_readpage_from_fscache(struct inode *inode, struct page *page) | |||
| 167 | switch (ret) { | 164 | switch (ret) { |
| 168 | 165 | ||
| 169 | case 0: /* page found in fscache, read submitted */ | 166 | case 0: /* page found in fscache, read submitted */ |
| 170 | cFYI(1, "CIFS: readpage_from_fscache: submitted"); | 167 | cFYI(1, "%s: submitted", __func__); |
| 171 | return ret; | 168 | return ret; |
| 172 | case -ENOBUFS: /* page won't be cached */ | 169 | case -ENOBUFS: /* page won't be cached */ |
| 173 | case -ENODATA: /* page not in cache */ | 170 | case -ENODATA: /* page not in cache */ |
| 174 | cFYI(1, "CIFS: readpage_from_fscache %d", ret); | 171 | cFYI(1, "%s: %d", __func__, ret); |
| 175 | return 1; | 172 | return 1; |
| 176 | 173 | ||
| 177 | default: | 174 | default: |
| @@ -190,7 +187,7 @@ int __cifs_readpages_from_fscache(struct inode *inode, | |||
| 190 | { | 187 | { |
| 191 | int ret; | 188 | int ret; |
| 192 | 189 | ||
| 193 | cFYI(1, "CIFS: __cifs_readpages_from_fscache (0x%p/%u/0x%p)", | 190 | cFYI(1, "%s: (0x%p/%u/0x%p)", __func__, |
| 194 | CIFS_I(inode)->fscache, *nr_pages, inode); | 191 | CIFS_I(inode)->fscache, *nr_pages, inode); |
| 195 | ret = fscache_read_or_alloc_pages(CIFS_I(inode)->fscache, mapping, | 192 | ret = fscache_read_or_alloc_pages(CIFS_I(inode)->fscache, mapping, |
| 196 | pages, nr_pages, | 193 | pages, nr_pages, |
| @@ -199,12 +196,12 @@ int __cifs_readpages_from_fscache(struct inode *inode, | |||
| 199 | mapping_gfp_mask(mapping)); | 196 | mapping_gfp_mask(mapping)); |
| 200 | switch (ret) { | 197 | switch (ret) { |
| 201 | case 0: /* read submitted to the cache for all pages */ | 198 | case 0: /* read submitted to the cache for all pages */ |
| 202 | cFYI(1, "CIFS: readpages_from_fscache: submitted"); | 199 | cFYI(1, "%s: submitted", __func__); |
| 203 | return ret; | 200 | return ret; |
| 204 | 201 | ||
| 205 | case -ENOBUFS: /* some pages are not cached and can't be */ | 202 | case -ENOBUFS: /* some pages are not cached and can't be */ |
| 206 | case -ENODATA: /* some pages are not cached */ | 203 | case -ENODATA: /* some pages are not cached */ |
| 207 | cFYI(1, "CIFS: readpages_from_fscache: no page"); | 204 | cFYI(1, "%s: no page", __func__); |
| 208 | return 1; | 205 | return 1; |
| 209 | 206 | ||
| 210 | default: | 207 | default: |
| @@ -218,7 +215,7 @@ void __cifs_readpage_to_fscache(struct inode *inode, struct page *page) | |||
| 218 | { | 215 | { |
| 219 | int ret; | 216 | int ret; |
| 220 | 217 | ||
| 221 | cFYI(1, "CIFS: readpage_to_fscache(fsc: %p, p: %p, i: %p", | 218 | cFYI(1, "%s: (fsc: %p, p: %p, i: %p)", __func__, |
| 222 | CIFS_I(inode)->fscache, page, inode); | 219 | CIFS_I(inode)->fscache, page, inode); |
| 223 | ret = fscache_write_page(CIFS_I(inode)->fscache, page, GFP_KERNEL); | 220 | ret = fscache_write_page(CIFS_I(inode)->fscache, page, GFP_KERNEL); |
| 224 | if (ret != 0) | 221 | if (ret != 0) |
| @@ -230,7 +227,7 @@ void __cifs_fscache_invalidate_page(struct page *page, struct inode *inode) | |||
| 230 | struct cifsInodeInfo *cifsi = CIFS_I(inode); | 227 | struct cifsInodeInfo *cifsi = CIFS_I(inode); |
| 231 | struct fscache_cookie *cookie = cifsi->fscache; | 228 | struct fscache_cookie *cookie = cifsi->fscache; |
| 232 | 229 | ||
| 233 | cFYI(1, "CIFS: fscache invalidatepage (0x%p/0x%p)", page, cookie); | 230 | cFYI(1, "%s: (0x%p/0x%p)", __func__, page, cookie); |
| 234 | fscache_wait_on_page_write(cookie, page); | 231 | fscache_wait_on_page_write(cookie, page); |
| 235 | fscache_uncache_page(cookie, page); | 232 | fscache_uncache_page(cookie, page); |
| 236 | } | 233 | } |
diff --git a/fs/coda/pioctl.c b/fs/coda/pioctl.c index 6cbb3afb36dc..cb140ef293e4 100644 --- a/fs/coda/pioctl.c +++ b/fs/coda/pioctl.c | |||
| @@ -43,8 +43,6 @@ const struct file_operations coda_ioctl_operations = { | |||
| 43 | /* the coda pioctl inode ops */ | 43 | /* the coda pioctl inode ops */ |
| 44 | static int coda_ioctl_permission(struct inode *inode, int mask, unsigned int flags) | 44 | static int coda_ioctl_permission(struct inode *inode, int mask, unsigned int flags) |
| 45 | { | 45 | { |
| 46 | if (flags & IPERM_FLAG_RCU) | ||
| 47 | return -ECHILD; | ||
| 48 | return (mask & MAY_EXEC) ? -EACCES : 0; | 46 | return (mask & MAY_EXEC) ? -EACCES : 0; |
| 49 | } | 47 | } |
| 50 | 48 | ||
diff --git a/fs/dcookies.c b/fs/dcookies.c index a21cabdbd87b..dda0dc702d1b 100644 --- a/fs/dcookies.c +++ b/fs/dcookies.c | |||
| @@ -178,6 +178,8 @@ SYSCALL_DEFINE(lookup_dcookie)(u64 cookie64, char __user * buf, size_t len) | |||
| 178 | /* FIXME: (deleted) ? */ | 178 | /* FIXME: (deleted) ? */ |
| 179 | path = d_path(&dcs->path, kbuf, PAGE_SIZE); | 179 | path = d_path(&dcs->path, kbuf, PAGE_SIZE); |
| 180 | 180 | ||
| 181 | mutex_unlock(&dcookie_mutex); | ||
| 182 | |||
| 181 | if (IS_ERR(path)) { | 183 | if (IS_ERR(path)) { |
| 182 | err = PTR_ERR(path); | 184 | err = PTR_ERR(path); |
| 183 | goto out_free; | 185 | goto out_free; |
| @@ -194,6 +196,7 @@ SYSCALL_DEFINE(lookup_dcookie)(u64 cookie64, char __user * buf, size_t len) | |||
| 194 | 196 | ||
| 195 | out_free: | 197 | out_free: |
| 196 | kfree(kbuf); | 198 | kfree(kbuf); |
| 199 | return err; | ||
| 197 | out: | 200 | out: |
| 198 | mutex_unlock(&dcookie_mutex); | 201 | mutex_unlock(&dcookie_mutex); |
| 199 | return err; | 202 | return err; |
| @@ -1093,6 +1093,7 @@ int flush_old_exec(struct linux_binprm * bprm) | |||
| 1093 | 1093 | ||
| 1094 | bprm->mm = NULL; /* We're using it now */ | 1094 | bprm->mm = NULL; /* We're using it now */ |
| 1095 | 1095 | ||
| 1096 | set_fs(USER_DS); | ||
| 1096 | current->flags &= ~(PF_RANDOMIZE | PF_KTHREAD); | 1097 | current->flags &= ~(PF_RANDOMIZE | PF_KTHREAD); |
| 1097 | flush_thread(); | 1098 | flush_thread(); |
| 1098 | current->personality &= ~bprm->per_clear; | 1099 | current->personality &= ~bprm->per_clear; |
| @@ -1357,10 +1358,6 @@ int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs) | |||
| 1357 | if (retval) | 1358 | if (retval) |
| 1358 | return retval; | 1359 | return retval; |
| 1359 | 1360 | ||
| 1360 | /* kernel module loader fixup */ | ||
| 1361 | /* so we don't try to load run modprobe in kernel space. */ | ||
| 1362 | set_fs(USER_DS); | ||
| 1363 | |||
| 1364 | retval = audit_bprm(bprm); | 1361 | retval = audit_bprm(bprm); |
| 1365 | if (retval) | 1362 | if (retval) |
| 1366 | return retval; | 1363 | return retval; |
| @@ -1999,7 +1996,7 @@ static void wait_for_dump_helpers(struct file *file) | |||
| 1999 | * is a special value that we use to trap recursive | 1996 | * is a special value that we use to trap recursive |
| 2000 | * core dumps | 1997 | * core dumps |
| 2001 | */ | 1998 | */ |
| 2002 | static int umh_pipe_setup(struct subprocess_info *info) | 1999 | static int umh_pipe_setup(struct subprocess_info *info, struct cred *new) |
| 2003 | { | 2000 | { |
| 2004 | struct file *rp, *wp; | 2001 | struct file *rp, *wp; |
| 2005 | struct fdtable *fdt; | 2002 | struct fdtable *fdt; |
diff --git a/fs/fat/file.c b/fs/fat/file.c index 7257752b6d5d..7018e1d8902d 100644 --- a/fs/fat/file.c +++ b/fs/fat/file.c | |||
| @@ -102,7 +102,7 @@ static int fat_ioctl_set_attributes(struct file *file, u32 __user *user_attr) | |||
| 102 | if (attr & ATTR_SYS) | 102 | if (attr & ATTR_SYS) |
| 103 | inode->i_flags |= S_IMMUTABLE; | 103 | inode->i_flags |= S_IMMUTABLE; |
| 104 | else | 104 | else |
| 105 | inode->i_flags &= S_IMMUTABLE; | 105 | inode->i_flags &= ~S_IMMUTABLE; |
| 106 | } | 106 | } |
| 107 | 107 | ||
| 108 | fat_save_attrs(inode, attr); | 108 | fat_save_attrs(inode, attr); |
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index cc6ec4b2f0ff..38f84cd48b67 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c | |||
| @@ -921,6 +921,8 @@ static int fuse_fill_super(struct super_block *sb, void *data, int silent) | |||
| 921 | if (sb->s_flags & MS_MANDLOCK) | 921 | if (sb->s_flags & MS_MANDLOCK) |
| 922 | goto err; | 922 | goto err; |
| 923 | 923 | ||
| 924 | sb->s_flags &= ~MS_NOSEC; | ||
| 925 | |||
| 924 | if (!parse_fuse_opt((char *) data, &d, is_bdev)) | 926 | if (!parse_fuse_opt((char *) data, &d, is_bdev)) |
| 925 | goto err; | 927 | goto err; |
| 926 | 928 | ||
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index 2792a790e50b..1c1336e7b3b2 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c | |||
| @@ -663,14 +663,19 @@ static void glock_work_func(struct work_struct *work) | |||
| 663 | drop_ref = 1; | 663 | drop_ref = 1; |
| 664 | } | 664 | } |
| 665 | spin_lock(&gl->gl_spin); | 665 | spin_lock(&gl->gl_spin); |
| 666 | if (test_and_clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && | 666 | if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && |
| 667 | gl->gl_state != LM_ST_UNLOCKED && | 667 | gl->gl_state != LM_ST_UNLOCKED && |
| 668 | gl->gl_demote_state != LM_ST_EXCLUSIVE) { | 668 | gl->gl_demote_state != LM_ST_EXCLUSIVE) { |
| 669 | unsigned long holdtime, now = jiffies; | 669 | unsigned long holdtime, now = jiffies; |
| 670 | |||
| 670 | holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time; | 671 | holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time; |
| 671 | if (time_before(now, holdtime)) | 672 | if (time_before(now, holdtime)) |
| 672 | delay = holdtime - now; | 673 | delay = holdtime - now; |
| 673 | set_bit(delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE, &gl->gl_flags); | 674 | |
| 675 | if (!delay) { | ||
| 676 | clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags); | ||
| 677 | set_bit(GLF_DEMOTE, &gl->gl_flags); | ||
| 678 | } | ||
| 674 | } | 679 | } |
| 675 | run_queue(gl, 0); | 680 | run_queue(gl, 0); |
| 676 | spin_unlock(&gl->gl_spin); | 681 | spin_unlock(&gl->gl_spin); |
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index 3db5ba4568fc..b3cc8586984e 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c | |||
| @@ -974,7 +974,7 @@ out_no_inode: | |||
| 974 | out_no_read: | 974 | out_no_read: |
| 975 | printk(KERN_WARNING "%s: bread failed, dev=%s, iso_blknum=%d, block=%d\n", | 975 | printk(KERN_WARNING "%s: bread failed, dev=%s, iso_blknum=%d, block=%d\n", |
| 976 | __func__, s->s_id, iso_blknum, block); | 976 | __func__, s->s_id, iso_blknum, block); |
| 977 | goto out_freesbi; | 977 | goto out_freebh; |
| 978 | out_bad_zone_size: | 978 | out_bad_zone_size: |
| 979 | printk(KERN_WARNING "ISOFS: Bad logical zone size %ld\n", | 979 | printk(KERN_WARNING "ISOFS: Bad logical zone size %ld\n", |
| 980 | sbi->s_log_zone_size); | 980 | sbi->s_log_zone_size); |
| @@ -989,6 +989,7 @@ out_unknown_format: | |||
| 989 | 989 | ||
| 990 | out_freebh: | 990 | out_freebh: |
| 991 | brelse(bh); | 991 | brelse(bh); |
| 992 | brelse(pri_bh); | ||
| 992 | out_freesbi: | 993 | out_freesbi: |
| 993 | kfree(opt.iocharset); | 994 | kfree(opt.iocharset); |
| 994 | kfree(sbi); | 995 | kfree(sbi); |
diff --git a/fs/jfs/jfs_logmgr.c b/fs/jfs/jfs_logmgr.c index 278e3fb40b71..583636f745e5 100644 --- a/fs/jfs/jfs_logmgr.c +++ b/fs/jfs/jfs_logmgr.c | |||
| @@ -1123,7 +1123,7 @@ int lmLogOpen(struct super_block *sb) | |||
| 1123 | bdev = blkdev_get_by_dev(sbi->logdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL, | 1123 | bdev = blkdev_get_by_dev(sbi->logdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL, |
| 1124 | log); | 1124 | log); |
| 1125 | if (IS_ERR(bdev)) { | 1125 | if (IS_ERR(bdev)) { |
| 1126 | rc = -PTR_ERR(bdev); | 1126 | rc = PTR_ERR(bdev); |
| 1127 | goto free; | 1127 | goto free; |
| 1128 | } | 1128 | } |
| 1129 | 1129 | ||
diff --git a/fs/logfs/dir.c b/fs/logfs/dir.c index 9ed89d1663f8..1afae26cf236 100644 --- a/fs/logfs/dir.c +++ b/fs/logfs/dir.c | |||
| @@ -555,13 +555,6 @@ static int logfs_symlink(struct inode *dir, struct dentry *dentry, | |||
| 555 | return __logfs_create(dir, dentry, inode, target, destlen); | 555 | return __logfs_create(dir, dentry, inode, target, destlen); |
| 556 | } | 556 | } |
| 557 | 557 | ||
| 558 | static int logfs_permission(struct inode *inode, int mask, unsigned int flags) | ||
| 559 | { | ||
| 560 | if (flags & IPERM_FLAG_RCU) | ||
| 561 | return -ECHILD; | ||
| 562 | return generic_permission(inode, mask, flags, NULL); | ||
| 563 | } | ||
| 564 | |||
| 565 | static int logfs_link(struct dentry *old_dentry, struct inode *dir, | 558 | static int logfs_link(struct dentry *old_dentry, struct inode *dir, |
| 566 | struct dentry *dentry) | 559 | struct dentry *dentry) |
| 567 | { | 560 | { |
| @@ -820,7 +813,6 @@ const struct inode_operations logfs_dir_iops = { | |||
| 820 | .mknod = logfs_mknod, | 813 | .mknod = logfs_mknod, |
| 821 | .rename = logfs_rename, | 814 | .rename = logfs_rename, |
| 822 | .rmdir = logfs_rmdir, | 815 | .rmdir = logfs_rmdir, |
| 823 | .permission = logfs_permission, | ||
| 824 | .symlink = logfs_symlink, | 816 | .symlink = logfs_symlink, |
| 825 | .unlink = logfs_unlink, | 817 | .unlink = logfs_unlink, |
| 826 | }; | 818 | }; |
diff --git a/fs/namei.c b/fs/namei.c index 1ab641f2e78e..0223c41fb114 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
| @@ -238,7 +238,8 @@ int generic_permission(struct inode *inode, int mask, unsigned int flags, | |||
| 238 | 238 | ||
| 239 | /* | 239 | /* |
| 240 | * Read/write DACs are always overridable. | 240 | * Read/write DACs are always overridable. |
| 241 | * Executable DACs are overridable if at least one exec bit is set. | 241 | * Executable DACs are overridable for all directories and |
| 242 | * for non-directories that have least one exec bit set. | ||
| 242 | */ | 243 | */ |
| 243 | if (!(mask & MAY_EXEC) || execute_ok(inode)) | 244 | if (!(mask & MAY_EXEC) || execute_ok(inode)) |
| 244 | if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE)) | 245 | if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE)) |
| @@ -812,6 +813,11 @@ static int follow_automount(struct path *path, unsigned flags, | |||
| 812 | if (!mnt) /* mount collision */ | 813 | if (!mnt) /* mount collision */ |
| 813 | return 0; | 814 | return 0; |
| 814 | 815 | ||
| 816 | if (!*need_mntput) { | ||
| 817 | /* lock_mount() may release path->mnt on error */ | ||
| 818 | mntget(path->mnt); | ||
| 819 | *need_mntput = true; | ||
| 820 | } | ||
| 815 | err = finish_automount(mnt, path); | 821 | err = finish_automount(mnt, path); |
| 816 | 822 | ||
| 817 | switch (err) { | 823 | switch (err) { |
| @@ -819,12 +825,9 @@ static int follow_automount(struct path *path, unsigned flags, | |||
| 819 | /* Someone else made a mount here whilst we were busy */ | 825 | /* Someone else made a mount here whilst we were busy */ |
| 820 | return 0; | 826 | return 0; |
| 821 | case 0: | 827 | case 0: |
| 822 | dput(path->dentry); | 828 | path_put(path); |
| 823 | if (*need_mntput) | ||
| 824 | mntput(path->mnt); | ||
| 825 | path->mnt = mnt; | 829 | path->mnt = mnt; |
| 826 | path->dentry = dget(mnt->mnt_root); | 830 | path->dentry = dget(mnt->mnt_root); |
| 827 | *need_mntput = true; | ||
| 828 | return 0; | 831 | return 0; |
| 829 | default: | 832 | default: |
| 830 | return err; | 833 | return err; |
| @@ -844,9 +847,10 @@ static int follow_automount(struct path *path, unsigned flags, | |||
| 844 | */ | 847 | */ |
| 845 | static int follow_managed(struct path *path, unsigned flags) | 848 | static int follow_managed(struct path *path, unsigned flags) |
| 846 | { | 849 | { |
| 850 | struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */ | ||
| 847 | unsigned managed; | 851 | unsigned managed; |
| 848 | bool need_mntput = false; | 852 | bool need_mntput = false; |
| 849 | int ret; | 853 | int ret = 0; |
| 850 | 854 | ||
| 851 | /* Given that we're not holding a lock here, we retain the value in a | 855 | /* Given that we're not holding a lock here, we retain the value in a |
| 852 | * local variable for each dentry as we look at it so that we don't see | 856 | * local variable for each dentry as we look at it so that we don't see |
| @@ -861,7 +865,7 @@ static int follow_managed(struct path *path, unsigned flags) | |||
| 861 | BUG_ON(!path->dentry->d_op->d_manage); | 865 | BUG_ON(!path->dentry->d_op->d_manage); |
| 862 | ret = path->dentry->d_op->d_manage(path->dentry, false); | 866 | ret = path->dentry->d_op->d_manage(path->dentry, false); |
| 863 | if (ret < 0) | 867 | if (ret < 0) |
| 864 | return ret == -EISDIR ? 0 : ret; | 868 | break; |
| 865 | } | 869 | } |
| 866 | 870 | ||
| 867 | /* Transit to a mounted filesystem. */ | 871 | /* Transit to a mounted filesystem. */ |
| @@ -887,14 +891,19 @@ static int follow_managed(struct path *path, unsigned flags) | |||
| 887 | if (managed & DCACHE_NEED_AUTOMOUNT) { | 891 | if (managed & DCACHE_NEED_AUTOMOUNT) { |
| 888 | ret = follow_automount(path, flags, &need_mntput); | 892 | ret = follow_automount(path, flags, &need_mntput); |
| 889 | if (ret < 0) | 893 | if (ret < 0) |
| 890 | return ret == -EISDIR ? 0 : ret; | 894 | break; |
| 891 | continue; | 895 | continue; |
| 892 | } | 896 | } |
| 893 | 897 | ||
| 894 | /* We didn't change the current path point */ | 898 | /* We didn't change the current path point */ |
| 895 | break; | 899 | break; |
| 896 | } | 900 | } |
| 897 | return 0; | 901 | |
| 902 | if (need_mntput && path->mnt == mnt) | ||
| 903 | mntput(path->mnt); | ||
| 904 | if (ret == -EISDIR) | ||
| 905 | ret = 0; | ||
| 906 | return ret; | ||
| 898 | } | 907 | } |
| 899 | 908 | ||
| 900 | int follow_down_one(struct path *path) | 909 | int follow_down_one(struct path *path) |
| @@ -1003,9 +1012,6 @@ failed: | |||
| 1003 | * Follow down to the covering mount currently visible to userspace. At each | 1012 | * Follow down to the covering mount currently visible to userspace. At each |
| 1004 | * point, the filesystem owning that dentry may be queried as to whether the | 1013 | * point, the filesystem owning that dentry may be queried as to whether the |
| 1005 | * caller is permitted to proceed or not. | 1014 | * caller is permitted to proceed or not. |
| 1006 | * | ||
| 1007 | * Care must be taken as namespace_sem may be held (indicated by mounting_here | ||
| 1008 | * being true). | ||
| 1009 | */ | 1015 | */ |
| 1010 | int follow_down(struct path *path) | 1016 | int follow_down(struct path *path) |
| 1011 | { | 1017 | { |
| @@ -2579,6 +2585,7 @@ int vfs_rmdir(struct inode *dir, struct dentry *dentry) | |||
| 2579 | if (error) | 2585 | if (error) |
| 2580 | goto out; | 2586 | goto out; |
| 2581 | 2587 | ||
| 2588 | shrink_dcache_parent(dentry); | ||
| 2582 | error = dir->i_op->rmdir(dir, dentry); | 2589 | error = dir->i_op->rmdir(dir, dentry); |
| 2583 | if (error) | 2590 | if (error) |
| 2584 | goto out; | 2591 | goto out; |
| @@ -2623,6 +2630,10 @@ static long do_rmdir(int dfd, const char __user *pathname) | |||
| 2623 | error = PTR_ERR(dentry); | 2630 | error = PTR_ERR(dentry); |
| 2624 | if (IS_ERR(dentry)) | 2631 | if (IS_ERR(dentry)) |
| 2625 | goto exit2; | 2632 | goto exit2; |
| 2633 | if (!dentry->d_inode) { | ||
| 2634 | error = -ENOENT; | ||
| 2635 | goto exit3; | ||
| 2636 | } | ||
| 2626 | error = mnt_want_write(nd.path.mnt); | 2637 | error = mnt_want_write(nd.path.mnt); |
| 2627 | if (error) | 2638 | if (error) |
| 2628 | goto exit3; | 2639 | goto exit3; |
| @@ -2711,8 +2722,9 @@ static long do_unlinkat(int dfd, const char __user *pathname) | |||
| 2711 | if (nd.last.name[nd.last.len]) | 2722 | if (nd.last.name[nd.last.len]) |
| 2712 | goto slashes; | 2723 | goto slashes; |
| 2713 | inode = dentry->d_inode; | 2724 | inode = dentry->d_inode; |
| 2714 | if (inode) | 2725 | if (!inode) |
| 2715 | ihold(inode); | 2726 | goto slashes; |
| 2727 | ihold(inode); | ||
| 2716 | error = mnt_want_write(nd.path.mnt); | 2728 | error = mnt_want_write(nd.path.mnt); |
| 2717 | if (error) | 2729 | if (error) |
| 2718 | goto exit2; | 2730 | goto exit2; |
| @@ -2993,6 +3005,8 @@ static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry, | |||
| 2993 | if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry)) | 3005 | if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry)) |
| 2994 | goto out; | 3006 | goto out; |
| 2995 | 3007 | ||
| 3008 | if (target) | ||
| 3009 | shrink_dcache_parent(new_dentry); | ||
| 2996 | error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry); | 3010 | error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry); |
| 2997 | if (error) | 3011 | if (error) |
| 2998 | goto out; | 3012 | goto out; |
diff --git a/fs/nfsd/Kconfig b/fs/nfsd/Kconfig index 18b3e8975fe0..fbb2a5ef5817 100644 --- a/fs/nfsd/Kconfig +++ b/fs/nfsd/Kconfig | |||
| @@ -82,6 +82,7 @@ config NFSD_V4 | |||
| 82 | select NFSD_V3 | 82 | select NFSD_V3 |
| 83 | select FS_POSIX_ACL | 83 | select FS_POSIX_ACL |
| 84 | select SUNRPC_GSS | 84 | select SUNRPC_GSS |
| 85 | select CRYPTO | ||
| 85 | help | 86 | help |
| 86 | This option enables support in your system's NFS server for | 87 | This option enables support in your system's NFS server for |
| 87 | version 4 of the NFS protocol (RFC 3530). | 88 | version 4 of the NFS protocol (RFC 3530). |
diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c index 1f5eae40f34e..2b1449dd2f49 100644 --- a/fs/nfsd/nfsctl.c +++ b/fs/nfsd/nfsctl.c | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #include <linux/lockd/lockd.h> | 13 | #include <linux/lockd/lockd.h> |
| 14 | #include <linux/sunrpc/clnt.h> | 14 | #include <linux/sunrpc/clnt.h> |
| 15 | #include <linux/sunrpc/gss_api.h> | 15 | #include <linux/sunrpc/gss_api.h> |
| 16 | #include <linux/sunrpc/gss_krb5_enctypes.h> | ||
| 16 | 17 | ||
| 17 | #include "idmap.h" | 18 | #include "idmap.h" |
| 18 | #include "nfsd.h" | 19 | #include "nfsd.h" |
| @@ -189,18 +190,10 @@ static struct file_operations export_features_operations = { | |||
| 189 | .release = single_release, | 190 | .release = single_release, |
| 190 | }; | 191 | }; |
| 191 | 192 | ||
| 192 | #ifdef CONFIG_SUNRPC_GSS | 193 | #if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE) |
| 193 | static int supported_enctypes_show(struct seq_file *m, void *v) | 194 | static int supported_enctypes_show(struct seq_file *m, void *v) |
| 194 | { | 195 | { |
| 195 | struct gss_api_mech *k5mech; | 196 | seq_printf(m, KRB5_SUPPORTED_ENCTYPES); |
| 196 | |||
| 197 | k5mech = gss_mech_get_by_name("krb5"); | ||
| 198 | if (k5mech == NULL) | ||
| 199 | goto out; | ||
| 200 | if (k5mech->gm_upcall_enctypes != NULL) | ||
| 201 | seq_printf(m, k5mech->gm_upcall_enctypes); | ||
| 202 | gss_mech_put(k5mech); | ||
| 203 | out: | ||
| 204 | return 0; | 197 | return 0; |
| 205 | } | 198 | } |
| 206 | 199 | ||
| @@ -215,7 +208,7 @@ static struct file_operations supported_enctypes_ops = { | |||
| 215 | .llseek = seq_lseek, | 208 | .llseek = seq_lseek, |
| 216 | .release = single_release, | 209 | .release = single_release, |
| 217 | }; | 210 | }; |
| 218 | #endif /* CONFIG_SUNRPC_GSS */ | 211 | #endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */ |
| 219 | 212 | ||
| 220 | extern int nfsd_pool_stats_open(struct inode *inode, struct file *file); | 213 | extern int nfsd_pool_stats_open(struct inode *inode, struct file *file); |
| 221 | extern int nfsd_pool_stats_release(struct inode *inode, struct file *file); | 214 | extern int nfsd_pool_stats_release(struct inode *inode, struct file *file); |
| @@ -1427,9 +1420,9 @@ static int nfsd_fill_super(struct super_block * sb, void * data, int silent) | |||
| 1427 | [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR}, | 1420 | [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR}, |
| 1428 | [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO}, | 1421 | [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO}, |
| 1429 | [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO}, | 1422 | [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO}, |
| 1430 | #ifdef CONFIG_SUNRPC_GSS | 1423 | #if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE) |
| 1431 | [NFSD_SupportedEnctypes] = {"supported_krb5_enctypes", &supported_enctypes_ops, S_IRUGO}, | 1424 | [NFSD_SupportedEnctypes] = {"supported_krb5_enctypes", &supported_enctypes_ops, S_IRUGO}, |
| 1432 | #endif /* CONFIG_SUNRPC_GSS */ | 1425 | #endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */ |
| 1433 | #ifdef CONFIG_NFSD_V4 | 1426 | #ifdef CONFIG_NFSD_V4 |
| 1434 | [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR}, | 1427 | [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR}, |
| 1435 | [NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR}, | 1428 | [NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR}, |
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index d5718273bb32..fd0acca5370a 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
| @@ -696,7 +696,15 @@ nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *suppor | |||
| 696 | } | 696 | } |
| 697 | #endif /* CONFIG_NFSD_V3 */ | 697 | #endif /* CONFIG_NFSD_V3 */ |
| 698 | 698 | ||
| 699 | static int nfsd_open_break_lease(struct inode *inode, int access) | ||
| 700 | { | ||
| 701 | unsigned int mode; | ||
| 699 | 702 | ||
| 703 | if (access & NFSD_MAY_NOT_BREAK_LEASE) | ||
| 704 | return 0; | ||
| 705 | mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY; | ||
| 706 | return break_lease(inode, mode | O_NONBLOCK); | ||
| 707 | } | ||
| 700 | 708 | ||
| 701 | /* | 709 | /* |
| 702 | * Open an existing file or directory. | 710 | * Open an existing file or directory. |
| @@ -744,12 +752,7 @@ nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, | |||
| 744 | if (!inode->i_fop) | 752 | if (!inode->i_fop) |
| 745 | goto out; | 753 | goto out; |
| 746 | 754 | ||
| 747 | /* | 755 | host_err = nfsd_open_break_lease(inode, access); |
| 748 | * Check to see if there are any leases on this file. | ||
| 749 | * This may block while leases are broken. | ||
| 750 | */ | ||
| 751 | if (!(access & NFSD_MAY_NOT_BREAK_LEASE)) | ||
| 752 | host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? O_WRONLY : 0)); | ||
| 753 | if (host_err) /* NOMEM or WOULDBLOCK */ | 756 | if (host_err) /* NOMEM or WOULDBLOCK */ |
| 754 | goto out_nfserr; | 757 | goto out_nfserr; |
| 755 | 758 | ||
| @@ -1660,8 +1663,10 @@ nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp, | |||
| 1660 | if (!dold->d_inode) | 1663 | if (!dold->d_inode) |
| 1661 | goto out_drop_write; | 1664 | goto out_drop_write; |
| 1662 | host_err = nfsd_break_lease(dold->d_inode); | 1665 | host_err = nfsd_break_lease(dold->d_inode); |
| 1663 | if (host_err) | 1666 | if (host_err) { |
| 1667 | err = nfserrno(host_err); | ||
| 1664 | goto out_drop_write; | 1668 | goto out_drop_write; |
| 1669 | } | ||
| 1665 | host_err = vfs_link(dold, dirp, dnew); | 1670 | host_err = vfs_link(dold, dirp, dnew); |
| 1666 | if (!host_err) { | 1671 | if (!host_err) { |
| 1667 | err = nfserrno(commit_metadata(ffhp)); | 1672 | err = nfserrno(commit_metadata(ffhp)); |
diff --git a/fs/nilfs2/btree.c b/fs/nilfs2/btree.c index 7eafe468a29c..b2e3ff347620 100644 --- a/fs/nilfs2/btree.c +++ b/fs/nilfs2/btree.c | |||
| @@ -1346,6 +1346,11 @@ static void nilfs_btree_shrink(struct nilfs_bmap *btree, | |||
| 1346 | path[level].bp_bh = NULL; | 1346 | path[level].bp_bh = NULL; |
| 1347 | } | 1347 | } |
| 1348 | 1348 | ||
| 1349 | static void nilfs_btree_nop(struct nilfs_bmap *btree, | ||
| 1350 | struct nilfs_btree_path *path, | ||
| 1351 | int level, __u64 *keyp, __u64 *ptrp) | ||
| 1352 | { | ||
| 1353 | } | ||
| 1349 | 1354 | ||
| 1350 | static int nilfs_btree_prepare_delete(struct nilfs_bmap *btree, | 1355 | static int nilfs_btree_prepare_delete(struct nilfs_bmap *btree, |
| 1351 | struct nilfs_btree_path *path, | 1356 | struct nilfs_btree_path *path, |
| @@ -1356,20 +1361,19 @@ static int nilfs_btree_prepare_delete(struct nilfs_bmap *btree, | |||
| 1356 | struct buffer_head *bh; | 1361 | struct buffer_head *bh; |
| 1357 | struct nilfs_btree_node *node, *parent, *sib; | 1362 | struct nilfs_btree_node *node, *parent, *sib; |
| 1358 | __u64 sibptr; | 1363 | __u64 sibptr; |
| 1359 | int pindex, level, ncmin, ncmax, ncblk, ret; | 1364 | int pindex, dindex, level, ncmin, ncmax, ncblk, ret; |
| 1360 | 1365 | ||
| 1361 | ret = 0; | 1366 | ret = 0; |
| 1362 | stats->bs_nblocks = 0; | 1367 | stats->bs_nblocks = 0; |
| 1363 | ncmin = NILFS_BTREE_NODE_NCHILDREN_MIN(nilfs_btree_node_size(btree)); | 1368 | ncmin = NILFS_BTREE_NODE_NCHILDREN_MIN(nilfs_btree_node_size(btree)); |
| 1364 | ncblk = nilfs_btree_nchildren_per_block(btree); | 1369 | ncblk = nilfs_btree_nchildren_per_block(btree); |
| 1365 | 1370 | ||
| 1366 | for (level = NILFS_BTREE_LEVEL_NODE_MIN; | 1371 | for (level = NILFS_BTREE_LEVEL_NODE_MIN, dindex = path[level].bp_index; |
| 1367 | level < nilfs_btree_height(btree) - 1; | 1372 | level < nilfs_btree_height(btree) - 1; |
| 1368 | level++) { | 1373 | level++) { |
| 1369 | node = nilfs_btree_get_nonroot_node(path, level); | 1374 | node = nilfs_btree_get_nonroot_node(path, level); |
| 1370 | path[level].bp_oldreq.bpr_ptr = | 1375 | path[level].bp_oldreq.bpr_ptr = |
| 1371 | nilfs_btree_node_get_ptr(node, path[level].bp_index, | 1376 | nilfs_btree_node_get_ptr(node, dindex, ncblk); |
| 1372 | ncblk); | ||
| 1373 | ret = nilfs_bmap_prepare_end_ptr(btree, | 1377 | ret = nilfs_bmap_prepare_end_ptr(btree, |
| 1374 | &path[level].bp_oldreq, dat); | 1378 | &path[level].bp_oldreq, dat); |
| 1375 | if (ret < 0) | 1379 | if (ret < 0) |
| @@ -1383,6 +1387,7 @@ static int nilfs_btree_prepare_delete(struct nilfs_bmap *btree, | |||
| 1383 | 1387 | ||
| 1384 | parent = nilfs_btree_get_node(btree, path, level + 1, &ncmax); | 1388 | parent = nilfs_btree_get_node(btree, path, level + 1, &ncmax); |
| 1385 | pindex = path[level + 1].bp_index; | 1389 | pindex = path[level + 1].bp_index; |
| 1390 | dindex = pindex; | ||
| 1386 | 1391 | ||
| 1387 | if (pindex > 0) { | 1392 | if (pindex > 0) { |
| 1388 | /* left sibling */ | 1393 | /* left sibling */ |
| @@ -1421,6 +1426,14 @@ static int nilfs_btree_prepare_delete(struct nilfs_bmap *btree, | |||
| 1421 | path[level].bp_sib_bh = bh; | 1426 | path[level].bp_sib_bh = bh; |
| 1422 | path[level].bp_op = nilfs_btree_concat_right; | 1427 | path[level].bp_op = nilfs_btree_concat_right; |
| 1423 | stats->bs_nblocks++; | 1428 | stats->bs_nblocks++; |
| 1429 | /* | ||
| 1430 | * When merging right sibling node | ||
| 1431 | * into the current node, pointer to | ||
| 1432 | * the right sibling node must be | ||
| 1433 | * terminated instead. The adjustment | ||
| 1434 | * below is required for that. | ||
| 1435 | */ | ||
| 1436 | dindex = pindex + 1; | ||
| 1424 | /* continue; */ | 1437 | /* continue; */ |
| 1425 | } | 1438 | } |
| 1426 | } else { | 1439 | } else { |
| @@ -1431,29 +1444,31 @@ static int nilfs_btree_prepare_delete(struct nilfs_bmap *btree, | |||
| 1431 | NILFS_BTREE_ROOT_NCHILDREN_MAX) { | 1444 | NILFS_BTREE_ROOT_NCHILDREN_MAX) { |
| 1432 | path[level].bp_op = nilfs_btree_shrink; | 1445 | path[level].bp_op = nilfs_btree_shrink; |
| 1433 | stats->bs_nblocks += 2; | 1446 | stats->bs_nblocks += 2; |
| 1447 | level++; | ||
| 1448 | path[level].bp_op = nilfs_btree_nop; | ||
| 1449 | goto shrink_root_child; | ||
| 1434 | } else { | 1450 | } else { |
| 1435 | path[level].bp_op = nilfs_btree_do_delete; | 1451 | path[level].bp_op = nilfs_btree_do_delete; |
| 1436 | stats->bs_nblocks++; | 1452 | stats->bs_nblocks++; |
| 1453 | goto out; | ||
| 1437 | } | 1454 | } |
| 1438 | |||
| 1439 | goto out; | ||
| 1440 | |||
| 1441 | } | 1455 | } |
| 1442 | } | 1456 | } |
| 1443 | 1457 | ||
| 1458 | /* child of the root node is deleted */ | ||
| 1459 | path[level].bp_op = nilfs_btree_do_delete; | ||
| 1460 | stats->bs_nblocks++; | ||
| 1461 | |||
| 1462 | shrink_root_child: | ||
| 1444 | node = nilfs_btree_get_root(btree); | 1463 | node = nilfs_btree_get_root(btree); |
| 1445 | path[level].bp_oldreq.bpr_ptr = | 1464 | path[level].bp_oldreq.bpr_ptr = |
| 1446 | nilfs_btree_node_get_ptr(node, path[level].bp_index, | 1465 | nilfs_btree_node_get_ptr(node, dindex, |
| 1447 | NILFS_BTREE_ROOT_NCHILDREN_MAX); | 1466 | NILFS_BTREE_ROOT_NCHILDREN_MAX); |
| 1448 | 1467 | ||
| 1449 | ret = nilfs_bmap_prepare_end_ptr(btree, &path[level].bp_oldreq, dat); | 1468 | ret = nilfs_bmap_prepare_end_ptr(btree, &path[level].bp_oldreq, dat); |
| 1450 | if (ret < 0) | 1469 | if (ret < 0) |
| 1451 | goto err_out_child_node; | 1470 | goto err_out_child_node; |
| 1452 | 1471 | ||
| 1453 | /* child of the root node is deleted */ | ||
| 1454 | path[level].bp_op = nilfs_btree_do_delete; | ||
| 1455 | stats->bs_nblocks++; | ||
| 1456 | |||
| 1457 | /* success */ | 1472 | /* success */ |
| 1458 | out: | 1473 | out: |
| 1459 | *levelp = level; | 1474 | *levelp = level; |
diff --git a/fs/nilfs2/inode.c b/fs/nilfs2/inode.c index b954878ad6ce..b9b45fc2903e 100644 --- a/fs/nilfs2/inode.c +++ b/fs/nilfs2/inode.c | |||
| @@ -801,12 +801,7 @@ out_err: | |||
| 801 | 801 | ||
| 802 | int nilfs_permission(struct inode *inode, int mask, unsigned int flags) | 802 | int nilfs_permission(struct inode *inode, int mask, unsigned int flags) |
| 803 | { | 803 | { |
| 804 | struct nilfs_root *root; | 804 | struct nilfs_root *root = NILFS_I(inode)->i_root; |
| 805 | |||
| 806 | if (flags & IPERM_FLAG_RCU) | ||
| 807 | return -ECHILD; | ||
| 808 | |||
| 809 | root = NILFS_I(inode)->i_root; | ||
| 810 | if ((mask & MAY_WRITE) && root && | 805 | if ((mask & MAY_WRITE) && root && |
| 811 | root->cno != NILFS_CPTREE_CURRENT_CNO) | 806 | root->cno != NILFS_CPTREE_CURRENT_CNO) |
| 812 | return -EROFS; /* snapshot is not writable */ | 807 | return -EROFS; /* snapshot is not writable */ |
diff --git a/fs/nilfs2/segment.c b/fs/nilfs2/segment.c index 141646e88fb5..bb24ab6c282f 100644 --- a/fs/nilfs2/segment.c +++ b/fs/nilfs2/segment.c | |||
| @@ -2573,7 +2573,7 @@ static struct nilfs_sc_info *nilfs_segctor_new(struct super_block *sb, | |||
| 2573 | sci->sc_watermark = NILFS_SC_DEFAULT_WATERMARK; | 2573 | sci->sc_watermark = NILFS_SC_DEFAULT_WATERMARK; |
| 2574 | 2574 | ||
| 2575 | if (nilfs->ns_interval) | 2575 | if (nilfs->ns_interval) |
| 2576 | sci->sc_interval = nilfs->ns_interval; | 2576 | sci->sc_interval = HZ * nilfs->ns_interval; |
| 2577 | if (nilfs->ns_watermark) | 2577 | if (nilfs->ns_watermark) |
| 2578 | sci->sc_watermark = nilfs->ns_watermark; | 2578 | sci->sc_watermark = nilfs->ns_watermark; |
| 2579 | return sci; | 2579 | return sci; |
diff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c index cdbaf5e97308..56f61027236b 100644 --- a/fs/ocfs2/super.c +++ b/fs/ocfs2/super.c | |||
| @@ -1072,7 +1072,7 @@ static int ocfs2_fill_super(struct super_block *sb, void *data, int silent) | |||
| 1072 | 1072 | ||
| 1073 | sb->s_magic = OCFS2_SUPER_MAGIC; | 1073 | sb->s_magic = OCFS2_SUPER_MAGIC; |
| 1074 | 1074 | ||
| 1075 | sb->s_flags = (sb->s_flags & ~MS_POSIXACL) | | 1075 | sb->s_flags = (sb->s_flags & ~(MS_POSIXACL | MS_NOSEC)) | |
| 1076 | ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0); | 1076 | ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0); |
| 1077 | 1077 | ||
| 1078 | /* Hard readonly mode only if: bdev_read_only, MS_RDONLY, | 1078 | /* Hard readonly mode only if: bdev_read_only, MS_RDONLY, |
diff --git a/fs/partitions/check.c b/fs/partitions/check.c index f82e762eeca2..d545e97d99c3 100644 --- a/fs/partitions/check.c +++ b/fs/partitions/check.c | |||
| @@ -255,13 +255,7 @@ ssize_t part_discard_alignment_show(struct device *dev, | |||
| 255 | struct device_attribute *attr, char *buf) | 255 | struct device_attribute *attr, char *buf) |
| 256 | { | 256 | { |
| 257 | struct hd_struct *p = dev_to_part(dev); | 257 | struct hd_struct *p = dev_to_part(dev); |
| 258 | struct gendisk *disk = dev_to_disk(dev); | 258 | return sprintf(buf, "%u\n", p->discard_alignment); |
| 259 | unsigned int alignment = 0; | ||
| 260 | |||
| 261 | if (disk->queue) | ||
| 262 | alignment = queue_limit_discard_alignment(&disk->queue->limits, | ||
| 263 | p->start_sect); | ||
| 264 | return sprintf(buf, "%u\n", alignment); | ||
| 265 | } | 259 | } |
| 266 | 260 | ||
| 267 | ssize_t part_stat_show(struct device *dev, | 261 | ssize_t part_stat_show(struct device *dev, |
| @@ -455,6 +449,8 @@ struct hd_struct *add_partition(struct gendisk *disk, int partno, | |||
| 455 | p->start_sect = start; | 449 | p->start_sect = start; |
| 456 | p->alignment_offset = | 450 | p->alignment_offset = |
| 457 | queue_limit_alignment_offset(&disk->queue->limits, start); | 451 | queue_limit_alignment_offset(&disk->queue->limits, start); |
| 452 | p->discard_alignment = | ||
| 453 | queue_limit_discard_alignment(&disk->queue->limits, start); | ||
| 458 | p->nr_sects = len; | 454 | p->nr_sects = len; |
| 459 | p->partno = partno; | 455 | p->partno = partno; |
| 460 | p->policy = get_disk_ro(disk); | 456 | p->policy = get_disk_ro(disk); |
diff --git a/fs/proc/base.c b/fs/proc/base.c index 14def991d9dd..8a84210ca080 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c | |||
| @@ -2169,11 +2169,7 @@ static const struct file_operations proc_fd_operations = { | |||
| 2169 | */ | 2169 | */ |
| 2170 | static int proc_fd_permission(struct inode *inode, int mask, unsigned int flags) | 2170 | static int proc_fd_permission(struct inode *inode, int mask, unsigned int flags) |
| 2171 | { | 2171 | { |
| 2172 | int rv; | 2172 | int rv = generic_permission(inode, mask, flags, NULL); |
| 2173 | |||
| 2174 | if (flags & IPERM_FLAG_RCU) | ||
| 2175 | return -ECHILD; | ||
| 2176 | rv = generic_permission(inode, mask, flags, NULL); | ||
| 2177 | if (rv == 0) | 2173 | if (rv == 0) |
| 2178 | return 0; | 2174 | return 0; |
| 2179 | if (task_pid(current) == proc_pid(inode)) | 2175 | if (task_pid(current) == proc_pid(inode)) |
diff --git a/fs/proc/namespaces.c b/fs/proc/namespaces.c index 781dec5bd682..be177f702acb 100644 --- a/fs/proc/namespaces.c +++ b/fs/proc/namespaces.c | |||
| @@ -38,18 +38,21 @@ static struct dentry *proc_ns_instantiate(struct inode *dir, | |||
| 38 | struct inode *inode; | 38 | struct inode *inode; |
| 39 | struct proc_inode *ei; | 39 | struct proc_inode *ei; |
| 40 | struct dentry *error = ERR_PTR(-ENOENT); | 40 | struct dentry *error = ERR_PTR(-ENOENT); |
| 41 | void *ns; | ||
| 41 | 42 | ||
| 42 | inode = proc_pid_make_inode(dir->i_sb, task); | 43 | inode = proc_pid_make_inode(dir->i_sb, task); |
| 43 | if (!inode) | 44 | if (!inode) |
| 44 | goto out; | 45 | goto out; |
| 45 | 46 | ||
| 47 | ns = ns_ops->get(task); | ||
| 48 | if (!ns) | ||
| 49 | goto out_iput; | ||
| 50 | |||
| 46 | ei = PROC_I(inode); | 51 | ei = PROC_I(inode); |
| 47 | inode->i_mode = S_IFREG|S_IRUSR; | 52 | inode->i_mode = S_IFREG|S_IRUSR; |
| 48 | inode->i_fop = &ns_file_operations; | 53 | inode->i_fop = &ns_file_operations; |
| 49 | ei->ns_ops = ns_ops; | 54 | ei->ns_ops = ns_ops; |
| 50 | ei->ns = ns_ops->get(task); | 55 | ei->ns = ns; |
| 51 | if (!ei->ns) | ||
| 52 | goto out_iput; | ||
| 53 | 56 | ||
| 54 | dentry->d_op = &pid_dentry_operations; | 57 | dentry->d_op = &pid_dentry_operations; |
| 55 | d_add(dentry, inode); | 58 | d_add(dentry, inode); |
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c index f50133c11c24..d167de365a8d 100644 --- a/fs/proc/proc_sysctl.c +++ b/fs/proc/proc_sysctl.c | |||
| @@ -304,9 +304,6 @@ static int proc_sys_permission(struct inode *inode, int mask,unsigned int flags) | |||
| 304 | struct ctl_table *table; | 304 | struct ctl_table *table; |
| 305 | int error; | 305 | int error; |
| 306 | 306 | ||
| 307 | if (flags & IPERM_FLAG_RCU) | ||
| 308 | return -ECHILD; | ||
| 309 | |||
| 310 | /* Executable files are not allowed under /proc/sys/ */ | 307 | /* Executable files are not allowed under /proc/sys/ */ |
| 311 | if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) | 308 | if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) |
| 312 | return -EACCES; | 309 | return -EACCES; |
diff --git a/fs/proc/root.c b/fs/proc/root.c index a9000e9cfee5..d6c3b416529b 100644 --- a/fs/proc/root.c +++ b/fs/proc/root.c | |||
| @@ -28,11 +28,12 @@ static int proc_test_super(struct super_block *sb, void *data) | |||
| 28 | 28 | ||
| 29 | static int proc_set_super(struct super_block *sb, void *data) | 29 | static int proc_set_super(struct super_block *sb, void *data) |
| 30 | { | 30 | { |
| 31 | struct pid_namespace *ns; | 31 | int err = set_anon_super(sb, NULL); |
| 32 | 32 | if (!err) { | |
| 33 | ns = (struct pid_namespace *)data; | 33 | struct pid_namespace *ns = (struct pid_namespace *)data; |
| 34 | sb->s_fs_info = get_pid_ns(ns); | 34 | sb->s_fs_info = get_pid_ns(ns); |
| 35 | return set_anon_super(sb, NULL); | 35 | } |
| 36 | return err; | ||
| 36 | } | 37 | } |
| 37 | 38 | ||
| 38 | static struct dentry *proc_mount(struct file_system_type *fs_type, | 39 | static struct dentry *proc_mount(struct file_system_type *fs_type, |
diff --git a/fs/reiserfs/xattr.c b/fs/reiserfs/xattr.c index e8a62f41b458..d78089690965 100644 --- a/fs/reiserfs/xattr.c +++ b/fs/reiserfs/xattr.c | |||
| @@ -954,8 +954,6 @@ static int xattr_mount_check(struct super_block *s) | |||
| 954 | 954 | ||
| 955 | int reiserfs_permission(struct inode *inode, int mask, unsigned int flags) | 955 | int reiserfs_permission(struct inode *inode, int mask, unsigned int flags) |
| 956 | { | 956 | { |
| 957 | if (flags & IPERM_FLAG_RCU) | ||
| 958 | return -ECHILD; | ||
| 959 | /* | 957 | /* |
| 960 | * We don't do permission checks on the internal objects. | 958 | * We don't do permission checks on the internal objects. |
| 961 | * Permissions are determined by the "owning" object. | 959 | * Permissions are determined by the "owning" object. |
diff --git a/fs/super.c b/fs/super.c index c75593953c52..ab3d672db0de 100644 --- a/fs/super.c +++ b/fs/super.c | |||
| @@ -822,7 +822,7 @@ struct dentry *mount_bdev(struct file_system_type *fs_type, | |||
| 822 | } else { | 822 | } else { |
| 823 | char b[BDEVNAME_SIZE]; | 823 | char b[BDEVNAME_SIZE]; |
| 824 | 824 | ||
| 825 | s->s_flags = flags; | 825 | s->s_flags = flags | MS_NOSEC; |
| 826 | s->s_mode = mode; | 826 | s->s_mode = mode; |
| 827 | strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id)); | 827 | strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id)); |
| 828 | sb_set_blocksize(s, block_size(bdev)); | 828 | sb_set_blocksize(s, block_size(bdev)); |
diff --git a/fs/sysfs/mount.c b/fs/sysfs/mount.c index 266895783b47..e34f0d99ea4e 100644 --- a/fs/sysfs/mount.c +++ b/fs/sysfs/mount.c | |||
| @@ -95,6 +95,14 @@ static int sysfs_set_super(struct super_block *sb, void *data) | |||
| 95 | return error; | 95 | return error; |
| 96 | } | 96 | } |
| 97 | 97 | ||
| 98 | static void free_sysfs_super_info(struct sysfs_super_info *info) | ||
| 99 | { | ||
| 100 | int type; | ||
| 101 | for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++) | ||
| 102 | kobj_ns_drop(type, info->ns[type]); | ||
| 103 | kfree(info); | ||
| 104 | } | ||
| 105 | |||
| 98 | static struct dentry *sysfs_mount(struct file_system_type *fs_type, | 106 | static struct dentry *sysfs_mount(struct file_system_type *fs_type, |
| 99 | int flags, const char *dev_name, void *data) | 107 | int flags, const char *dev_name, void *data) |
| 100 | { | 108 | { |
| @@ -108,11 +116,11 @@ static struct dentry *sysfs_mount(struct file_system_type *fs_type, | |||
| 108 | return ERR_PTR(-ENOMEM); | 116 | return ERR_PTR(-ENOMEM); |
| 109 | 117 | ||
| 110 | for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++) | 118 | for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++) |
| 111 | info->ns[type] = kobj_ns_current(type); | 119 | info->ns[type] = kobj_ns_grab_current(type); |
| 112 | 120 | ||
| 113 | sb = sget(fs_type, sysfs_test_super, sysfs_set_super, info); | 121 | sb = sget(fs_type, sysfs_test_super, sysfs_set_super, info); |
| 114 | if (IS_ERR(sb) || sb->s_fs_info != info) | 122 | if (IS_ERR(sb) || sb->s_fs_info != info) |
| 115 | kfree(info); | 123 | free_sysfs_super_info(info); |
| 116 | if (IS_ERR(sb)) | 124 | if (IS_ERR(sb)) |
| 117 | return ERR_CAST(sb); | 125 | return ERR_CAST(sb); |
| 118 | if (!sb->s_root) { | 126 | if (!sb->s_root) { |
| @@ -131,12 +139,11 @@ static struct dentry *sysfs_mount(struct file_system_type *fs_type, | |||
| 131 | static void sysfs_kill_sb(struct super_block *sb) | 139 | static void sysfs_kill_sb(struct super_block *sb) |
| 132 | { | 140 | { |
| 133 | struct sysfs_super_info *info = sysfs_info(sb); | 141 | struct sysfs_super_info *info = sysfs_info(sb); |
| 134 | |||
| 135 | /* Remove the superblock from fs_supers/s_instances | 142 | /* Remove the superblock from fs_supers/s_instances |
| 136 | * so we can't find it, before freeing sysfs_super_info. | 143 | * so we can't find it, before freeing sysfs_super_info. |
| 137 | */ | 144 | */ |
| 138 | kill_anon_super(sb); | 145 | kill_anon_super(sb); |
| 139 | kfree(info); | 146 | free_sysfs_super_info(info); |
| 140 | } | 147 | } |
| 141 | 148 | ||
| 142 | static struct file_system_type sysfs_fs_type = { | 149 | static struct file_system_type sysfs_fs_type = { |
| @@ -145,28 +152,6 @@ static struct file_system_type sysfs_fs_type = { | |||
| 145 | .kill_sb = sysfs_kill_sb, | 152 | .kill_sb = sysfs_kill_sb, |
| 146 | }; | 153 | }; |
| 147 | 154 | ||
| 148 | void sysfs_exit_ns(enum kobj_ns_type type, const void *ns) | ||
| 149 | { | ||
| 150 | struct super_block *sb; | ||
| 151 | |||
| 152 | mutex_lock(&sysfs_mutex); | ||
| 153 | spin_lock(&sb_lock); | ||
| 154 | list_for_each_entry(sb, &sysfs_fs_type.fs_supers, s_instances) { | ||
| 155 | struct sysfs_super_info *info = sysfs_info(sb); | ||
| 156 | /* | ||
| 157 | * If we see a superblock on the fs_supers/s_instances | ||
| 158 | * list the unmount has not completed and sb->s_fs_info | ||
| 159 | * points to a valid struct sysfs_super_info. | ||
| 160 | */ | ||
| 161 | /* Ignore superblocks with the wrong ns */ | ||
| 162 | if (info->ns[type] != ns) | ||
| 163 | continue; | ||
| 164 | info->ns[type] = NULL; | ||
| 165 | } | ||
| 166 | spin_unlock(&sb_lock); | ||
| 167 | mutex_unlock(&sysfs_mutex); | ||
| 168 | } | ||
| 169 | |||
| 170 | int __init sysfs_init(void) | 155 | int __init sysfs_init(void) |
| 171 | { | 156 | { |
| 172 | int err = -ENOMEM; | 157 | int err = -ENOMEM; |
diff --git a/fs/sysfs/sysfs.h b/fs/sysfs/sysfs.h index 3d28af31d863..2ed2404f3113 100644 --- a/fs/sysfs/sysfs.h +++ b/fs/sysfs/sysfs.h | |||
| @@ -136,7 +136,7 @@ struct sysfs_addrm_cxt { | |||
| 136 | * instance). | 136 | * instance). |
| 137 | */ | 137 | */ |
| 138 | struct sysfs_super_info { | 138 | struct sysfs_super_info { |
| 139 | const void *ns[KOBJ_NS_TYPES]; | 139 | void *ns[KOBJ_NS_TYPES]; |
| 140 | }; | 140 | }; |
| 141 | #define sysfs_info(SB) ((struct sysfs_super_info *)(SB->s_fs_info)) | 141 | #define sysfs_info(SB) ((struct sysfs_super_info *)(SB->s_fs_info)) |
| 142 | extern struct sysfs_dirent sysfs_root; | 142 | extern struct sysfs_dirent sysfs_root; |
diff --git a/fs/timerfd.c b/fs/timerfd.c index f67acbdda5e8..dffeb3795af1 100644 --- a/fs/timerfd.c +++ b/fs/timerfd.c | |||
| @@ -61,7 +61,9 @@ static enum hrtimer_restart timerfd_tmrproc(struct hrtimer *htmr) | |||
| 61 | 61 | ||
| 62 | /* | 62 | /* |
| 63 | * Called when the clock was set to cancel the timers in the cancel | 63 | * Called when the clock was set to cancel the timers in the cancel |
| 64 | * list. | 64 | * list. This will wake up processes waiting on these timers. The |
| 65 | * wake-up requires ctx->ticks to be non zero, therefore we increment | ||
| 66 | * it before calling wake_up_locked(). | ||
| 65 | */ | 67 | */ |
| 66 | void timerfd_clock_was_set(void) | 68 | void timerfd_clock_was_set(void) |
| 67 | { | 69 | { |
| @@ -76,6 +78,7 @@ void timerfd_clock_was_set(void) | |||
| 76 | spin_lock_irqsave(&ctx->wqh.lock, flags); | 78 | spin_lock_irqsave(&ctx->wqh.lock, flags); |
| 77 | if (ctx->moffs.tv64 != moffs.tv64) { | 79 | if (ctx->moffs.tv64 != moffs.tv64) { |
| 78 | ctx->moffs.tv64 = KTIME_MAX; | 80 | ctx->moffs.tv64 = KTIME_MAX; |
| 81 | ctx->ticks++; | ||
| 79 | wake_up_locked(&ctx->wqh); | 82 | wake_up_locked(&ctx->wqh); |
| 80 | } | 83 | } |
| 81 | spin_unlock_irqrestore(&ctx->wqh.lock, flags); | 84 | spin_unlock_irqrestore(&ctx->wqh.lock, flags); |
diff --git a/fs/ubifs/io.c b/fs/ubifs/io.c index 166951e0dcd3..3be645e012c9 100644 --- a/fs/ubifs/io.c +++ b/fs/ubifs/io.c | |||
| @@ -581,6 +581,7 @@ int ubifs_wbuf_write_nolock(struct ubifs_wbuf *wbuf, void *buf, int len) | |||
| 581 | ubifs_assert(wbuf->size % c->min_io_size == 0); | 581 | ubifs_assert(wbuf->size % c->min_io_size == 0); |
| 582 | ubifs_assert(mutex_is_locked(&wbuf->io_mutex)); | 582 | ubifs_assert(mutex_is_locked(&wbuf->io_mutex)); |
| 583 | ubifs_assert(!c->ro_media && !c->ro_mount); | 583 | ubifs_assert(!c->ro_media && !c->ro_mount); |
| 584 | ubifs_assert(!c->space_fixup); | ||
| 584 | if (c->leb_size - wbuf->offs >= c->max_write_size) | 585 | if (c->leb_size - wbuf->offs >= c->max_write_size) |
| 585 | ubifs_assert(!((wbuf->offs + wbuf->size) % c->max_write_size)); | 586 | ubifs_assert(!((wbuf->offs + wbuf->size) % c->max_write_size)); |
| 586 | 587 | ||
| @@ -759,6 +760,7 @@ int ubifs_write_node(struct ubifs_info *c, void *buf, int len, int lnum, | |||
| 759 | ubifs_assert(lnum >= 0 && lnum < c->leb_cnt && offs >= 0); | 760 | ubifs_assert(lnum >= 0 && lnum < c->leb_cnt && offs >= 0); |
| 760 | ubifs_assert(offs % c->min_io_size == 0 && offs < c->leb_size); | 761 | ubifs_assert(offs % c->min_io_size == 0 && offs < c->leb_size); |
| 761 | ubifs_assert(!c->ro_media && !c->ro_mount); | 762 | ubifs_assert(!c->ro_media && !c->ro_mount); |
| 763 | ubifs_assert(!c->space_fixup); | ||
| 762 | 764 | ||
| 763 | if (c->ro_error) | 765 | if (c->ro_error) |
| 764 | return -EROFS; | 766 | return -EROFS; |
diff --git a/fs/ubifs/journal.c b/fs/ubifs/journal.c index 34b1679e6e3a..cef0460f4c54 100644 --- a/fs/ubifs/journal.c +++ b/fs/ubifs/journal.c | |||
| @@ -669,6 +669,7 @@ out_free: | |||
| 669 | 669 | ||
| 670 | out_release: | 670 | out_release: |
| 671 | release_head(c, BASEHD); | 671 | release_head(c, BASEHD); |
| 672 | kfree(dent); | ||
| 672 | out_ro: | 673 | out_ro: |
| 673 | ubifs_ro_mode(c, err); | 674 | ubifs_ro_mode(c, err); |
| 674 | if (last_reference) | 675 | if (last_reference) |
diff --git a/fs/ubifs/orphan.c b/fs/ubifs/orphan.c index bd644bf587a8..a5422fffbd69 100644 --- a/fs/ubifs/orphan.c +++ b/fs/ubifs/orphan.c | |||
| @@ -674,7 +674,7 @@ static int kill_orphans(struct ubifs_info *c) | |||
| 674 | if (IS_ERR(sleb)) { | 674 | if (IS_ERR(sleb)) { |
| 675 | if (PTR_ERR(sleb) == -EUCLEAN) | 675 | if (PTR_ERR(sleb) == -EUCLEAN) |
| 676 | sleb = ubifs_recover_leb(c, lnum, 0, | 676 | sleb = ubifs_recover_leb(c, lnum, 0, |
| 677 | c->sbuf, 0); | 677 | c->sbuf, -1); |
| 678 | if (IS_ERR(sleb)) { | 678 | if (IS_ERR(sleb)) { |
| 679 | err = PTR_ERR(sleb); | 679 | err = PTR_ERR(sleb); |
| 680 | break; | 680 | break; |
diff --git a/fs/ubifs/recovery.c b/fs/ubifs/recovery.c index 731d9e2e7b50..783d8e0beb76 100644 --- a/fs/ubifs/recovery.c +++ b/fs/ubifs/recovery.c | |||
| @@ -564,19 +564,15 @@ static int fix_unclean_leb(struct ubifs_info *c, struct ubifs_scan_leb *sleb, | |||
| 564 | } | 564 | } |
| 565 | 565 | ||
| 566 | /** | 566 | /** |
| 567 | * drop_last_node - drop the last node or group of nodes. | 567 | * drop_last_group - drop the last group of nodes. |
| 568 | * @sleb: scanned LEB information | 568 | * @sleb: scanned LEB information |
| 569 | * @offs: offset of dropped nodes is returned here | 569 | * @offs: offset of dropped nodes is returned here |
| 570 | * @grouped: non-zero if whole group of nodes have to be dropped | ||
| 571 | * | 570 | * |
| 572 | * This is a helper function for 'ubifs_recover_leb()' which drops the last | 571 | * This is a helper function for 'ubifs_recover_leb()' which drops the last |
| 573 | * node of the scanned LEB or the last group of nodes if @grouped is not zero. | 572 | * group of nodes of the scanned LEB. |
| 574 | * This function returns %1 if a node was dropped and %0 otherwise. | ||
| 575 | */ | 573 | */ |
| 576 | static int drop_last_node(struct ubifs_scan_leb *sleb, int *offs, int grouped) | 574 | static void drop_last_group(struct ubifs_scan_leb *sleb, int *offs) |
| 577 | { | 575 | { |
| 578 | int dropped = 0; | ||
| 579 | |||
| 580 | while (!list_empty(&sleb->nodes)) { | 576 | while (!list_empty(&sleb->nodes)) { |
| 581 | struct ubifs_scan_node *snod; | 577 | struct ubifs_scan_node *snod; |
| 582 | struct ubifs_ch *ch; | 578 | struct ubifs_ch *ch; |
| @@ -585,17 +581,40 @@ static int drop_last_node(struct ubifs_scan_leb *sleb, int *offs, int grouped) | |||
| 585 | list); | 581 | list); |
| 586 | ch = snod->node; | 582 | ch = snod->node; |
| 587 | if (ch->group_type != UBIFS_IN_NODE_GROUP) | 583 | if (ch->group_type != UBIFS_IN_NODE_GROUP) |
| 588 | return dropped; | 584 | break; |
| 589 | dbg_rcvry("dropping node at %d:%d", sleb->lnum, snod->offs); | 585 | |
| 586 | dbg_rcvry("dropping grouped node at %d:%d", | ||
| 587 | sleb->lnum, snod->offs); | ||
| 588 | *offs = snod->offs; | ||
| 589 | list_del(&snod->list); | ||
| 590 | kfree(snod); | ||
| 591 | sleb->nodes_cnt -= 1; | ||
| 592 | } | ||
| 593 | } | ||
| 594 | |||
| 595 | /** | ||
| 596 | * drop_last_node - drop the last node. | ||
| 597 | * @sleb: scanned LEB information | ||
| 598 | * @offs: offset of dropped nodes is returned here | ||
| 599 | * @grouped: non-zero if whole group of nodes have to be dropped | ||
| 600 | * | ||
| 601 | * This is a helper function for 'ubifs_recover_leb()' which drops the last | ||
| 602 | * node of the scanned LEB. | ||
| 603 | */ | ||
| 604 | static void drop_last_node(struct ubifs_scan_leb *sleb, int *offs) | ||
| 605 | { | ||
| 606 | struct ubifs_scan_node *snod; | ||
| 607 | |||
| 608 | if (!list_empty(&sleb->nodes)) { | ||
| 609 | snod = list_entry(sleb->nodes.prev, struct ubifs_scan_node, | ||
| 610 | list); | ||
| 611 | |||
| 612 | dbg_rcvry("dropping last node at %d:%d", sleb->lnum, snod->offs); | ||
| 590 | *offs = snod->offs; | 613 | *offs = snod->offs; |
| 591 | list_del(&snod->list); | 614 | list_del(&snod->list); |
| 592 | kfree(snod); | 615 | kfree(snod); |
| 593 | sleb->nodes_cnt -= 1; | 616 | sleb->nodes_cnt -= 1; |
| 594 | dropped = 1; | ||
| 595 | if (!grouped) | ||
| 596 | break; | ||
| 597 | } | 617 | } |
| 598 | return dropped; | ||
| 599 | } | 618 | } |
| 600 | 619 | ||
| 601 | /** | 620 | /** |
| @@ -604,7 +623,8 @@ static int drop_last_node(struct ubifs_scan_leb *sleb, int *offs, int grouped) | |||
| 604 | * @lnum: LEB number | 623 | * @lnum: LEB number |
| 605 | * @offs: offset | 624 | * @offs: offset |
| 606 | * @sbuf: LEB-sized buffer to use | 625 | * @sbuf: LEB-sized buffer to use |
| 607 | * @grouped: nodes may be grouped for recovery | 626 | * @jhead: journal head number this LEB belongs to (%-1 if the LEB does not |
| 627 | * belong to any journal head) | ||
| 608 | * | 628 | * |
| 609 | * This function does a scan of a LEB, but caters for errors that might have | 629 | * This function does a scan of a LEB, but caters for errors that might have |
| 610 | * been caused by the unclean unmount from which we are attempting to recover. | 630 | * been caused by the unclean unmount from which we are attempting to recover. |
| @@ -612,13 +632,14 @@ static int drop_last_node(struct ubifs_scan_leb *sleb, int *offs, int grouped) | |||
| 612 | * found, and a negative error code in case of failure. | 632 | * found, and a negative error code in case of failure. |
| 613 | */ | 633 | */ |
| 614 | struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum, | 634 | struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum, |
| 615 | int offs, void *sbuf, int grouped) | 635 | int offs, void *sbuf, int jhead) |
| 616 | { | 636 | { |
| 617 | int ret = 0, err, len = c->leb_size - offs, start = offs, min_io_unit; | 637 | int ret = 0, err, len = c->leb_size - offs, start = offs, min_io_unit; |
| 638 | int grouped = jhead == -1 ? 0 : c->jheads[jhead].grouped; | ||
| 618 | struct ubifs_scan_leb *sleb; | 639 | struct ubifs_scan_leb *sleb; |
| 619 | void *buf = sbuf + offs; | 640 | void *buf = sbuf + offs; |
| 620 | 641 | ||
| 621 | dbg_rcvry("%d:%d", lnum, offs); | 642 | dbg_rcvry("%d:%d, jhead %d, grouped %d", lnum, offs, jhead, grouped); |
| 622 | 643 | ||
| 623 | sleb = ubifs_start_scan(c, lnum, offs, sbuf); | 644 | sleb = ubifs_start_scan(c, lnum, offs, sbuf); |
| 624 | if (IS_ERR(sleb)) | 645 | if (IS_ERR(sleb)) |
| @@ -635,7 +656,7 @@ struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum, | |||
| 635 | * Scan quietly until there is an error from which we cannot | 656 | * Scan quietly until there is an error from which we cannot |
| 636 | * recover | 657 | * recover |
| 637 | */ | 658 | */ |
| 638 | ret = ubifs_scan_a_node(c, buf, len, lnum, offs, 0); | 659 | ret = ubifs_scan_a_node(c, buf, len, lnum, offs, 1); |
| 639 | if (ret == SCANNED_A_NODE) { | 660 | if (ret == SCANNED_A_NODE) { |
| 640 | /* A valid node, and not a padding node */ | 661 | /* A valid node, and not a padding node */ |
| 641 | struct ubifs_ch *ch = buf; | 662 | struct ubifs_ch *ch = buf; |
| @@ -695,59 +716,62 @@ struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum, | |||
| 695 | * If nodes are grouped, always drop the incomplete group at | 716 | * If nodes are grouped, always drop the incomplete group at |
| 696 | * the end. | 717 | * the end. |
| 697 | */ | 718 | */ |
| 698 | drop_last_node(sleb, &offs, 1); | 719 | drop_last_group(sleb, &offs); |
| 699 | 720 | ||
| 700 | /* | 721 | if (jhead == GCHD) { |
| 701 | * While we are in the middle of the same min. I/O unit keep dropping | 722 | /* |
| 702 | * nodes. So basically, what we want is to make sure that the last min. | 723 | * If this LEB belongs to the GC head then while we are in the |
| 703 | * I/O unit where we saw the corruption is dropped completely with all | 724 | * middle of the same min. I/O unit keep dropping nodes. So |
| 704 | * the uncorrupted node which may possibly sit there. | 725 | * basically, what we want is to make sure that the last min. |
| 705 | * | 726 | * I/O unit where we saw the corruption is dropped completely |
| 706 | * In other words, let's name the min. I/O unit where the corruption | 727 | * with all the uncorrupted nodes which may possibly sit there. |
| 707 | * starts B, and the previous min. I/O unit A. The below code tries to | 728 | * |
| 708 | * deal with a situation when half of B contains valid nodes or the end | 729 | * In other words, let's name the min. I/O unit where the |
| 709 | * of a valid node, and the second half of B contains corrupted data or | 730 | * corruption starts B, and the previous min. I/O unit A. The |
| 710 | * garbage. This means that UBIFS had been writing to B just before the | 731 | * below code tries to deal with a situation when half of B |
| 711 | * power cut happened. I do not know how realistic is this scenario | 732 | * contains valid nodes or the end of a valid node, and the |
| 712 | * that half of the min. I/O unit had been written successfully and the | 733 | * second half of B contains corrupted data or garbage. This |
| 713 | * other half not, but this is possible in our 'failure mode emulation' | 734 | * means that UBIFS had been writing to B just before the power |
| 714 | * infrastructure at least. | 735 | * cut happened. I do not know how realistic is this scenario |
| 715 | * | 736 | * that half of the min. I/O unit had been written successfully |
| 716 | * So what is the problem, why we need to drop those nodes? Whey can't | 737 | * and the other half not, but this is possible in our 'failure |
| 717 | * we just clean-up the second half of B by putting a padding node | 738 | * mode emulation' infrastructure at least. |
| 718 | * there? We can, and this works fine with one exception which was | 739 | * |
| 719 | * reproduced with power cut emulation testing and happens extremely | 740 | * So what is the problem, why we need to drop those nodes? Why |
| 720 | * rarely. The description follows, but it is worth noting that that is | 741 | * can't we just clean-up the second half of B by putting a |
| 721 | * only about the GC head, so we could do this trick only if the bud | 742 | * padding node there? We can, and this works fine with one |
| 722 | * belongs to the GC head, but it does not seem to be worth an | 743 | * exception which was reproduced with power cut emulation |
| 723 | * additional "if" statement. | 744 | * testing and happens extremely rarely. |
| 724 | * | 745 | * |
| 725 | * So, imagine the file-system is full, we run GC which is moving valid | 746 | * Imagine the file-system is full, we run GC which starts |
| 726 | * nodes from LEB X to LEB Y (obviously, LEB Y is the current GC head | 747 | * moving valid nodes from LEB X to LEB Y (obviously, LEB Y is |
| 727 | * LEB). The @c->gc_lnum is -1, which means that GC will retain LEB X | 748 | * the current GC head LEB). The @c->gc_lnum is -1, which means |
| 728 | * and will try to continue. Imagine that LEB X is currently the | 749 | * that GC will retain LEB X and will try to continue. Imagine |
| 729 | * dirtiest LEB, and the amount of used space in LEB Y is exactly the | 750 | * that LEB X is currently the dirtiest LEB, and the amount of |
| 730 | * same as amount of free space in LEB X. | 751 | * used space in LEB Y is exactly the same as amount of free |
| 731 | * | 752 | * space in LEB X. |
| 732 | * And a power cut happens when nodes are moved from LEB X to LEB Y. We | 753 | * |
| 733 | * are here trying to recover LEB Y which is the GC head LEB. We find | 754 | * And a power cut happens when nodes are moved from LEB X to |
| 734 | * the min. I/O unit B as described above. Then we clean-up LEB Y by | 755 | * LEB Y. We are here trying to recover LEB Y which is the GC |
| 735 | * padding min. I/O unit. And later 'ubifs_rcvry_gc_commit()' function | 756 | * head LEB. We find the min. I/O unit B as described above. |
| 736 | * fails, because it cannot find a dirty LEB which could be GC'd into | 757 | * Then we clean-up LEB Y by padding min. I/O unit. And later |
| 737 | * LEB Y! Even LEB X does not match because the amount of valid nodes | 758 | * 'ubifs_rcvry_gc_commit()' function fails, because it cannot |
| 738 | * there does not fit the free space in LEB Y any more! And this is | 759 | * find a dirty LEB which could be GC'd into LEB Y! Even LEB X |
| 739 | * because of the padding node which we added to LEB Y. The | 760 | * does not match because the amount of valid nodes there does |
| 740 | * user-visible effect of this which I once observed and analysed is | 761 | * not fit the free space in LEB Y any more! And this is |
| 741 | * that we cannot mount the file-system with -ENOSPC error. | 762 | * because of the padding node which we added to LEB Y. The |
| 742 | * | 763 | * user-visible effect of this which I once observed and |
| 743 | * So obviously, to make sure that situation does not happen we should | 764 | * analysed is that we cannot mount the file-system with |
| 744 | * free min. I/O unit B in LEB Y completely and the last used min. I/O | 765 | * -ENOSPC error. |
| 745 | * unit in LEB Y should be A. This is basically what the below code | 766 | * |
| 746 | * tries to do. | 767 | * So obviously, to make sure that situation does not happen we |
| 747 | */ | 768 | * should free min. I/O unit B in LEB Y completely and the last |
| 748 | while (min_io_unit == round_down(offs, c->min_io_size) && | 769 | * used min. I/O unit in LEB Y should be A. This is basically |
| 749 | min_io_unit != offs && | 770 | * what the below code tries to do. |
| 750 | drop_last_node(sleb, &offs, grouped)); | 771 | */ |
| 772 | while (offs > min_io_unit) | ||
| 773 | drop_last_node(sleb, &offs); | ||
| 774 | } | ||
| 751 | 775 | ||
| 752 | buf = sbuf + offs; | 776 | buf = sbuf + offs; |
| 753 | len = c->leb_size - offs; | 777 | len = c->leb_size - offs; |
| @@ -881,7 +905,7 @@ struct ubifs_scan_leb *ubifs_recover_log_leb(struct ubifs_info *c, int lnum, | |||
| 881 | } | 905 | } |
| 882 | ubifs_scan_destroy(sleb); | 906 | ubifs_scan_destroy(sleb); |
| 883 | } | 907 | } |
| 884 | return ubifs_recover_leb(c, lnum, offs, sbuf, 0); | 908 | return ubifs_recover_leb(c, lnum, offs, sbuf, -1); |
| 885 | } | 909 | } |
| 886 | 910 | ||
| 887 | /** | 911 | /** |
diff --git a/fs/ubifs/replay.c b/fs/ubifs/replay.c index 6617280d1679..5e97161ce4d3 100644 --- a/fs/ubifs/replay.c +++ b/fs/ubifs/replay.c | |||
| @@ -557,8 +557,7 @@ static int replay_bud(struct ubifs_info *c, struct bud_entry *b) | |||
| 557 | * these LEBs could possibly be written to at the power cut | 557 | * these LEBs could possibly be written to at the power cut |
| 558 | * time. | 558 | * time. |
| 559 | */ | 559 | */ |
| 560 | sleb = ubifs_recover_leb(c, lnum, offs, c->sbuf, | 560 | sleb = ubifs_recover_leb(c, lnum, offs, c->sbuf, b->bud->jhead); |
| 561 | b->bud->jhead != GCHD); | ||
| 562 | else | 561 | else |
| 563 | sleb = ubifs_scan(c, lnum, offs, c->sbuf, 0); | 562 | sleb = ubifs_scan(c, lnum, offs, c->sbuf, 0); |
| 564 | if (IS_ERR(sleb)) | 563 | if (IS_ERR(sleb)) |
diff --git a/fs/ubifs/shrinker.c b/fs/ubifs/shrinker.c index ca953a945029..9e1d05666fed 100644 --- a/fs/ubifs/shrinker.c +++ b/fs/ubifs/shrinker.c | |||
| @@ -284,7 +284,11 @@ int ubifs_shrinker(struct shrinker *shrink, struct shrink_control *sc) | |||
| 284 | long clean_zn_cnt = atomic_long_read(&ubifs_clean_zn_cnt); | 284 | long clean_zn_cnt = atomic_long_read(&ubifs_clean_zn_cnt); |
| 285 | 285 | ||
| 286 | if (nr == 0) | 286 | if (nr == 0) |
| 287 | return clean_zn_cnt; | 287 | /* |
| 288 | * Due to the way UBIFS updates the clean znode counter it may | ||
| 289 | * temporarily be negative. | ||
| 290 | */ | ||
| 291 | return clean_zn_cnt >= 0 ? clean_zn_cnt : 1; | ||
| 288 | 292 | ||
| 289 | if (!clean_zn_cnt) { | 293 | if (!clean_zn_cnt) { |
| 290 | /* | 294 | /* |
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 1ab0d22e4c94..529be0582029 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c | |||
| @@ -811,15 +811,18 @@ static int alloc_wbufs(struct ubifs_info *c) | |||
| 811 | 811 | ||
| 812 | c->jheads[i].wbuf.sync_callback = &bud_wbuf_callback; | 812 | c->jheads[i].wbuf.sync_callback = &bud_wbuf_callback; |
| 813 | c->jheads[i].wbuf.jhead = i; | 813 | c->jheads[i].wbuf.jhead = i; |
| 814 | c->jheads[i].grouped = 1; | ||
| 814 | } | 815 | } |
| 815 | 816 | ||
| 816 | c->jheads[BASEHD].wbuf.dtype = UBI_SHORTTERM; | 817 | c->jheads[BASEHD].wbuf.dtype = UBI_SHORTTERM; |
| 817 | /* | 818 | /* |
| 818 | * Garbage Collector head likely contains long-term data and | 819 | * Garbage Collector head likely contains long-term data and |
| 819 | * does not need to be synchronized by timer. | 820 | * does not need to be synchronized by timer. Also GC head nodes are |
| 821 | * not grouped. | ||
| 820 | */ | 822 | */ |
| 821 | c->jheads[GCHD].wbuf.dtype = UBI_LONGTERM; | 823 | c->jheads[GCHD].wbuf.dtype = UBI_LONGTERM; |
| 822 | c->jheads[GCHD].wbuf.no_timer = 1; | 824 | c->jheads[GCHD].wbuf.no_timer = 1; |
| 825 | c->jheads[GCHD].grouped = 0; | ||
| 823 | 826 | ||
| 824 | return 0; | 827 | return 0; |
| 825 | } | 828 | } |
| @@ -1284,12 +1287,25 @@ static int mount_ubifs(struct ubifs_info *c) | |||
| 1284 | if ((c->mst_node->flags & cpu_to_le32(UBIFS_MST_DIRTY)) != 0) { | 1287 | if ((c->mst_node->flags & cpu_to_le32(UBIFS_MST_DIRTY)) != 0) { |
| 1285 | ubifs_msg("recovery needed"); | 1288 | ubifs_msg("recovery needed"); |
| 1286 | c->need_recovery = 1; | 1289 | c->need_recovery = 1; |
| 1287 | if (!c->ro_mount) { | 1290 | } |
| 1288 | err = ubifs_recover_inl_heads(c, c->sbuf); | 1291 | |
| 1289 | if (err) | 1292 | if (c->need_recovery && !c->ro_mount) { |
| 1290 | goto out_master; | 1293 | err = ubifs_recover_inl_heads(c, c->sbuf); |
| 1291 | } | 1294 | if (err) |
| 1292 | } else if (!c->ro_mount) { | 1295 | goto out_master; |
| 1296 | } | ||
| 1297 | |||
| 1298 | err = ubifs_lpt_init(c, 1, !c->ro_mount); | ||
| 1299 | if (err) | ||
| 1300 | goto out_master; | ||
| 1301 | |||
| 1302 | if (!c->ro_mount && c->space_fixup) { | ||
| 1303 | err = ubifs_fixup_free_space(c); | ||
| 1304 | if (err) | ||
| 1305 | goto out_master; | ||
| 1306 | } | ||
| 1307 | |||
| 1308 | if (!c->ro_mount) { | ||
| 1293 | /* | 1309 | /* |
| 1294 | * Set the "dirty" flag so that if we reboot uncleanly we | 1310 | * Set the "dirty" flag so that if we reboot uncleanly we |
| 1295 | * will notice this immediately on the next mount. | 1311 | * will notice this immediately on the next mount. |
| @@ -1297,13 +1313,9 @@ static int mount_ubifs(struct ubifs_info *c) | |||
| 1297 | c->mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY); | 1313 | c->mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY); |
| 1298 | err = ubifs_write_master(c); | 1314 | err = ubifs_write_master(c); |
| 1299 | if (err) | 1315 | if (err) |
| 1300 | goto out_master; | 1316 | goto out_lpt; |
| 1301 | } | 1317 | } |
| 1302 | 1318 | ||
| 1303 | err = ubifs_lpt_init(c, 1, !c->ro_mount); | ||
| 1304 | if (err) | ||
| 1305 | goto out_lpt; | ||
| 1306 | |||
| 1307 | err = dbg_check_idx_size(c, c->bi.old_idx_sz); | 1319 | err = dbg_check_idx_size(c, c->bi.old_idx_sz); |
| 1308 | if (err) | 1320 | if (err) |
| 1309 | goto out_lpt; | 1321 | goto out_lpt; |
| @@ -1396,12 +1408,6 @@ static int mount_ubifs(struct ubifs_info *c) | |||
| 1396 | } else | 1408 | } else |
| 1397 | ubifs_assert(c->lst.taken_empty_lebs > 0); | 1409 | ubifs_assert(c->lst.taken_empty_lebs > 0); |
| 1398 | 1410 | ||
| 1399 | if (!c->ro_mount && c->space_fixup) { | ||
| 1400 | err = ubifs_fixup_free_space(c); | ||
| 1401 | if (err) | ||
| 1402 | goto out_infos; | ||
| 1403 | } | ||
| 1404 | |||
| 1405 | err = dbg_check_filesystem(c); | 1411 | err = dbg_check_filesystem(c); |
| 1406 | if (err) | 1412 | if (err) |
| 1407 | goto out_infos; | 1413 | goto out_infos; |
| @@ -1842,7 +1848,6 @@ static void ubifs_put_super(struct super_block *sb) | |||
| 1842 | bdi_destroy(&c->bdi); | 1848 | bdi_destroy(&c->bdi); |
| 1843 | ubi_close_volume(c->ubi); | 1849 | ubi_close_volume(c->ubi); |
| 1844 | mutex_unlock(&c->umount_mutex); | 1850 | mutex_unlock(&c->umount_mutex); |
| 1845 | kfree(c); | ||
| 1846 | } | 1851 | } |
| 1847 | 1852 | ||
| 1848 | static int ubifs_remount_fs(struct super_block *sb, int *flags, char *data) | 1853 | static int ubifs_remount_fs(struct super_block *sb, int *flags, char *data) |
| @@ -1965,61 +1970,65 @@ static struct ubi_volume_desc *open_ubi(const char *name, int mode) | |||
| 1965 | return ERR_PTR(-EINVAL); | 1970 | return ERR_PTR(-EINVAL); |
| 1966 | } | 1971 | } |
| 1967 | 1972 | ||
| 1968 | static int ubifs_fill_super(struct super_block *sb, void *data, int silent) | 1973 | static struct ubifs_info *alloc_ubifs_info(struct ubi_volume_desc *ubi) |
| 1969 | { | 1974 | { |
| 1970 | struct ubi_volume_desc *ubi = sb->s_fs_info; | ||
| 1971 | struct ubifs_info *c; | 1975 | struct ubifs_info *c; |
| 1972 | struct inode *root; | ||
| 1973 | int err; | ||
| 1974 | 1976 | ||
| 1975 | c = kzalloc(sizeof(struct ubifs_info), GFP_KERNEL); | 1977 | c = kzalloc(sizeof(struct ubifs_info), GFP_KERNEL); |
| 1976 | if (!c) | 1978 | if (c) { |
| 1977 | return -ENOMEM; | 1979 | spin_lock_init(&c->cnt_lock); |
| 1980 | spin_lock_init(&c->cs_lock); | ||
| 1981 | spin_lock_init(&c->buds_lock); | ||
| 1982 | spin_lock_init(&c->space_lock); | ||
| 1983 | spin_lock_init(&c->orphan_lock); | ||
| 1984 | init_rwsem(&c->commit_sem); | ||
| 1985 | mutex_init(&c->lp_mutex); | ||
| 1986 | mutex_init(&c->tnc_mutex); | ||
| 1987 | mutex_init(&c->log_mutex); | ||
| 1988 | mutex_init(&c->mst_mutex); | ||
| 1989 | mutex_init(&c->umount_mutex); | ||
| 1990 | mutex_init(&c->bu_mutex); | ||
| 1991 | mutex_init(&c->write_reserve_mutex); | ||
| 1992 | init_waitqueue_head(&c->cmt_wq); | ||
| 1993 | c->buds = RB_ROOT; | ||
| 1994 | c->old_idx = RB_ROOT; | ||
| 1995 | c->size_tree = RB_ROOT; | ||
| 1996 | c->orph_tree = RB_ROOT; | ||
| 1997 | INIT_LIST_HEAD(&c->infos_list); | ||
| 1998 | INIT_LIST_HEAD(&c->idx_gc); | ||
| 1999 | INIT_LIST_HEAD(&c->replay_list); | ||
| 2000 | INIT_LIST_HEAD(&c->replay_buds); | ||
| 2001 | INIT_LIST_HEAD(&c->uncat_list); | ||
| 2002 | INIT_LIST_HEAD(&c->empty_list); | ||
| 2003 | INIT_LIST_HEAD(&c->freeable_list); | ||
| 2004 | INIT_LIST_HEAD(&c->frdi_idx_list); | ||
| 2005 | INIT_LIST_HEAD(&c->unclean_leb_list); | ||
| 2006 | INIT_LIST_HEAD(&c->old_buds); | ||
| 2007 | INIT_LIST_HEAD(&c->orph_list); | ||
| 2008 | INIT_LIST_HEAD(&c->orph_new); | ||
| 2009 | c->no_chk_data_crc = 1; | ||
| 2010 | |||
| 2011 | c->highest_inum = UBIFS_FIRST_INO; | ||
| 2012 | c->lhead_lnum = c->ltail_lnum = UBIFS_LOG_LNUM; | ||
| 2013 | |||
| 2014 | ubi_get_volume_info(ubi, &c->vi); | ||
| 2015 | ubi_get_device_info(c->vi.ubi_num, &c->di); | ||
| 2016 | } | ||
| 2017 | return c; | ||
| 2018 | } | ||
| 1978 | 2019 | ||
| 1979 | spin_lock_init(&c->cnt_lock); | 2020 | static int ubifs_fill_super(struct super_block *sb, void *data, int silent) |
| 1980 | spin_lock_init(&c->cs_lock); | 2021 | { |
| 1981 | spin_lock_init(&c->buds_lock); | 2022 | struct ubifs_info *c = sb->s_fs_info; |
| 1982 | spin_lock_init(&c->space_lock); | 2023 | struct inode *root; |
| 1983 | spin_lock_init(&c->orphan_lock); | 2024 | int err; |
| 1984 | init_rwsem(&c->commit_sem); | ||
| 1985 | mutex_init(&c->lp_mutex); | ||
| 1986 | mutex_init(&c->tnc_mutex); | ||
| 1987 | mutex_init(&c->log_mutex); | ||
| 1988 | mutex_init(&c->mst_mutex); | ||
| 1989 | mutex_init(&c->umount_mutex); | ||
| 1990 | mutex_init(&c->bu_mutex); | ||
| 1991 | mutex_init(&c->write_reserve_mutex); | ||
| 1992 | init_waitqueue_head(&c->cmt_wq); | ||
| 1993 | c->buds = RB_ROOT; | ||
| 1994 | c->old_idx = RB_ROOT; | ||
| 1995 | c->size_tree = RB_ROOT; | ||
| 1996 | c->orph_tree = RB_ROOT; | ||
| 1997 | INIT_LIST_HEAD(&c->infos_list); | ||
| 1998 | INIT_LIST_HEAD(&c->idx_gc); | ||
| 1999 | INIT_LIST_HEAD(&c->replay_list); | ||
| 2000 | INIT_LIST_HEAD(&c->replay_buds); | ||
| 2001 | INIT_LIST_HEAD(&c->uncat_list); | ||
| 2002 | INIT_LIST_HEAD(&c->empty_list); | ||
| 2003 | INIT_LIST_HEAD(&c->freeable_list); | ||
| 2004 | INIT_LIST_HEAD(&c->frdi_idx_list); | ||
| 2005 | INIT_LIST_HEAD(&c->unclean_leb_list); | ||
| 2006 | INIT_LIST_HEAD(&c->old_buds); | ||
| 2007 | INIT_LIST_HEAD(&c->orph_list); | ||
| 2008 | INIT_LIST_HEAD(&c->orph_new); | ||
| 2009 | c->no_chk_data_crc = 1; | ||
| 2010 | 2025 | ||
| 2011 | c->vfs_sb = sb; | 2026 | c->vfs_sb = sb; |
| 2012 | c->highest_inum = UBIFS_FIRST_INO; | ||
| 2013 | c->lhead_lnum = c->ltail_lnum = UBIFS_LOG_LNUM; | ||
| 2014 | |||
| 2015 | ubi_get_volume_info(ubi, &c->vi); | ||
| 2016 | ubi_get_device_info(c->vi.ubi_num, &c->di); | ||
| 2017 | |||
| 2018 | /* Re-open the UBI device in read-write mode */ | 2027 | /* Re-open the UBI device in read-write mode */ |
| 2019 | c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READWRITE); | 2028 | c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READWRITE); |
| 2020 | if (IS_ERR(c->ubi)) { | 2029 | if (IS_ERR(c->ubi)) { |
| 2021 | err = PTR_ERR(c->ubi); | 2030 | err = PTR_ERR(c->ubi); |
| 2022 | goto out_free; | 2031 | goto out; |
| 2023 | } | 2032 | } |
| 2024 | 2033 | ||
| 2025 | /* | 2034 | /* |
| @@ -2085,24 +2094,29 @@ out_bdi: | |||
| 2085 | bdi_destroy(&c->bdi); | 2094 | bdi_destroy(&c->bdi); |
| 2086 | out_close: | 2095 | out_close: |
| 2087 | ubi_close_volume(c->ubi); | 2096 | ubi_close_volume(c->ubi); |
| 2088 | out_free: | 2097 | out: |
| 2089 | kfree(c); | ||
| 2090 | return err; | 2098 | return err; |
| 2091 | } | 2099 | } |
| 2092 | 2100 | ||
| 2093 | static int sb_test(struct super_block *sb, void *data) | 2101 | static int sb_test(struct super_block *sb, void *data) |
| 2094 | { | 2102 | { |
| 2095 | dev_t *dev = data; | 2103 | struct ubifs_info *c1 = data; |
| 2096 | struct ubifs_info *c = sb->s_fs_info; | 2104 | struct ubifs_info *c = sb->s_fs_info; |
| 2097 | 2105 | ||
| 2098 | return c->vi.cdev == *dev; | 2106 | return c->vi.cdev == c1->vi.cdev; |
| 2107 | } | ||
| 2108 | |||
| 2109 | static int sb_set(struct super_block *sb, void *data) | ||
| 2110 | { | ||
| 2111 | sb->s_fs_info = data; | ||
| 2112 | return set_anon_super(sb, NULL); | ||
| 2099 | } | 2113 | } |
| 2100 | 2114 | ||
| 2101 | static struct dentry *ubifs_mount(struct file_system_type *fs_type, int flags, | 2115 | static struct dentry *ubifs_mount(struct file_system_type *fs_type, int flags, |
| 2102 | const char *name, void *data) | 2116 | const char *name, void *data) |
| 2103 | { | 2117 | { |
| 2104 | struct ubi_volume_desc *ubi; | 2118 | struct ubi_volume_desc *ubi; |
| 2105 | struct ubi_volume_info vi; | 2119 | struct ubifs_info *c; |
| 2106 | struct super_block *sb; | 2120 | struct super_block *sb; |
| 2107 | int err; | 2121 | int err; |
| 2108 | 2122 | ||
| @@ -2119,19 +2133,25 @@ static struct dentry *ubifs_mount(struct file_system_type *fs_type, int flags, | |||
| 2119 | name, (int)PTR_ERR(ubi)); | 2133 | name, (int)PTR_ERR(ubi)); |
| 2120 | return ERR_CAST(ubi); | 2134 | return ERR_CAST(ubi); |
| 2121 | } | 2135 | } |
| 2122 | ubi_get_volume_info(ubi, &vi); | ||
| 2123 | 2136 | ||
| 2124 | dbg_gen("opened ubi%d_%d", vi.ubi_num, vi.vol_id); | 2137 | c = alloc_ubifs_info(ubi); |
| 2138 | if (!c) { | ||
| 2139 | err = -ENOMEM; | ||
| 2140 | goto out_close; | ||
| 2141 | } | ||
| 2142 | |||
| 2143 | dbg_gen("opened ubi%d_%d", c->vi.ubi_num, c->vi.vol_id); | ||
| 2125 | 2144 | ||
| 2126 | sb = sget(fs_type, &sb_test, &set_anon_super, &vi.cdev); | 2145 | sb = sget(fs_type, sb_test, sb_set, c); |
| 2127 | if (IS_ERR(sb)) { | 2146 | if (IS_ERR(sb)) { |
| 2128 | err = PTR_ERR(sb); | 2147 | err = PTR_ERR(sb); |
| 2148 | kfree(c); | ||
| 2129 | goto out_close; | 2149 | goto out_close; |
| 2130 | } | 2150 | } |
| 2131 | 2151 | ||
| 2132 | if (sb->s_root) { | 2152 | if (sb->s_root) { |
| 2133 | struct ubifs_info *c1 = sb->s_fs_info; | 2153 | struct ubifs_info *c1 = sb->s_fs_info; |
| 2134 | 2154 | kfree(c); | |
| 2135 | /* A new mount point for already mounted UBIFS */ | 2155 | /* A new mount point for already mounted UBIFS */ |
| 2136 | dbg_gen("this ubi volume is already mounted"); | 2156 | dbg_gen("this ubi volume is already mounted"); |
| 2137 | if (!!(flags & MS_RDONLY) != c1->ro_mount) { | 2157 | if (!!(flags & MS_RDONLY) != c1->ro_mount) { |
| @@ -2140,11 +2160,6 @@ static struct dentry *ubifs_mount(struct file_system_type *fs_type, int flags, | |||
| 2140 | } | 2160 | } |
| 2141 | } else { | 2161 | } else { |
| 2142 | sb->s_flags = flags; | 2162 | sb->s_flags = flags; |
| 2143 | /* | ||
| 2144 | * Pass 'ubi' to 'fill_super()' in sb->s_fs_info where it is | ||
| 2145 | * replaced by 'c'. | ||
| 2146 | */ | ||
| 2147 | sb->s_fs_info = ubi; | ||
| 2148 | err = ubifs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0); | 2163 | err = ubifs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0); |
| 2149 | if (err) | 2164 | if (err) |
| 2150 | goto out_deact; | 2165 | goto out_deact; |
| @@ -2164,11 +2179,18 @@ out_close: | |||
| 2164 | return ERR_PTR(err); | 2179 | return ERR_PTR(err); |
| 2165 | } | 2180 | } |
| 2166 | 2181 | ||
| 2182 | static void kill_ubifs_super(struct super_block *s) | ||
| 2183 | { | ||
| 2184 | struct ubifs_info *c = s->s_fs_info; | ||
| 2185 | kill_anon_super(s); | ||
| 2186 | kfree(c); | ||
| 2187 | } | ||
| 2188 | |||
| 2167 | static struct file_system_type ubifs_fs_type = { | 2189 | static struct file_system_type ubifs_fs_type = { |
| 2168 | .name = "ubifs", | 2190 | .name = "ubifs", |
| 2169 | .owner = THIS_MODULE, | 2191 | .owner = THIS_MODULE, |
| 2170 | .mount = ubifs_mount, | 2192 | .mount = ubifs_mount, |
| 2171 | .kill_sb = kill_anon_super, | 2193 | .kill_sb = kill_ubifs_super, |
| 2172 | }; | 2194 | }; |
| 2173 | 2195 | ||
| 2174 | /* | 2196 | /* |
diff --git a/fs/ubifs/tnc.c b/fs/ubifs/tnc.c index 8119b1fd8d94..91b4213dde84 100644 --- a/fs/ubifs/tnc.c +++ b/fs/ubifs/tnc.c | |||
| @@ -2876,12 +2876,13 @@ static void tnc_destroy_cnext(struct ubifs_info *c) | |||
| 2876 | */ | 2876 | */ |
| 2877 | void ubifs_tnc_close(struct ubifs_info *c) | 2877 | void ubifs_tnc_close(struct ubifs_info *c) |
| 2878 | { | 2878 | { |
| 2879 | long clean_freed; | ||
| 2880 | |||
| 2881 | tnc_destroy_cnext(c); | 2879 | tnc_destroy_cnext(c); |
| 2882 | if (c->zroot.znode) { | 2880 | if (c->zroot.znode) { |
| 2883 | clean_freed = ubifs_destroy_tnc_subtree(c->zroot.znode); | 2881 | long n; |
| 2884 | atomic_long_sub(clean_freed, &ubifs_clean_zn_cnt); | 2882 | |
| 2883 | ubifs_destroy_tnc_subtree(c->zroot.znode); | ||
| 2884 | n = atomic_long_read(&c->clean_zn_cnt); | ||
| 2885 | atomic_long_sub(n, &ubifs_clean_zn_cnt); | ||
| 2885 | } | 2886 | } |
| 2886 | kfree(c->gap_lebs); | 2887 | kfree(c->gap_lebs); |
| 2887 | kfree(c->ilebs); | 2888 | kfree(c->ilebs); |
diff --git a/fs/ubifs/ubifs.h b/fs/ubifs/ubifs.h index a70d7b4ffb25..f79983d6f860 100644 --- a/fs/ubifs/ubifs.h +++ b/fs/ubifs/ubifs.h | |||
| @@ -722,12 +722,14 @@ struct ubifs_bud { | |||
| 722 | * struct ubifs_jhead - journal head. | 722 | * struct ubifs_jhead - journal head. |
| 723 | * @wbuf: head's write-buffer | 723 | * @wbuf: head's write-buffer |
| 724 | * @buds_list: list of bud LEBs belonging to this journal head | 724 | * @buds_list: list of bud LEBs belonging to this journal head |
| 725 | * @grouped: non-zero if UBIFS groups nodes when writing to this journal head | ||
| 725 | * | 726 | * |
| 726 | * Note, the @buds list is protected by the @c->buds_lock. | 727 | * Note, the @buds list is protected by the @c->buds_lock. |
| 727 | */ | 728 | */ |
| 728 | struct ubifs_jhead { | 729 | struct ubifs_jhead { |
| 729 | struct ubifs_wbuf wbuf; | 730 | struct ubifs_wbuf wbuf; |
| 730 | struct list_head buds_list; | 731 | struct list_head buds_list; |
| 732 | unsigned int grouped:1; | ||
| 731 | }; | 733 | }; |
| 732 | 734 | ||
| 733 | /** | 735 | /** |
| @@ -1742,7 +1744,7 @@ struct inode *ubifs_iget(struct super_block *sb, unsigned long inum); | |||
| 1742 | int ubifs_recover_master_node(struct ubifs_info *c); | 1744 | int ubifs_recover_master_node(struct ubifs_info *c); |
| 1743 | int ubifs_write_rcvrd_mst_node(struct ubifs_info *c); | 1745 | int ubifs_write_rcvrd_mst_node(struct ubifs_info *c); |
| 1744 | struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum, | 1746 | struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum, |
| 1745 | int offs, void *sbuf, int grouped); | 1747 | int offs, void *sbuf, int jhead); |
| 1746 | struct ubifs_scan_leb *ubifs_recover_log_leb(struct ubifs_info *c, int lnum, | 1748 | struct ubifs_scan_leb *ubifs_recover_log_leb(struct ubifs_info *c, int lnum, |
| 1747 | int offs, void *sbuf); | 1749 | int offs, void *sbuf); |
| 1748 | int ubifs_recover_inl_heads(const struct ubifs_info *c, void *sbuf); | 1750 | int ubifs_recover_inl_heads(const struct ubifs_info *c, void *sbuf); |
diff --git a/fs/xfs/linux-2.6/xfs_file.c b/fs/xfs/linux-2.6/xfs_file.c index f4213ba1ff85..7f782af286bf 100644 --- a/fs/xfs/linux-2.6/xfs_file.c +++ b/fs/xfs/linux-2.6/xfs_file.c | |||
| @@ -131,19 +131,34 @@ xfs_file_fsync( | |||
| 131 | { | 131 | { |
| 132 | struct inode *inode = file->f_mapping->host; | 132 | struct inode *inode = file->f_mapping->host; |
| 133 | struct xfs_inode *ip = XFS_I(inode); | 133 | struct xfs_inode *ip = XFS_I(inode); |
| 134 | struct xfs_mount *mp = ip->i_mount; | ||
| 134 | struct xfs_trans *tp; | 135 | struct xfs_trans *tp; |
| 135 | int error = 0; | 136 | int error = 0; |
| 136 | int log_flushed = 0; | 137 | int log_flushed = 0; |
| 137 | 138 | ||
| 138 | trace_xfs_file_fsync(ip); | 139 | trace_xfs_file_fsync(ip); |
| 139 | 140 | ||
| 140 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) | 141 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 141 | return -XFS_ERROR(EIO); | 142 | return -XFS_ERROR(EIO); |
| 142 | 143 | ||
| 143 | xfs_iflags_clear(ip, XFS_ITRUNCATED); | 144 | xfs_iflags_clear(ip, XFS_ITRUNCATED); |
| 144 | 145 | ||
| 145 | xfs_ioend_wait(ip); | 146 | xfs_ioend_wait(ip); |
| 146 | 147 | ||
| 148 | if (mp->m_flags & XFS_MOUNT_BARRIER) { | ||
| 149 | /* | ||
| 150 | * If we have an RT and/or log subvolume we need to make sure | ||
| 151 | * to flush the write cache the device used for file data | ||
| 152 | * first. This is to ensure newly written file data make | ||
| 153 | * it to disk before logging the new inode size in case of | ||
| 154 | * an extending write. | ||
| 155 | */ | ||
| 156 | if (XFS_IS_REALTIME_INODE(ip)) | ||
| 157 | xfs_blkdev_issue_flush(mp->m_rtdev_targp); | ||
| 158 | else if (mp->m_logdev_targp != mp->m_ddev_targp) | ||
| 159 | xfs_blkdev_issue_flush(mp->m_ddev_targp); | ||
| 160 | } | ||
| 161 | |||
| 147 | /* | 162 | /* |
| 148 | * We always need to make sure that the required inode state is safe on | 163 | * We always need to make sure that the required inode state is safe on |
| 149 | * disk. The inode might be clean but we still might need to force the | 164 | * disk. The inode might be clean but we still might need to force the |
| @@ -175,9 +190,9 @@ xfs_file_fsync( | |||
| 175 | * updates. The sync transaction will also force the log. | 190 | * updates. The sync transaction will also force the log. |
| 176 | */ | 191 | */ |
| 177 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 192 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 178 | tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS); | 193 | tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS); |
| 179 | error = xfs_trans_reserve(tp, 0, | 194 | error = xfs_trans_reserve(tp, 0, |
| 180 | XFS_FSYNC_TS_LOG_RES(ip->i_mount), 0, 0, 0); | 195 | XFS_FSYNC_TS_LOG_RES(mp), 0, 0, 0); |
| 181 | if (error) { | 196 | if (error) { |
| 182 | xfs_trans_cancel(tp, 0); | 197 | xfs_trans_cancel(tp, 0); |
| 183 | return -error; | 198 | return -error; |
| @@ -209,28 +224,25 @@ xfs_file_fsync( | |||
| 209 | * force the log. | 224 | * force the log. |
| 210 | */ | 225 | */ |
| 211 | if (xfs_ipincount(ip)) { | 226 | if (xfs_ipincount(ip)) { |
| 212 | error = _xfs_log_force_lsn(ip->i_mount, | 227 | error = _xfs_log_force_lsn(mp, |
| 213 | ip->i_itemp->ili_last_lsn, | 228 | ip->i_itemp->ili_last_lsn, |
| 214 | XFS_LOG_SYNC, &log_flushed); | 229 | XFS_LOG_SYNC, &log_flushed); |
| 215 | } | 230 | } |
| 216 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 231 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 217 | } | 232 | } |
| 218 | 233 | ||
| 219 | if (ip->i_mount->m_flags & XFS_MOUNT_BARRIER) { | 234 | /* |
| 220 | /* | 235 | * If we only have a single device, and the log force about was |
| 221 | * If the log write didn't issue an ordered tag we need | 236 | * a no-op we might have to flush the data device cache here. |
| 222 | * to flush the disk cache for the data device now. | 237 | * This can only happen for fdatasync/O_DSYNC if we were overwriting |
| 223 | */ | 238 | * an already allocated file and thus do not have any metadata to |
| 224 | if (!log_flushed) | 239 | * commit. |
| 225 | xfs_blkdev_issue_flush(ip->i_mount->m_ddev_targp); | 240 | */ |
| 226 | 241 | if ((mp->m_flags & XFS_MOUNT_BARRIER) && | |
| 227 | /* | 242 | mp->m_logdev_targp == mp->m_ddev_targp && |
| 228 | * If this inode is on the RT dev we need to flush that | 243 | !XFS_IS_REALTIME_INODE(ip) && |
| 229 | * cache as well. | 244 | !log_flushed) |
| 230 | */ | 245 | xfs_blkdev_issue_flush(mp->m_ddev_targp); |
| 231 | if (XFS_IS_REALTIME_INODE(ip)) | ||
| 232 | xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp); | ||
| 233 | } | ||
| 234 | 246 | ||
| 235 | return -error; | 247 | return -error; |
| 236 | } | 248 | } |
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c index dd21784525a8..d44d92cd12b1 100644 --- a/fs/xfs/linux-2.6/xfs_iops.c +++ b/fs/xfs/linux-2.6/xfs_iops.c | |||
| @@ -182,7 +182,7 @@ xfs_vn_mknod( | |||
| 182 | if (IS_POSIXACL(dir)) { | 182 | if (IS_POSIXACL(dir)) { |
| 183 | default_acl = xfs_get_acl(dir, ACL_TYPE_DEFAULT); | 183 | default_acl = xfs_get_acl(dir, ACL_TYPE_DEFAULT); |
| 184 | if (IS_ERR(default_acl)) | 184 | if (IS_ERR(default_acl)) |
| 185 | return -PTR_ERR(default_acl); | 185 | return PTR_ERR(default_acl); |
| 186 | 186 | ||
| 187 | if (!default_acl) | 187 | if (!default_acl) |
| 188 | mode &= ~current_umask(); | 188 | mode &= ~current_umask(); |
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index 1e3a7ce804dc..a1a881e68a9a 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c | |||
| @@ -627,68 +627,6 @@ xfs_blkdev_put( | |||
| 627 | blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL); | 627 | blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL); |
| 628 | } | 628 | } |
| 629 | 629 | ||
| 630 | /* | ||
| 631 | * Try to write out the superblock using barriers. | ||
| 632 | */ | ||
| 633 | STATIC int | ||
| 634 | xfs_barrier_test( | ||
| 635 | xfs_mount_t *mp) | ||
| 636 | { | ||
| 637 | xfs_buf_t *sbp = xfs_getsb(mp, 0); | ||
| 638 | int error; | ||
| 639 | |||
| 640 | XFS_BUF_UNDONE(sbp); | ||
| 641 | XFS_BUF_UNREAD(sbp); | ||
| 642 | XFS_BUF_UNDELAYWRITE(sbp); | ||
| 643 | XFS_BUF_WRITE(sbp); | ||
| 644 | XFS_BUF_UNASYNC(sbp); | ||
| 645 | XFS_BUF_ORDERED(sbp); | ||
| 646 | |||
| 647 | xfsbdstrat(mp, sbp); | ||
| 648 | error = xfs_buf_iowait(sbp); | ||
| 649 | |||
| 650 | /* | ||
| 651 | * Clear all the flags we set and possible error state in the | ||
| 652 | * buffer. We only did the write to try out whether barriers | ||
| 653 | * worked and shouldn't leave any traces in the superblock | ||
| 654 | * buffer. | ||
| 655 | */ | ||
| 656 | XFS_BUF_DONE(sbp); | ||
| 657 | XFS_BUF_ERROR(sbp, 0); | ||
| 658 | XFS_BUF_UNORDERED(sbp); | ||
| 659 | |||
| 660 | xfs_buf_relse(sbp); | ||
| 661 | return error; | ||
| 662 | } | ||
| 663 | |||
| 664 | STATIC void | ||
| 665 | xfs_mountfs_check_barriers(xfs_mount_t *mp) | ||
| 666 | { | ||
| 667 | int error; | ||
| 668 | |||
| 669 | if (mp->m_logdev_targp != mp->m_ddev_targp) { | ||
| 670 | xfs_notice(mp, | ||
| 671 | "Disabling barriers, not supported with external log device"); | ||
| 672 | mp->m_flags &= ~XFS_MOUNT_BARRIER; | ||
| 673 | return; | ||
| 674 | } | ||
| 675 | |||
| 676 | if (xfs_readonly_buftarg(mp->m_ddev_targp)) { | ||
| 677 | xfs_notice(mp, | ||
| 678 | "Disabling barriers, underlying device is readonly"); | ||
| 679 | mp->m_flags &= ~XFS_MOUNT_BARRIER; | ||
| 680 | return; | ||
| 681 | } | ||
| 682 | |||
| 683 | error = xfs_barrier_test(mp); | ||
| 684 | if (error) { | ||
| 685 | xfs_notice(mp, | ||
| 686 | "Disabling barriers, trial barrier write failed"); | ||
| 687 | mp->m_flags &= ~XFS_MOUNT_BARRIER; | ||
| 688 | return; | ||
| 689 | } | ||
| 690 | } | ||
| 691 | |||
| 692 | void | 630 | void |
| 693 | xfs_blkdev_issue_flush( | 631 | xfs_blkdev_issue_flush( |
| 694 | xfs_buftarg_t *buftarg) | 632 | xfs_buftarg_t *buftarg) |
| @@ -1240,14 +1178,6 @@ xfs_fs_remount( | |||
| 1240 | switch (token) { | 1178 | switch (token) { |
| 1241 | case Opt_barrier: | 1179 | case Opt_barrier: |
| 1242 | mp->m_flags |= XFS_MOUNT_BARRIER; | 1180 | mp->m_flags |= XFS_MOUNT_BARRIER; |
| 1243 | |||
| 1244 | /* | ||
| 1245 | * Test if barriers are actually working if we can, | ||
| 1246 | * else delay this check until the filesystem is | ||
| 1247 | * marked writeable. | ||
| 1248 | */ | ||
| 1249 | if (!(mp->m_flags & XFS_MOUNT_RDONLY)) | ||
| 1250 | xfs_mountfs_check_barriers(mp); | ||
| 1251 | break; | 1181 | break; |
| 1252 | case Opt_nobarrier: | 1182 | case Opt_nobarrier: |
| 1253 | mp->m_flags &= ~XFS_MOUNT_BARRIER; | 1183 | mp->m_flags &= ~XFS_MOUNT_BARRIER; |
| @@ -1282,8 +1212,6 @@ xfs_fs_remount( | |||
| 1282 | /* ro -> rw */ | 1212 | /* ro -> rw */ |
| 1283 | if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) { | 1213 | if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) { |
| 1284 | mp->m_flags &= ~XFS_MOUNT_RDONLY; | 1214 | mp->m_flags &= ~XFS_MOUNT_RDONLY; |
| 1285 | if (mp->m_flags & XFS_MOUNT_BARRIER) | ||
| 1286 | xfs_mountfs_check_barriers(mp); | ||
| 1287 | 1215 | ||
| 1288 | /* | 1216 | /* |
| 1289 | * If this is the first remount to writeable state we | 1217 | * If this is the first remount to writeable state we |
| @@ -1465,9 +1393,6 @@ xfs_fs_fill_super( | |||
| 1465 | if (error) | 1393 | if (error) |
| 1466 | goto out_free_sb; | 1394 | goto out_free_sb; |
| 1467 | 1395 | ||
| 1468 | if (mp->m_flags & XFS_MOUNT_BARRIER) | ||
| 1469 | xfs_mountfs_check_barriers(mp); | ||
| 1470 | |||
| 1471 | error = xfs_filestream_mount(mp); | 1396 | error = xfs_filestream_mount(mp); |
| 1472 | if (error) | 1397 | if (error) |
| 1473 | goto out_free_sb; | 1398 | goto out_free_sb; |
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index 211930246f20..41d5b8f2bf92 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c | |||
| @@ -1372,8 +1372,17 @@ xlog_sync(xlog_t *log, | |||
| 1372 | XFS_BUF_ASYNC(bp); | 1372 | XFS_BUF_ASYNC(bp); |
| 1373 | bp->b_flags |= XBF_LOG_BUFFER; | 1373 | bp->b_flags |= XBF_LOG_BUFFER; |
| 1374 | 1374 | ||
| 1375 | if (log->l_mp->m_flags & XFS_MOUNT_BARRIER) | 1375 | if (log->l_mp->m_flags & XFS_MOUNT_BARRIER) { |
| 1376 | /* | ||
| 1377 | * If we have an external log device, flush the data device | ||
| 1378 | * before flushing the log to make sure all meta data | ||
| 1379 | * written back from the AIL actually made it to disk | ||
| 1380 | * before writing out the new log tail LSN in the log buffer. | ||
| 1381 | */ | ||
| 1382 | if (log->l_mp->m_logdev_targp != log->l_mp->m_ddev_targp) | ||
| 1383 | xfs_blkdev_issue_flush(log->l_mp->m_ddev_targp); | ||
| 1376 | XFS_BUF_ORDERED(bp); | 1384 | XFS_BUF_ORDERED(bp); |
| 1385 | } | ||
| 1377 | 1386 | ||
| 1378 | ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1); | 1387 | ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1); |
| 1379 | ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize); | 1388 | ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize); |
