]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
linux24-fix-20060820
authorDerrick Brashear <shadow@dementia.org>
Sun, 20 Aug 2006 06:31:42 +0000 (06:31 +0000)
committerDerrick Brashear <shadow@dementia.org>
Sun, 20 Aug 2006 06:31:42 +0000 (06:31 +0000)
fix ifdef damage

src/afs/LINUX/osi_vfsops.c

index 030614e310cc376553afcf186e6348550f98aca2..18f68ffa7e074d552ac4496b3e40d64d97cb913e 100644 (file)
@@ -60,11 +60,6 @@ int afs_fill_super(struct super_block *sb, void *data, int silent);
  * 2) Mount call comes to us via do_mount -> read_super -> afs_read_super.
  *    We are expected to setup the super_block. See afs_read_super.
  */
-#if defined(AFS_LINUX26_ENV)
-struct backing_dev_info afs_backing_dev_info = {
-       .ra_pages       = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE,
-       .state          = 0,
-};
 
 
 /* afs_read_super
@@ -108,6 +103,11 @@ struct file_system_type afs_fs_type = {
 };
 #endif
 
+#if defined(AFS_LINUX26_ENV)
+struct backing_dev_info afs_backing_dev_info = {
+       .ra_pages       = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE,
+       .state          = 0,
+};
 
 int
 afs_fill_super(struct super_block *sb, void *data, int silent)