Displaying 3 results from an estimated 3 matches for "journal_bad_superblock_size".
2005 Jun 14
2
[2.6 patch] fs/jbd/: possible cleanups
...lper function used to manage commit timeouts
@@ -93,16 +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...
2005 Jul 19
1
[2.6 patch] fs/jbd/: cleanups
...uts
@@ -93,16 +93,6 @@ static void commit_timeout(unsigned 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 respo...
2005 Apr 22
2
[2.6 patch] fs/jbd/: possible cleanups
...rrno);
/*
* Helper function used to manage commit 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.
*/
-j...