btrfs: fix btrfs_extend_item() comment
authorStefan Behrens <sbehrens@giantdisaster.de>
Tue, 7 May 2013 10:23:30 +0000 (12:23 +0200)
committerJiri Kosina <jkosina@suse.cz>
Tue, 28 May 2013 10:02:12 +0000 (12:02 +0200)
The size parameter to btrfs_extend_item() is the number of bytes
to add to the item, not the size of the item after the operation
(like it is for btrfs_truncate_item(), there the size parameter
is not the number of bytes to take away, but the total size of
the item after truncation).
Fix it in the comment.

Signed-off-by: Stefan Behrens <sbehrens@giantdisaster.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
fs/btrfs/ctree.c

index 02fae7f..17dffe3 100644 (file)
@@ -4430,7 +4430,7 @@ void btrfs_truncate_item(struct btrfs_root *root, struct btrfs_path *path,
 }
 
 /*
- * make the item pointed to by the path bigger, data_size is the new size.
+ * make the item pointed to by the path bigger, data_size is the added size.
  */
 void btrfs_extend_item(struct btrfs_root *root, struct btrfs_path *path,
                       u32 data_size)