]> git.baikalelectronics.ru Git - kernel.git/commit
Btrfs: MOD_LOG_KEY_REMOVE_WHILE_MOVING never change node's nritems
authorLiu Bo <bo.li.liu@oracle.com>
Fri, 19 Oct 2012 09:50:52 +0000 (09:50 +0000)
committerJosef Bacik <jbacik@fusionio.com>
Tue, 11 Dec 2012 18:31:33 +0000 (13:31 -0500)
commit640aa220c8fc82e46d12d82b20b80fee7a53dad9
tree04d83bd7c396795cba9443509f1e61dd7224bba4
parenta6f8a98f7dc0d175571806ea2eab53d540d4ba4f
Btrfs: MOD_LOG_KEY_REMOVE_WHILE_MOVING never change node's nritems

Key MOD_LOG_KEY_REMOVE_WHILE_MOVING means that we're doing memmove inside
an extent buffer node, and the node's number of items remains unchanged
(unless we are inserting a single pointer, but we have MOD_LOG_KEY_ADD for that).

So we don't need to increase node's number of items during rewinding,
otherwise we may get an node larger than leafsize and cause general protection
errors later.

Here is the details,
- If we do memory move for inserting a single pointer, we need to
  add node's nritems by one, and we honor MOD_LOG_KEY_ADD for adding.

- If we do memory move for deleting a single pointer, we need to
  decrease node's nritems by one, and we honor MOD_LOG_KEY_REMOVE for
  deleting.

- If we do memory move for balance left/right, we need to decrease
  node's nritems, and we honor MOD_LOG_KEY_REMOVE for balaning.

Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
fs/btrfs/ctree.c