Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 36125
b: refs/heads/master
c: 37ed322
h: refs/heads/master
i:
  36123: be1dd94
v: v3
  • Loading branch information
Eric Sandeen authored and Linus Torvalds committed Sep 27, 2006
1 parent b07746d commit 8622fd2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: eee194e76c681dbdbf5024b889fda1181b66ef57
refs/heads/master: 37ed322290eb6d5cf2ab33915793ed4219eae1d6
6 changes: 3 additions & 3 deletions trunk/fs/jbd/journal.c
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ static void journal_kill_thread(journal_t *journal)
int journal_write_metadata_buffer(transaction_t *transaction,
struct journal_head *jh_in,
struct journal_head **jh_out,
int blocknr)
unsigned long blocknr)
{
int need_copy_out = 0;
int done_copy_out = 0;
Expand Down Expand Up @@ -696,7 +696,7 @@ static journal_t * journal_init_common (void)
* @bdev: Block device on which to create the journal
* @fs_dev: Device which hold journalled filesystem for this journal.
* @start: Block nr Start of journal.
* @len: Lenght of the journal in blocks.
* @len: Length of the journal in blocks.
* @blocksize: blocksize of journalling device
* @returns: a newly created journal_t *
*
Expand Down Expand Up @@ -820,7 +820,7 @@ static void journal_fail_superblock (journal_t *journal)
static int journal_reset(journal_t *journal)
{
journal_superblock_t *sb = journal->j_superblock;
unsigned int first, last;
unsigned long first, last;

first = be32_to_cpu(sb->s_first);
last = be32_to_cpu(sb->s_maxlen);
Expand Down
4 changes: 2 additions & 2 deletions trunk/include/linux/jbd.h
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ struct journal_s
*/
struct block_device *j_dev;
int j_blocksize;
unsigned int j_blk_offset;
unsigned long j_blk_offset;

/*
* Device which holds the client fs. For internal journal this will be
Expand Down Expand Up @@ -866,7 +866,7 @@ extern int
journal_write_metadata_buffer(transaction_t *transaction,
struct journal_head *jh_in,
struct journal_head **jh_out,
int blocknr);
unsigned long blocknr);

/* Transaction locking */
extern void __wait_on_journal (journal_t *);
Expand Down

0 comments on commit 8622fd2

Please sign in to comment.