search for: journal_abort

Displaying 6 results from an estimated 6 matches for "journal_abort".

2005 Jun 14
2
[2.6 patch] fs/jbd/: possible cleanups
...ern int journal_check_available_features (journal_t *, unsigned long, unsigned long, unsigned long); extern int journal_set_features @@ -914,7 +912,6 @@ extern int journal_skip_recovery (journal_t *); extern void journal_update_superblock (journal_t *, int); extern void __journal_abort_hard (journal_t *); -extern void __journal_abort_soft (journal_t *, int); extern void journal_abort (journal_t *, int); extern int journal_errno (journal_t *); extern void journal_ack_err (journal_t *); --- linux-2.6.12-rc6-mm1-full/fs/jbd/journal.c.old 2005-06-14 03:57:...
2005 Jul 19
1
[2.6 patch] fs/jbd/: cleanups
...l/include/linux/jbd.h.old 2005-06-14 03:58:20.000000000 +0200 +++ linux-2.6.12-rc6-mm1-full/include/linux/jbd.h 2005-06-14 04:00:56.000000000 +0200 @@ -914,7 +912,6 @@ extern int journal_skip_recovery (journal_t *); extern void journal_update_superblock (journal_t *, int); extern void __journal_abort_hard (journal_t *); -extern void __journal_abort_soft (journal_t *, int); extern void journal_abort (journal_t *, int); extern int journal_errno (journal_t *); extern void journal_ack_err (journal_t *); --- linux-2.6.12-rc6-mm1-full/fs/jbd/revoke.c.old 2005-06-14 03:58:3...
2005 Apr 22
2
[2.6 patch] fs/jbd/: possible cleanups
...rn int journal_check_available_features (journal_t *, unsigned long, unsigned long, unsigned long); extern int journal_set_features @@ -914,10 +912,8 @@ extern int journal_skip_recovery (journal_t *); extern void journal_update_superblock (journal_t *, int); extern void __journal_abort_hard (journal_t *); -extern void __journal_abort_soft (journal_t *, int); extern void journal_abort (journal_t *, int); extern int journal_errno (journal_t *); -extern void journal_ack_err (journal_t *); extern int journal_clear_err (journal_t *); extern int jour...
2005 Jan 18
0
[PATCH] ext3: commit superblock before panicking
...(test_opt (sb, ERRORS_PANIC)) - panic ("EXT3-fs (device %s): panic forced after error\n", - sb->s_id); if (test_opt (sb, ERRORS_RO)) { printk (KERN_CRIT "Remounting filesystem read-only\n"); sb->s_flags |= MS_RDONLY; @@ -156,6 +153,9 @@ if (journal) journal_abort(journal, -EIO); } + if (test_opt (sb, ERRORS_PANIC)) + panic ("EXT3-fs (device %s): panic forced after error\n", + sb->s_id); ext3_commit_super(sb, es, 1); }
2007 Jun 27
1
making new initrd, how to do it?
...n/27 03:57 pm>ext3: Unknown symbol journal_start <Jun/27 03:57 pm>ext3: Unknown symbol log_wait_commit <Jun/27 03:57 pm>ext3: Unknown symbol journal_release_buffer <Jun/27 03:57 pm>ext3: Unknown symbol journal_check_available_features <Jun/27 03:57 pm>ext3: Unknown symbol journal_abort <Jun/27 03:57 pm>ext3: Unknown symbol journal_restart <Jun/27 03:57 pm>insmod: error inserting ''/lib/ext3.ko'': -1 Unknown symbol in mo dule <Jun/27 03:57 pm>Loading megaraid_sas.ko module <Jun/27 03:57 pm>megaraid_sas: Unknown symbol scsi_remove_host <J...
2005 Jan 06
0
[2.6 patch] fs/ext3/: possible cleanups
...ournal_start/end. @@ -178,7 +185,8 @@ ext3_handle_error(sb); } -const char *ext3_decode_error(struct super_block * sb, int errno, char nbuf[16]) +static const char *ext3_decode_error(struct super_block * sb, int errno, + char nbuf[16]) { char *errstr = NULL; @@ -261,29 +269,6 @@ journal_abort(EXT3_SB(sb)->s_journal, -EIO); } -/* Deal with the reporting of failure conditions while running, such as - * inconsistencies in operation or invalid system states. - * - * Use ext3_error() for cases of invalid filesystem states, as that will - * record an error on disk and force a filesystem...