diff options
author | Namhyung Kim <namhyung@gmail.com> | 2010-09-26 02:31:00 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2010-10-27 19:30:01 -0400 |
commit | 26f78b7a423aea094c536e94cbe1f1fa4641dd7b (patch) | |
tree | 389c99506bdb71db8c4244761168e2af54b417c2 | |
parent | beb37b85b0b727e68e16a39a1e5a2140f87fa201 (diff) |
ext2: fix comment on ext2_try_to_allocate()
@handle doesn't exist in ext2. Remove it.
Also, fit comment header into kernel-doc format.
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
-rw-r--r-- | fs/ext2/balloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext2/balloc.c b/fs/ext2/balloc.c index c6c684b44ea1..0d06f4e75699 100644 --- a/fs/ext2/balloc.c +++ b/fs/ext2/balloc.c | |||
@@ -646,10 +646,9 @@ find_next_usable_block(int start, struct buffer_head *bh, int maxblocks) | |||
646 | return here; | 646 | return here; |
647 | } | 647 | } |
648 | 648 | ||
649 | /* | 649 | /** |
650 | * ext2_try_to_allocate() | 650 | * ext2_try_to_allocate() |
651 | * @sb: superblock | 651 | * @sb: superblock |
652 | * @handle: handle to this transaction | ||
653 | * @group: given allocation block group | 652 | * @group: given allocation block group |
654 | * @bitmap_bh: bufferhead holds the block bitmap | 653 | * @bitmap_bh: bufferhead holds the block bitmap |
655 | * @grp_goal: given target block within the group | 654 | * @grp_goal: given target block within the group |