diff options
author | Namhyung Kim <namhyung@gmail.com> | 2010-09-26 15:31:00 +0900 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2010-10-28 01:30:01 +0200 |
commit | 26f78b7a423aea094c536e94cbe1f1fa4641dd7b (patch) | |
tree | 389c99506bdb71db8c4244761168e2af54b417c2 /fs/ext2/balloc.c | |
parent | beb37b85b0b727e68e16a39a1e5a2140f87fa201 (diff) | |
download | blackbird-obmc-linux-26f78b7a423aea094c536e94cbe1f1fa4641dd7b.tar.gz blackbird-obmc-linux-26f78b7a423aea094c536e94cbe1f1fa4641dd7b.zip |
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>
Diffstat (limited to 'fs/ext2/balloc.c')
-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) return here; } -/* +/** * ext2_try_to_allocate() * @sb: superblock - * @handle: handle to this transaction * @group: given allocation block group * @bitmap_bh: bufferhead holds the block bitmap * @grp_goal: given target block within the group |