+2000-12-14 Andreas Dilger <adilger@turbolinux.com>
+
+ * mkjournal.c: rename ext2fs_add_journal_fs() to the more descriptive
+ ext2fs_add_journal_inode()
+
2001-01-01 <tytso@snap.thunk.org>
* ext2fs.h: Remove definition of ext2fs_sb. Note: this may break
2000-12-09 <tytso@snap.thunk.org>
- * ext2fs.h, mkjournal.c (ext2fs_add_journal_fs,
+ * ext2fs.h, mkjournal.c (ext2fs_add_journal_inode,
ext2fs_add_journal_device): Add a new argument to the APIs
of these function, which is a flags word. This is used to
allow the creation of a V1 superblock for those folks who
/* mkjournal.c */
extern errcode_t ext2fs_add_journal_device(ext2_filsys fs, char *device,
blk_t size, int flags);
-extern errcode_t ext2fs_add_journal_fs(ext2_filsys fs, blk_t size,
- int flags);
+extern errcode_t ext2fs_add_journal_inode(ext2_filsys fs, blk_t size,
+ int flags);
/* openfs.c */
extern errcode_t ext2fs_open(const char *name, int flags, int superblock,
/*
* This function adds a journal inode to a filesystem
*/
-errcode_t ext2fs_add_journal_fs(ext2_filsys fs, blk_t size, int flags)
+errcode_t ext2fs_add_journal_inode(ext2_filsys fs, blk_t size, int flags)
{
journal_superblock_t jsb;
errcode_t retval;
exit(1);
}
- retval = ext2fs_add_journal_fs(fs, 1024);
+ retval = ext2fs_add_journal_inode(fs, 1024);
if (retval) {
com_err(argv[0], retval, "while adding journal to %s",
device_name);