search for: journal_superblock_s

Displaying 3 results from an estimated 3 matches for "journal_superblock_s".

Did you mean: journal_superblock_t
2005 Jun 14
2
[2.6 patch] fs/jbd/: possible cleanups
...+92,6 @@ wake_up_process(p); } -/* Static check for data structure consistency. There's no code - * invoked --- we'll just get a linker failure if things aren't right. - */ -void __journal_internal_check(void) -{ - extern void journal_bad_superblock_size(void); - if (sizeof(struct journal_superblock_s) != 1024) - journal_bad_superblock_size(); -} - /* * kjournald: The main thread function used to manage a logging device * journal. @@ -119,16 +108,12 @@ * known as checkpointing, and this thread is responsible for that job. */ -journal_t *current_journal; // AKPM: debug - -int kjou...
2005 Jul 19
1
[2.6 patch] fs/jbd/: cleanups
...ned long wake_up_process(p); } -/* Static check for data structure consistency. There's no code - * invoked --- we'll just get a linker failure if things aren't right. - */ -void __journal_internal_check(void) -{ - extern void journal_bad_superblock_size(void); - if (sizeof(struct journal_superblock_s) != 1024) - journal_bad_superblock_size(); -} - /* * kjournald: The main thread function used to manage a logging device * journal. @@ -119,16 +109,12 @@ void __journal_internal_check(void) * known as checkpointing, and this thread is responsible for that job. */ -journal_t *current_...
2005 Apr 22
2
[2.6 patch] fs/jbd/: possible cleanups
...timeouts @@ -96,12 +94,14 @@ /* Static check for data structure consistency. There's no code * invoked --- we'll just get a linker failure if things aren't right. */ +#if 0 void __journal_internal_check(void) { extern void journal_bad_superblock_size(void); if (sizeof(struct journal_superblock_s) != 1024) journal_bad_superblock_size(); } +#endif /* 0 */ /* * kjournald: The main thread function used to manage a logging device @@ -119,16 +119,12 @@ * known as checkpointing, and this thread is responsible for that job. */ -journal_t *current_journal; // AKPM: debug - -in...