HomeSort by relevance Sort by last modified time
    Searched refs:journal (Results 1 - 20 of 20) sorted by null

  /external/e2fsprogs/e2fsck/
recovery.c 12 * Journal recovery routines for the generic filesystem journaling code;
41 static int do_one_pass(journal_t *journal,
57 * When reading from the journal, we are going through the block device
69 static int do_readahead(journal_t *journal, unsigned int start)
79 max = start + (128 * 1024 / journal->j_blocksize);
80 if (max > journal->j_maxlen)
81 max = journal->j_maxlen;
89 err = journal_bmap(journal, next, &blocknr);
97 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize)
    [all...]
revoke.c 12 * Journal revoke routines for the generic filesystem journaling code;
20 * transaction's revoked blocks to the journal
37 * need either to cancel the journal entry or to write the revoke
78 journal replay, this involves recording the transaction ID of the
110 static inline int hash(journal_t *journal, unsigned long block)
112 struct jbd_revoke_table_s *table = journal->j_revoke;
120 static int insert_revoke_hash(journal_t *journal, unsigned long blocknr,
135 hash_list = &journal->j_revoke->hash_table[hash(journal, blocknr)];
152 /* Find a revoke record in the journal's hash table. *
288 journal_t *journal; local
378 journal_t *journal = handle->h_transaction->t_journal; local
    [all...]
journal.c 2 * journal.c --- code for handling the "ext3" journal
7 * Parts of the code are based on fs/jfs/journal.c by Stephen C. Tweedie
42 /* Kernel compatibility functions for handling the journal. These allow us
46 int journal_bmap(journal_t *journal, blk_t block, unsigned long *phys)
52 struct inode *inode = journal->j_inode;
186 /* if we had an error doing journal recovery, we need a full fsck */
193 * This is a helper function to check the validity of the journal.
230 journal_t *journal = NULL; local
239 journal = e2fsck_allocate_memory(ctx, sizeof(journal_t), "journal")
686 journal_t *journal; local
801 journal_t *journal; local
    [all...]
jfs_user.h 47 #define do_readahead(journal, start) do {} while(0)
104 * Kernel compatibility functions are defined in journal.c
106 int journal_bmap(journal_t *journal, blk_t block, unsigned long *phys);
Android.mk 61 journal.c \
Makefile.in 65 pass5.o journal.o swapfs.o badblocks.o util.o dirinfo.o dx_dirinfo.o \
72 profiled/journal.o profiled/badblocks.o profiled/util.o \
88 $(srcdir)/journal.c \
300 journal.o: $(srcdir)/journal.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
  /external/e2fsprogs/debian/
initrd-tools.e2fsprogs 5 cp /usr/share/e2fsprogs/initrd.ext3-add-journal \
6 $INITRDDIR/scripts/ext3-add-journal.sh
rules 336 $(INSTALL) -p -o root -g root -m 0755 debian/initrd.ext3-add-journal \
337 debian/e2fsprogs/usr/share/e2fsprogs/initrd.ext3-add-journal
  /external/kernel-headers/original/linux/
jbd.h 28 #include <linux/journal-head.h>
118 typedef struct journal_s journal_t; /* Journal control structure */
153 * The block tag: used to describe a single buffer in the journal
172 /* Definitions for the journal tag flags word: */
180 * The journal superblock. All fields are in big-endian byte order.
188 /* Static information describing the journal */
189 __be32 s_blocksize; /* journal device blocksize */
190 __be32 s_maxlen; /* total blocks in journal file */
208 __u8 s_uuid[16]; /* 128-bit uuid for journal */
216 __be32 s_max_transaction; /* Limit of journal blocks per trans.*
    [all...]
  /external/e2fsprogs/lib/ext2fs/
kernel-jbd.h 28 #include <linux/journal-head.h>
78 typedef struct journal_s journal_t; /* Journal control structure */
113 * The block tag: used to describe a single buffer in the journal
132 /* Definitions for the journal tag flags word: */
140 * The journal superblock. All fields are in big-endian byte order.
148 /* Static information describing the journal */
149 __u32 s_blocksize; /* journal device blocksize */
150 __u32 s_maxlen; /* total blocks in journal file */
168 __u8 s_uuid[16]; /* 128-bit uuid for journal */
176 __u32 s_max_transaction; /* Limit of journal blocks per trans.*
    [all...]
  /external/genext2fs/
Config.mk 4 # $(4): if true, add journal
  /external/e2fsprogs/po/
at-expand.pl 79 $msg =~ s/\@j/journal/g;
  /frameworks/base/services/java/com/android/server/
DevicePolicyManagerService.java 331 JournaledFile journal = makeJournaledFile(); local
334 stream = new FileOutputStream(journal.chooseForWrite(), false);
375 journal.commit();
385 journal.rollback();
396 JournaledFile journal = makeJournaledFile(); local
398 File file = journal.chooseForRead();
    [all...]
WallpaperManagerService.java 636 JournaledFile journal = makeJournaledFile(); local
639 stream = new FileOutputStream(journal.chooseForWrite(), false);
656 journal.commit();
665 journal.rollback();
672 JournaledFile journal = makeJournaledFile(); local
674 File file = journal.chooseForRead();
    [all...]
BackupManagerService.java 240 // Where we keep our journal files and other bookkeeping
298 // Start a new backup-queue journal file too
305 // At this point, we have started a new journal file, and the old
307 // When it completes successfully, that old journal file will be
308 // deleted. If we crash prior to that, the old journal is parsed
504 // leftover journal files into the pending backup set
662 // This isn't the current journal, so it must be a leftover. Read
667 Slog.i(TAG, "Found stale backup journal, scheduling");
709 // No more initialization needed; wipe the journal and reset our state.
    [all...]
PackageManagerService.java 8596 JournaledFile journal = new JournaledFile(mPackageListFilename, tempFile); local
    [all...]
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheStorage.cpp 522 bool ApplicationCacheStorage::store(ApplicationCacheGroup* group, GroupStorageIDJournal* journal)
525 ASSERT(journal);
538 journal->add(group, 0);
766 // Log the storageID changes to the in-memory resource objects. The journal
    [all...]
  /external/blktrace/doc/
blktrace.tex 255 Creating journal (8192 blocks): done
427 a super or journal block to disk. \emph{pc} requests are SCSI
    [all...]
  /external/chromium/net/base/
effective_tld_names.cc     [all...]
  /external/e2fsprogs/
configure     [all...]

Completed in 518 milliseconds