It has no callers. Signed-off-by: Andrew Morton --- 25-akpm/fs/ext2/super.c | 22 ---------------------- 1 files changed, 22 deletions(-) diff -puN fs/ext2/super.c~remove-ext2_panic fs/ext2/super.c --- 25/fs/ext2/super.c~remove-ext2_panic Fri Sep 3 17:25:49 2004 +++ 25-akpm/fs/ext2/super.c Fri Sep 3 17:26:04 2004 @@ -65,28 +65,6 @@ void ext2_error (struct super_block * sb } } -NORET_TYPE void ext2_panic (struct super_block * sb, const char * function, - const char * fmt, ...) -{ - va_list args; - struct ext2_sb_info *sbi = EXT2_SB(sb); - - if (!(sb->s_flags & MS_RDONLY)) { - sbi->s_mount_state |= EXT2_ERROR_FS; - sbi->s_es->s_state = - cpu_to_le16(le16_to_cpu(sbi->s_es->s_state) | EXT2_ERROR_FS); - mark_buffer_dirty(sbi->s_sbh); - sb->s_dirt = 1; - } - va_start(args, fmt); - printk(KERN_CRIT "EXT2-fs error (device %s): %s: ",sb->s_id, function); - vprintk(fmt, args); - printk("\n"); - va_end(args); - sb->s_flags |= MS_RDONLY; - panic("EXT2-fs panic forced\n"); -} - void ext2_warning (struct super_block * sb, const char * function, const char * fmt, ...) { _