/third_party/e2fsprogs/ |
D | 0007-e2fsck-exit-journal-recovery-when-jounral-superblock.patch | 4 Subject: [PATCH] e2fsck: exit journal recovery when jounral superblock fails 10 To fix this case, we use "fatal_error" when recover journal failed. 11 So we can reserve the recovery flag to recover the journal when try e2fsck again. 25 e2fsck/journal.c | 26 ++++++++++++++++++++++++-- 28 diff --git a/e2fsck/journal.c b/e2fsck/journal.c 30 --- a/e2fsck/journal.c 31 +++ b/e2fsck/journal.c 36 -static void e2fsck_journal_release(e2fsck_t ctx, journal_t *journal, 37 +static errcode_t e2fsck_journal_release(e2fsck_t ctx, journal_t *journal, 45 mark_buffer_clean(journal->j_sb_buffer); [all …]
|
D | 0017-tune2fs-do-not-change-j_tail_sequence-in-journal-sup.patch | 4 Subject: [PATCH] tune2fs: do not change j_tail_sequence in journal superblock 6 The function recover_ext3_journal() in debugfs/journal.c, if the log 7 replay is over, the j_tail_sequence in journal superblock is not 20 debugfs/journal.c | 2 ++ 23 diff --git a/debugfs/journal.c b/debugfs/journal.c 25 --- a/debugfs/journal.c 26 +++ b/debugfs/journal.c 28 mark_buffer_dirty(journal->j_sb_buffer); 31 + journal->j_tail_sequence = journal->j_transaction_sequence; 34 jbd2_journal_destroy_revoke(journal);
|
D | 0006-e2fsck-exit-journal-recovery-when-find-EIO-ENOMEM-er.patch | 4 Subject: [PATCH] e2fsck: exit journal recovery when find EIO, ENOMEM 12 e2fsck will skip the journal recovery when the temporary 16 when recover journal failed. If journal recovery fails, we 18 flags to recover the journal when try e2fsck again. 28 e2fsck/journal.c | 7 +++++++ 31 diff --git a/e2fsck/journal.c b/e2fsck/journal.c 33 --- a/e2fsck/journal.c 34 +++ b/e2fsck/journal.c 38 retval = -jbd2_journal_recover(journal);
|
D | 0035-e2fsck-don-t-allow-journal-inode-to-have-encrypt-fla.patch | 4 Subject: e2fsck: don't allow journal inode to have encrypt flag 6 Since the kernel is being fixed to consider journal inodes with the 13 e2fsck/journal.c | 3 ++- 24 diff --git a/e2fsck/journal.c b/e2fsck/journal.c 26 --- a/e2fsck/journal.c 27 +++ b/e2fsck/journal.c 44 +Superblock has an invalid journal (inode 8). 47 +*** journal has been deleted *** 65 +Recreate journal? yes 67 +Creating journal (1024 blocks): Done. [all …]
|
D | 0023-debugfs-fix-repeated-output-problem-with-logdump-O-n.patch | 18 No magic number at block 5: end of journal. 19 Found sequence 2 (not 7) at block 7: end of journal. 21 Found sequence 3 (not 8) at block 8: end of journal. 23 Found sequence 3 (not 8) at block 15: end of journal. 25 Found sequence 6 (not 9) at block 1: end of journal. <---------begin loop 27 Found sequence 6 (not 9) at block 4: end of journal. 29 Found sequence 2 (not 10) at block 7: end of journal. 31 logdump: short read (read 0, expected 1024) while reading journal 67 + fprintf(out_file, "Dump all %lld journal records.\n", cur_counts);
|
D | 0034-tune2fs-fix-an-error-message.patch | 7 Recovering journal. tune2fs: Unknown code ____ 251 while recovering journal. 25 @@ -3105,7 +3105,7 @@ _("Warning: The journal is dirty. You may wish to replay the journal like:\n\… 28 "while recovering journal.\n");
|
D | 0038-Quiet-unused-variable-warnings.patch | 11 e2fsck/journal.c | 15 +++++++-------- 15 diff --git a/e2fsck/journal.c b/e2fsck/journal.c 17 --- a/e2fsck/journal.c 18 +++ b/e2fsck/journal.c
|
D | 0018-debugfs-teach-logdump-the-n-num_trans-option.patch | 41 Dump the contents of the ext3 journal. By default, dump the journal inode as 54 option causes logdump to display old (checkpointed) journal entries. 55 This can be used to try to track down journal problems even after the 56 journal has been replayed. 62 +to continue past a journal block which is missing a magic number. 141 - "end of journal.\n", blocknr); 145 + "end of journal.\n", blocknr);
|
D | 0021-tune2fs-exit-directly-when-fs-freed-in-ext2fs_run_ext3_journal.patch | 23 @@ -3106,6 +3106,8 @@ _("Warning: The journal is dirty. You may wish to replay the journal like:\n\… 25 "while recovering journal.\n");
|
D | 0022-unix_io.c-fix-deadlock-problem-in-unix_write_blk64.patch | 23 …y=0, nr=<optimized out>, nr@entry=1, bhp=0xffffc8cbac60, bhp@entry=0xffffc8cbac58) at journal.c:184 24 13 0x0000aaaadcc375e8 in brelse (bh=<optimized out>, bh@entry=0xaaaaf5cac4a0) at journal.c:217 25 14 0x0000aaaadcc3ebe0 in do_one_pass (journal=journal@entry=0xaaaaf5c9f590, info=info@entry=0xffffc… 26 15 0x0000aaaadcc3ee74 in jbd2_journal_recover (journal=0xaaaaf5c9f590) at recovery.c:310 27 16 0x0000aaaadcc386a8 in recover_ext3_journal (ctx=0xaaaaf5c98460) at journal.c:1653 28 17 e2fsck_run_ext3_journal (ctx=0xaaaaf5c98460) at journal.c:1706
|
D | 0019-tune2fs-fix-tune2fs-segfault-when-ext2fs_run_ext3_jo.patch | 46 @@ -3106,8 +3106,6 @@ _("Warning: The journal is dirty. You may wish to replay the journal like:\n\… 48 "while recovering journal.\n");
|
D | install.sh | 24 patch -p1 < $1/0006-e2fsck-exit-journal-recovery-when-find-EIO-ENOMEM-er.patch --fuzz=0 --no-backup… 25 patch -p1 < $1/0007-e2fsck-exit-journal-recovery-when-jounral-superblock.patch --fuzz=0 --no-backup… 35 patch -p1 < $1/0017-tune2fs-do-not-change-j_tail_sequence-in-journal-sup.patch --fuzz=0 --no-backup… 53 patch -p1 < $1/0035-e2fsck-don-t-allow-journal-inode-to-have-encrypt-fla.patch --fuzz=0 --no-backup…
|
D | 0020-tune2fs-tune2fs_main-should-return-rc-when-some-erro.patch | 22 @@ -3243,6 +3243,7 @@ _("Warning: The journal is dirty. You may wish to replay the journal like:\n\…
|
D | e2fsprogs.spec | 15 Patch6: 0006-e2fsck-exit-journal-recovery-when-find-EIO-ENOMEM-er.patch 16 Patch7: 0007-e2fsck-exit-journal-recovery-when-jounral-superblock.patch 26 Patch17: 0017-tune2fs-do-not-change-j_tail_sequence-in-journal-sup.patch 44 Patch35: 0035-e2fsck-don-t-allow-journal-inode-to-have-encrypt-fla.patch 224 - tune2fs: do not change j_tail_sequence in journal superblock
|
D | 0024-tune2fs-check-return-value-of-ext2fs_mmp_update2-in-.patch | 54 @@ -3412,8 +3415,14 @@ _("Warning: The journal is dirty. You may wish to replay the journal like:\n…
|
D | 0013-e2fsck-do-not-clean-up-file-acl-if-the-inode-is-trun.patch | 9 img: recovering journal
|
D | 0041-debugfs-Fix-infinite-loop-when-dump-log.patch | 65 fprintf(out_file, "Dump all %lld journal records.\n", cur_counts);
|
/third_party/python/Lib/sqlite3/test/ |
D | backup.py | 67 journal = [] 70 journal.append(status) 76 self.assertEqual(len(journal), 2) 77 self.assertEqual(journal[0], sqlite.SQLITE_OK) 78 self.assertEqual(journal[1], sqlite.SQLITE_DONE) 81 journal = [] 84 journal.append(remaining) 90 self.assertEqual(len(journal), 1) 91 self.assertEqual(journal[0], 0) 94 journal = [] [all …]
|
/third_party/f2fs-tools/mkfs/ |
D | f2fs_format.c | 694 struct f2fs_journal *journal; in f2fs_write_check_point_pack() local 872 journal = &sum->journal; in f2fs_write_check_point_pack() 873 journal->n_nats = cpu_to_le16(1 + c.quota_inum + c.lpf_inum); in f2fs_write_check_point_pack() 874 journal->nat_j.entries[0].nid = sb->root_ino; in f2fs_write_check_point_pack() 875 journal->nat_j.entries[0].ne.version = 0; in f2fs_write_check_point_pack() 876 journal->nat_j.entries[0].ne.ino = sb->root_ino; in f2fs_write_check_point_pack() 877 journal->nat_j.entries[0].ne.block_addr = cpu_to_le32( in f2fs_write_check_point_pack() 884 journal->nat_j.entries[i].nid = sb->qf_ino[qtype]; in f2fs_write_check_point_pack() 885 journal->nat_j.entries[i].ne.version = 0; in f2fs_write_check_point_pack() 886 journal->nat_j.entries[i].ne.ino = sb->qf_ino[qtype]; in f2fs_write_check_point_pack() [all …]
|
/third_party/f2fs-tools/fsck/ |
D | mount.c | 1514 struct f2fs_journal *journal = &sum->journal; in f2fs_early_init_nid_bitmap() local 1528 if (nats_in_cursum(journal) > NAT_JOURNAL_ENTRIES) { in f2fs_early_init_nid_bitmap() 1531 nats_in_cursum(journal), NAT_JOURNAL_ENTRIES); in f2fs_early_init_nid_bitmap() 1532 journal->n_nats = cpu_to_le16(NAT_JOURNAL_ENTRIES); in f2fs_early_init_nid_bitmap() 1536 for (i = 0; i < nats_in_cursum(journal); i++) { in f2fs_early_init_nid_bitmap() 1539 addr = le32_to_cpu(nat_in_journal(journal, i).block_addr); in f2fs_early_init_nid_bitmap() 1542 journal->n_nats = cpu_to_le16(i); in f2fs_early_init_nid_bitmap() 1547 nid = le32_to_cpu(nid_in_journal(journal, i)); in f2fs_early_init_nid_bitmap() 1550 journal->n_nats = cpu_to_le16(i); in f2fs_early_init_nid_bitmap() 1698 struct f2fs_journal *journal = &curseg->sum_blk->journal; in check_nat_bits() local [all …]
|
/third_party/rust/crates/log/ |
D | README.md | 75 * [`systemd-journal-logger`](https://docs.rs/systemd-journal-logger/*/systemd_journal_logger/)
|
/third_party/pulseaudio/src/daemon/systemd/user/ |
D | pulseaudio.service.in | 20 ExecStart=@PA_BINARY@ --daemonize=no --log-target=journal
|
/third_party/node/tools/gyp/ |
D | .gitignore | 63 db.sqlite3-journal
|
/third_party/ntfs-3g/ |
D | TODO.ntfsprogs | 77 - On ntfs 3.0+ volumes need to disable the usn journal if it is active. This
|
/third_party/libinput/doc/user/ |
D | building.rst | 157 when gdm does not start because it is denied access to libinput. The journal
|