linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/7] Btrfs: New inode number allocator
@ 2011-04-25  8:57 Li Zefan
  2011-04-25  8:58 ` [PATCH v2 2/7] Btrfs: Use bitmap_set/clear() Li Zefan
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: Li Zefan @ 2011-04-25  8:57 UTC (permalink / raw)
  To: linux-btrfs@vger.kernel.org

Currently btrfs stores the highest objectid of the fs tree, and it always
returns (highest+1) inode number when we create a file, so inode numbers
won't be reclaimed when we delete files, so we'll run out of inode numbers
as we keep create/delete files in 32bits machines.

This patchset aims to fix this, and it works similar to free space caching
for block groups.

I've run xfstests, and I also tested it with snapshot, balance etc.

More testing is appreciated!

Changelog v2:

- Rebased against latest btrfs-unstable tree
- Fixed several small bugs.

---
 fs/btrfs/btrfs_inode.h      |    9 +
 fs/btrfs/compression.c      |    5 +-
 fs/btrfs/ctree.h            |   29 +-
 fs/btrfs/disk-io.c          |   19 +
 fs/btrfs/export.c           |   25 +-
 fs/btrfs/extent-tree.c      |   50 ++-
 fs/btrfs/extent_io.c        |    4 +-
 fs/btrfs/file-item.c        |    5 +-
 fs/btrfs/file.c             |   27 +-
 fs/btrfs/free-space-cache.c |  968 ++++++++++++++++++++++++++-----------------
 fs/btrfs/free-space-cache.h |   48 ++-
 fs/btrfs/inode-map.c        |  428 +++++++++++++++++++-
 fs/btrfs/inode-map.h        |   13 +
 fs/btrfs/inode.c            |  282 +++++++------
 fs/btrfs/ioctl.c            |   22 +-
 fs/btrfs/relocation.c       |   27 +-
 fs/btrfs/transaction.c      |   13 +-
 fs/btrfs/tree-log.c         |   54 ++--
 fs/btrfs/xattr.c            |    8 +-
 19 files changed, 1402 insertions(+), 634 deletions(-)

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2011-05-31 21:01 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-25  8:57 [PATCH v2 0/7] Btrfs: New inode number allocator Li Zefan
2011-04-25  8:58 ` [PATCH v2 2/7] Btrfs: Use bitmap_set/clear() Li Zefan
2011-04-25  8:59 ` [PATCH v2 3/7] Btrfs: Make free space cache code generic Li Zefan
2011-04-25  8:59 ` [PATCH v2 4/7] Btrfs: Cache free inode numbers in memory Li Zefan
2011-04-25  8:59 ` [PATCH v2 5/7] Btrfs: Make the code for reading/writing free space cache generic Li Zefan
2011-04-25  8:59 ` [PATCH v2 6/7] Btrfs: Always use 64bit inode number Li Zefan
2011-04-25  9:00 ` [PATCH v2 7/7] Btrfs: Support reading/writing on disk free ino cache Li Zefan
2011-04-25  9:02 ` [PATCH v2 0/7] Btrfs: New inode number allocator Li Zefan
2011-04-25 17:15 ` Chris Mason
2011-04-25 20:44   ` Chris Mason
2011-05-31 21:01 ` Johannes Hirte

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).