aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Massimo Di Nitto <fabbione@ubuntu.com>2006-09-19 01:56:29 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2006-09-19 08:45:18 -0400
commit7d308590ae60d1f038a54a94e78a385c5c163452 (patch)
treef672724840a07022ff6deb8022082af35dbad44c
parentf3b30912e0eab0e4160c7649a5f2b10be68027b9 (diff)
[GFS2] Export lm_interface to kernel headers
lm_interface.h has a few out of the tree clients such as GFS1 and userland tools. Right now, these clients keeps a copy of the file in their build tree that can go out of sync. Move lm_interface.h to include/linux, export it to userland and clean up fs/gfs2 to use the new location. Signed-off-by: Fabio M. Di Nitto <fabbione@ubuntu.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
-rw-r--r--fs/gfs2/acl.c2
-rw-r--r--fs/gfs2/bmap.c2
-rw-r--r--fs/gfs2/daemon.c2
-rw-r--r--fs/gfs2/dir.c2
-rw-r--r--fs/gfs2/eaops.c2
-rw-r--r--fs/gfs2/eattr.c2
-rw-r--r--fs/gfs2/glock.c2
-rw-r--r--fs/gfs2/glops.c2
-rw-r--r--fs/gfs2/inode.c2
-rw-r--r--fs/gfs2/lm.c2
-rw-r--r--fs/gfs2/locking.c3
-rw-r--r--fs/gfs2/locking/dlm/lock_dlm.h2
-rw-r--r--fs/gfs2/locking/nolock/main.c3
-rw-r--r--fs/gfs2/log.c2
-rw-r--r--fs/gfs2/lops.c2
-rw-r--r--fs/gfs2/main.c2
-rw-r--r--fs/gfs2/meta_io.c2
-rw-r--r--fs/gfs2/mount.c2
-rw-r--r--fs/gfs2/ops_address.c2
-rw-r--r--fs/gfs2/ops_dentry.c2
-rw-r--r--fs/gfs2/ops_export.c2
-rw-r--r--fs/gfs2/ops_file.c2
-rw-r--r--fs/gfs2/ops_fstype.c2
-rw-r--r--fs/gfs2/ops_inode.c2
-rw-r--r--fs/gfs2/ops_super.c2
-rw-r--r--fs/gfs2/ops_vm.c2
-rw-r--r--fs/gfs2/quota.c2
-rw-r--r--fs/gfs2/recovery.c2
-rw-r--r--fs/gfs2/rgrp.c2
-rw-r--r--fs/gfs2/super.c2
-rw-r--r--fs/gfs2/sys.c2
-rw-r--r--fs/gfs2/trans.c2
-rw-r--r--fs/gfs2/util.c2
-rw-r--r--include/linux/Kbuild6
-rw-r--r--include/linux/lm_interface.h (renamed from fs/gfs2/lm_interface.h)0
35 files changed, 36 insertions, 38 deletions
diff --git a/fs/gfs2/acl.c b/fs/gfs2/acl.c
index d846b5ad1d87..3123fc071233 100644
--- a/fs/gfs2/acl.c
+++ b/fs/gfs2/acl.c
@@ -15,9 +15,9 @@
15#include <linux/posix_acl.h> 15#include <linux/posix_acl.h>
16#include <linux/posix_acl_xattr.h> 16#include <linux/posix_acl_xattr.h>
17#include <linux/gfs2_ondisk.h> 17#include <linux/gfs2_ondisk.h>
18#include <linux/lm_interface.h>
18 19
19#include "gfs2.h" 20#include "gfs2.h"
20#include "lm_interface.h"
21#include "incore.h" 21#include "incore.h"
22#include "acl.h" 22#include "acl.h"
23#include "eaops.h" 23#include "eaops.h"
diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c
index bd5bc887ef9b..19b9bfc10349 100644
--- a/fs/gfs2/bmap.c
+++ b/fs/gfs2/bmap.c
@@ -14,9 +14,9 @@
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/gfs2_ondisk.h> 15#include <linux/gfs2_ondisk.h>
16#include <linux/crc32.h> 16#include <linux/crc32.h>
17#include <linux/lm_interface.h>
17 18
18#include "gfs2.h" 19#include "gfs2.h"
19#include "lm_interface.h"
20#include "incore.h" 20#include "incore.h"
21#include "bmap.h" 21#include "bmap.h"
22#include "glock.h" 22#include "glock.h"
diff --git a/fs/gfs2/daemon.c b/fs/gfs2/daemon.c
index a2a07c41845d..a9908cd78cd9 100644
--- a/fs/gfs2/daemon.c
+++ b/fs/gfs2/daemon.c
@@ -15,9 +15,9 @@
15#include <linux/kthread.h> 15#include <linux/kthread.h>
16#include <linux/delay.h> 16#include <linux/delay.h>
17#include <linux/gfs2_ondisk.h> 17#include <linux/gfs2_ondisk.h>
18#include <linux/lm_interface.h>
18 19
19#include "gfs2.h" 20#include "gfs2.h"
20#include "lm_interface.h"
21#include "incore.h" 21#include "incore.h"
22#include "daemon.h" 22#include "daemon.h"
23#include "glock.h" 23#include "glock.h"
diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c
index f3dbda216caf..739028688270 100644
--- a/fs/gfs2/dir.c
+++ b/fs/gfs2/dir.c
@@ -61,9 +61,9 @@
61#include <linux/gfs2_ondisk.h> 61#include <linux/gfs2_ondisk.h>
62#include <linux/crc32.h> 62#include <linux/crc32.h>
63#include <linux/vmalloc.h> 63#include <linux/vmalloc.h>
64#include <linux/lm_interface.h>
64 65
65#include "gfs2.h" 66#include "gfs2.h"
66#include "lm_interface.h"
67#include "incore.h" 67#include "incore.h"
68#include "dir.h" 68#include "dir.h"
69#include "glock.h" 69#include "glock.h"
diff --git a/fs/gfs2/eaops.c b/fs/gfs2/eaops.c
index adb898ceaa18..1a7877fe7393 100644
--- a/fs/gfs2/eaops.c
+++ b/fs/gfs2/eaops.c
@@ -14,10 +14,10 @@
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/xattr.h> 15#include <linux/xattr.h>
16#include <linux/gfs2_ondisk.h> 16#include <linux/gfs2_ondisk.h>
17#include <linux/lm_interface.h>
17#include <asm/uaccess.h> 18#include <asm/uaccess.h>
18 19
19#include "gfs2.h" 20#include "gfs2.h"
20#include "lm_interface.h"
21#include "incore.h" 21#include "incore.h"
22#include "acl.h" 22#include "acl.h"
23#include "eaops.h" 23#include "eaops.h"
diff --git a/fs/gfs2/eattr.c b/fs/gfs2/eattr.c
index d7b92fba6998..698942ec7c99 100644
--- a/fs/gfs2/eattr.c
+++ b/fs/gfs2/eattr.c
@@ -14,10 +14,10 @@
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/xattr.h> 15#include <linux/xattr.h>
16#include <linux/gfs2_ondisk.h> 16#include <linux/gfs2_ondisk.h>
17#include <linux/lm_interface.h>
17#include <asm/uaccess.h> 18#include <asm/uaccess.h>
18 19
19#include "gfs2.h" 20#include "gfs2.h"
20#include "lm_interface.h"
21#include "incore.h" 21#include "incore.h"
22#include "acl.h" 22#include "acl.h"
23#include "eaops.h" 23#include "eaops.h"
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c
index 64a1676e5f48..f98694e7d668 100644
--- a/fs/gfs2/glock.c
+++ b/fs/gfs2/glock.c
@@ -18,10 +18,10 @@
18#include <linux/kallsyms.h> 18#include <linux/kallsyms.h>
19#include <linux/gfs2_ondisk.h> 19#include <linux/gfs2_ondisk.h>
20#include <linux/list.h> 20#include <linux/list.h>
21#include <linux/lm_interface.h>
21#include <asm/uaccess.h> 22#include <asm/uaccess.h>
22 23
23#include "gfs2.h" 24#include "gfs2.h"
24#include "lm_interface.h"
25#include "incore.h" 25#include "incore.h"
26#include "glock.h" 26#include "glock.h"
27#include "glops.h" 27#include "glops.h"
diff --git a/fs/gfs2/glops.c b/fs/gfs2/glops.c
index d3aef74ea5d4..9c046dbf4729 100644
--- a/fs/gfs2/glops.c
+++ b/fs/gfs2/glops.c
@@ -13,9 +13,9 @@
13#include <linux/completion.h> 13#include <linux/completion.h>
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/gfs2_ondisk.h> 15#include <linux/gfs2_ondisk.h>
16#include <linux/lm_interface.h>
16 17
17#include "gfs2.h" 18#include "gfs2.h"
18#include "lm_interface.h"
19#include "incore.h" 19#include "incore.h"
20#include "bmap.h" 20#include "bmap.h"
21#include "glock.h" 21#include "glock.h"
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
index 0d010f0654d9..b9e4bcb3bf1e 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -16,9 +16,9 @@
16#include <linux/sort.h> 16#include <linux/sort.h>
17#include <linux/gfs2_ondisk.h> 17#include <linux/gfs2_ondisk.h>
18#include <linux/crc32.h> 18#include <linux/crc32.h>
19#include <linux/lm_interface.h>
19 20
20#include "gfs2.h" 21#include "gfs2.h"
21#include "lm_interface.h"
22#include "incore.h" 22#include "incore.h"
23#include "acl.h" 23#include "acl.h"
24#include "bmap.h" 24#include "bmap.h"
diff --git a/fs/gfs2/lm.c b/fs/gfs2/lm.c
index 4e23aa5ef75d..2109fc4791d4 100644
--- a/fs/gfs2/lm.c
+++ b/fs/gfs2/lm.c
@@ -14,9 +14,9 @@
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/delay.h> 15#include <linux/delay.h>
16#include <linux/gfs2_ondisk.h> 16#include <linux/gfs2_ondisk.h>
17#include <linux/lm_interface.h>
17 18
18#include "gfs2.h" 19#include "gfs2.h"
19#include "lm_interface.h"
20#include "incore.h" 20#include "incore.h"
21#include "glock.h" 21#include "glock.h"
22#include "lm.h" 22#include "lm.h"
diff --git a/fs/gfs2/locking.c b/fs/gfs2/locking.c
index 65eca48b2eae..663fee728783 100644
--- a/fs/gfs2/locking.c
+++ b/fs/gfs2/locking.c
@@ -16,8 +16,7 @@
16#include <linux/kmod.h> 16#include <linux/kmod.h>
17#include <linux/fs.h> 17#include <linux/fs.h>
18#include <linux/delay.h> 18#include <linux/delay.h>
19 19#include <linux/lm_interface.h>
20#include "lm_interface.h"
21 20
22struct lmh_wrapper { 21struct lmh_wrapper {
23 struct list_head lw_list; 22 struct list_head lw_list;
diff --git a/fs/gfs2/locking/dlm/lock_dlm.h b/fs/gfs2/locking/dlm/lock_dlm.h
index 3a45c020d01e..33af707a4d3f 100644
--- a/fs/gfs2/locking/dlm/lock_dlm.h
+++ b/fs/gfs2/locking/dlm/lock_dlm.h
@@ -26,7 +26,7 @@
26#include <net/sock.h> 26#include <net/sock.h>
27 27
28#include <linux/dlm.h> 28#include <linux/dlm.h>
29#include "../../lm_interface.h" 29#include <linux/lm_interface.h>
30 30
31/* 31/*
32 * Internally, we prefix things with gdlm_ and GDLM_ (for gfs-dlm) since a 32 * Internally, we prefix things with gdlm_ and GDLM_ (for gfs-dlm) since a
diff --git a/fs/gfs2/locking/nolock/main.c b/fs/gfs2/locking/nolock/main.c
index 7b263fc6c273..acfbc941f319 100644
--- a/fs/gfs2/locking/nolock/main.c
+++ b/fs/gfs2/locking/nolock/main.c
@@ -14,8 +14,7 @@
14#include <linux/types.h> 14#include <linux/types.h>
15#include <linux/fs.h> 15#include <linux/fs.h>
16#include <linux/smp_lock.h> 16#include <linux/smp_lock.h>
17 17#include <linux/lm_interface.h>
18#include "../../lm_interface.h"
19 18
20struct nolock_lockspace { 19struct nolock_lockspace {
21 unsigned int nl_lvb_size; 20 unsigned int nl_lvb_size;
diff --git a/fs/gfs2/log.c b/fs/gfs2/log.c
index ab341cd0a76a..08b80b263ade 100644
--- a/fs/gfs2/log.c
+++ b/fs/gfs2/log.c
@@ -14,9 +14,9 @@
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/gfs2_ondisk.h> 15#include <linux/gfs2_ondisk.h>
16#include <linux/crc32.h> 16#include <linux/crc32.h>
17#include <linux/lm_interface.h>
17 18
18#include "gfs2.h" 19#include "gfs2.h"
19#include "lm_interface.h"
20#include "incore.h" 20#include "incore.h"
21#include "bmap.h" 21#include "bmap.h"
22#include "glock.h" 22#include "glock.h"
diff --git a/fs/gfs2/lops.c b/fs/gfs2/lops.c
index f8f6d4b56a01..e44d245d51d4 100644
--- a/fs/gfs2/lops.c
+++ b/fs/gfs2/lops.c
@@ -13,9 +13,9 @@
13#include <linux/completion.h> 13#include <linux/completion.h>
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/gfs2_ondisk.h> 15#include <linux/gfs2_ondisk.h>
16#include <linux/lm_interface.h>
16 17
17#include "gfs2.h" 18#include "gfs2.h"
18#include "lm_interface.h"
19#include "incore.h" 19#include "incore.h"
20#include "glock.h" 20#include "glock.h"
21#include "log.h" 21#include "log.h"
diff --git a/fs/gfs2/main.c b/fs/gfs2/main.c
index d2867988cc34..7903be735fe9 100644
--- a/fs/gfs2/main.c
+++ b/fs/gfs2/main.c
@@ -15,10 +15,10 @@
15#include <linux/module.h> 15#include <linux/module.h>
16#include <linux/init.h> 16#include <linux/init.h>
17#include <linux/gfs2_ondisk.h> 17#include <linux/gfs2_ondisk.h>
18#include <linux/lm_interface.h>
18#include <asm/atomic.h> 19#include <asm/atomic.h>
19 20
20#include "gfs2.h" 21#include "gfs2.h"
21#include "lm_interface.h"
22#include "incore.h" 22#include "incore.h"
23#include "ops_fstype.h" 23#include "ops_fstype.h"
24#include "sys.h" 24#include "sys.h"
diff --git a/fs/gfs2/meta_io.c b/fs/gfs2/meta_io.c
index 6af3521339fc..a5630ec6c045 100644
--- a/fs/gfs2/meta_io.c
+++ b/fs/gfs2/meta_io.c
@@ -18,9 +18,9 @@
18#include <linux/swap.h> 18#include <linux/swap.h>
19#include <linux/delay.h> 19#include <linux/delay.h>
20#include <linux/gfs2_ondisk.h> 20#include <linux/gfs2_ondisk.h>
21#include <linux/lm_interface.h>
21 22
22#include "gfs2.h" 23#include "gfs2.h"
23#include "lm_interface.h"
24#include "incore.h" 24#include "incore.h"
25#include "glock.h" 25#include "glock.h"
26#include "glops.h" 26#include "glops.h"
diff --git a/fs/gfs2/mount.c b/fs/gfs2/mount.c
index 257c4a179dc6..ef3092e29607 100644
--- a/fs/gfs2/mount.c
+++ b/fs/gfs2/mount.c
@@ -13,9 +13,9 @@
13#include <linux/completion.h> 13#include <linux/completion.h>
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/gfs2_ondisk.h> 15#include <linux/gfs2_ondisk.h>
16#include <linux/lm_interface.h>
16 17
17#include "gfs2.h" 18#include "gfs2.h"
18#include "lm_interface.h"
19#include "incore.h" 19#include "incore.h"
20#include "mount.h" 20#include "mount.h"
21#include "sys.h" 21#include "sys.h"
diff --git a/fs/gfs2/ops_address.c b/fs/gfs2/ops_address.c
index 7cd53d118c89..91ec8080eeb2 100644
--- a/fs/gfs2/ops_address.c
+++ b/fs/gfs2/ops_address.c
@@ -17,9 +17,9 @@
17#include <linux/mpage.h> 17#include <linux/mpage.h>
18#include <linux/fs.h> 18#include <linux/fs.h>
19#include <linux/gfs2_ondisk.h> 19#include <linux/gfs2_ondisk.h>
20#include <linux/lm_interface.h>
20 21
21#include "gfs2.h" 22#include "gfs2.h"
22#include "lm_interface.h"
23#include "incore.h" 23#include "incore.h"
24#include "bmap.h" 24#include "bmap.h"
25#include "glock.h" 25#include "glock.h"
diff --git a/fs/gfs2/ops_dentry.c b/fs/gfs2/ops_dentry.c
index fa6ceffc7d82..00041b1b8025 100644
--- a/fs/gfs2/ops_dentry.c
+++ b/fs/gfs2/ops_dentry.c
@@ -15,9 +15,9 @@
15#include <linux/smp_lock.h> 15#include <linux/smp_lock.h>
16#include <linux/gfs2_ondisk.h> 16#include <linux/gfs2_ondisk.h>
17#include <linux/crc32.h> 17#include <linux/crc32.h>
18#include <linux/lm_interface.h>
18 19
19#include "gfs2.h" 20#include "gfs2.h"
20#include "lm_interface.h"
21#include "incore.h" 21#include "incore.h"
22#include "dir.h" 22#include "dir.h"
23#include "glock.h" 23#include "glock.h"
diff --git a/fs/gfs2/ops_export.c b/fs/gfs2/ops_export.c
index 470e8829e7f4..86127d93bd35 100644
--- a/fs/gfs2/ops_export.c
+++ b/fs/gfs2/ops_export.c
@@ -14,9 +14,9 @@
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/gfs2_ondisk.h> 15#include <linux/gfs2_ondisk.h>
16#include <linux/crc32.h> 16#include <linux/crc32.h>
17#include <linux/lm_interface.h>
17 18
18#include "gfs2.h" 19#include "gfs2.h"
19#include "lm_interface.h"
20#include "incore.h" 20#include "incore.h"
21#include "dir.h" 21#include "dir.h"
22#include "glock.h" 22#include "glock.h"
diff --git a/fs/gfs2/ops_file.c b/fs/gfs2/ops_file.c
index b551074a3c98..80f3ff0bba7b 100644
--- a/fs/gfs2/ops_file.c
+++ b/fs/gfs2/ops_file.c
@@ -22,10 +22,10 @@
22#include <linux/ext2_fs.h> 22#include <linux/ext2_fs.h>
23#include <linux/crc32.h> 23#include <linux/crc32.h>
24#include <linux/iflags.h> 24#include <linux/iflags.h>
25#include <linux/lm_interface.h>
25#include <asm/uaccess.h> 26#include <asm/uaccess.h>
26 27
27#include "gfs2.h" 28#include "gfs2.h"
28#include "lm_interface.h"
29#include "incore.h" 29#include "incore.h"
30#include "bmap.h" 30#include "bmap.h"
31#include "dir.h" 31#include "dir.h"
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c
index e8b7a1ae163b..e32a6b242e0c 100644
--- a/fs/gfs2/ops_fstype.c
+++ b/fs/gfs2/ops_fstype.c
@@ -17,9 +17,9 @@
17#include <linux/namei.h> 17#include <linux/namei.h>
18#include <linux/mount.h> 18#include <linux/mount.h>
19#include <linux/gfs2_ondisk.h> 19#include <linux/gfs2_ondisk.h>
20#include <linux/lm_interface.h>
20 21
21#include "gfs2.h" 22#include "gfs2.h"
22#include "lm_interface.h"
23#include "incore.h" 23#include "incore.h"
24#include "daemon.h" 24#include "daemon.h"
25#include "glock.h" 25#include "glock.h"
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c
index 2f38313b4bd5..bb2ef6a86533 100644
--- a/fs/gfs2/ops_inode.c
+++ b/fs/gfs2/ops_inode.c
@@ -19,10 +19,10 @@
19#include <linux/posix_acl.h> 19#include <linux/posix_acl.h>
20#include <linux/gfs2_ondisk.h> 20#include <linux/gfs2_ondisk.h>
21#include <linux/crc32.h> 21#include <linux/crc32.h>
22#include <linux/lm_interface.h>
22#include <asm/uaccess.h> 23#include <asm/uaccess.h>
23 24
24#include "gfs2.h" 25#include "gfs2.h"
25#include "lm_interface.h"
26#include "incore.h" 26#include "incore.h"
27#include "acl.h" 27#include "acl.h"
28#include "bmap.h" 28#include "bmap.h"
diff --git a/fs/gfs2/ops_super.c b/fs/gfs2/ops_super.c
index 975e93b7992e..f9538849c418 100644
--- a/fs/gfs2/ops_super.c
+++ b/fs/gfs2/ops_super.c
@@ -19,9 +19,9 @@
19#include <linux/delay.h> 19#include <linux/delay.h>
20#include <linux/gfs2_ondisk.h> 20#include <linux/gfs2_ondisk.h>
21#include <linux/crc32.h> 21#include <linux/crc32.h>
22#include <linux/lm_interface.h>
22 23
23#include "gfs2.h" 24#include "gfs2.h"
24#include "lm_interface.h"
25#include "incore.h" 25#include "incore.h"
26#include "glock.h" 26#include "glock.h"
27#include "inode.h" 27#include "inode.h"
diff --git a/fs/gfs2/ops_vm.c b/fs/gfs2/ops_vm.c
index 3b3463144126..5453d2947ab3 100644
--- a/fs/gfs2/ops_vm.c
+++ b/fs/gfs2/ops_vm.c
@@ -15,9 +15,9 @@
15#include <linux/mm.h> 15#include <linux/mm.h>
16#include <linux/pagemap.h> 16#include <linux/pagemap.h>
17#include <linux/gfs2_ondisk.h> 17#include <linux/gfs2_ondisk.h>
18#include <linux/lm_interface.h>
18 19
19#include "gfs2.h" 20#include "gfs2.h"
20#include "lm_interface.h"
21#include "incore.h" 21#include "incore.h"
22#include "bmap.h" 22#include "bmap.h"
23#include "glock.h" 23#include "glock.h"
diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c
index bc9ad058d20e..c5eb6c646177 100644
--- a/fs/gfs2/quota.c
+++ b/fs/gfs2/quota.c
@@ -44,9 +44,9 @@
44#include <linux/sort.h> 44#include <linux/sort.h>
45#include <linux/fs.h> 45#include <linux/fs.h>
46#include <linux/gfs2_ondisk.h> 46#include <linux/gfs2_ondisk.h>
47#include <linux/lm_interface.h>
47 48
48#include "gfs2.h" 49#include "gfs2.h"
49#include "lm_interface.h"
50#include "incore.h" 50#include "incore.h"
51#include "bmap.h" 51#include "bmap.h"
52#include "glock.h" 52#include "glock.h"
diff --git a/fs/gfs2/recovery.c b/fs/gfs2/recovery.c
index 130e9fbf9692..518f9128137e 100644
--- a/fs/gfs2/recovery.c
+++ b/fs/gfs2/recovery.c
@@ -14,9 +14,9 @@
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/gfs2_ondisk.h> 15#include <linux/gfs2_ondisk.h>
16#include <linux/crc32.h> 16#include <linux/crc32.h>
17#include <linux/lm_interface.h>
17 18
18#include "gfs2.h" 19#include "gfs2.h"
19#include "lm_interface.h"
20#include "incore.h" 20#include "incore.h"
21#include "bmap.h" 21#include "bmap.h"
22#include "glock.h" 22#include "glock.h"
diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c
index 7a5ab817ad9c..113b4ace6893 100644
--- a/fs/gfs2/rgrp.c
+++ b/fs/gfs2/rgrp.c
@@ -14,9 +14,9 @@
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/fs.h> 15#include <linux/fs.h>
16#include <linux/gfs2_ondisk.h> 16#include <linux/gfs2_ondisk.h>
17#include <linux/lm_interface.h>
17 18
18#include "gfs2.h" 19#include "gfs2.h"
19#include "lm_interface.h"
20#include "incore.h" 20#include "incore.h"
21#include "glock.h" 21#include "glock.h"
22#include "glops.h" 22#include "glops.h"
diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c
index f1d07d987c7b..fe207a3e206e 100644
--- a/fs/gfs2/super.c
+++ b/fs/gfs2/super.c
@@ -15,9 +15,9 @@
15#include <linux/crc32.h> 15#include <linux/crc32.h>
16#include <linux/gfs2_ondisk.h> 16#include <linux/gfs2_ondisk.h>
17#include <linux/bio.h> 17#include <linux/bio.h>
18#include <linux/lm_interface.h>
18 19
19#include "gfs2.h" 20#include "gfs2.h"
20#include "lm_interface.h"
21#include "incore.h" 21#include "incore.h"
22#include "bmap.h" 22#include "bmap.h"
23#include "dir.h" 23#include "dir.h"
diff --git a/fs/gfs2/sys.c b/fs/gfs2/sys.c
index c9b23084918f..0e0ec988f731 100644
--- a/fs/gfs2/sys.c
+++ b/fs/gfs2/sys.c
@@ -15,10 +15,10 @@
15#include <linux/module.h> 15#include <linux/module.h>
16#include <linux/kobject.h> 16#include <linux/kobject.h>
17#include <linux/gfs2_ondisk.h> 17#include <linux/gfs2_ondisk.h>
18#include <linux/lm_interface.h>
18#include <asm/uaccess.h> 19#include <asm/uaccess.h>
19 20
20#include "gfs2.h" 21#include "gfs2.h"
21#include "lm_interface.h"
22#include "incore.h" 22#include "incore.h"
23#include "lm.h" 23#include "lm.h"
24#include "sys.h" 24#include "sys.h"
diff --git a/fs/gfs2/trans.c b/fs/gfs2/trans.c
index acf840160d5f..f8dabf8446bb 100644
--- a/fs/gfs2/trans.c
+++ b/fs/gfs2/trans.c
@@ -14,9 +14,9 @@
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/gfs2_ondisk.h> 15#include <linux/gfs2_ondisk.h>
16#include <linux/kallsyms.h> 16#include <linux/kallsyms.h>
17#include <linux/lm_interface.h>
17 18
18#include "gfs2.h" 19#include "gfs2.h"
19#include "lm_interface.h"
20#include "incore.h" 20#include "incore.h"
21#include "glock.h" 21#include "glock.h"
22#include "log.h" 22#include "log.h"
diff --git a/fs/gfs2/util.c b/fs/gfs2/util.c
index d72eb8addc7a..196c604faadc 100644
--- a/fs/gfs2/util.c
+++ b/fs/gfs2/util.c
@@ -14,10 +14,10 @@
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/crc32.h> 15#include <linux/crc32.h>
16#include <linux/gfs2_ondisk.h> 16#include <linux/gfs2_ondisk.h>
17#include <linux/lm_interface.h>
17#include <asm/uaccess.h> 18#include <asm/uaccess.h>
18 19
19#include "gfs2.h" 20#include "gfs2.h"
20#include "lm_interface.h"
21#include "incore.h" 21#include "incore.h"
22#include "glock.h" 22#include "glock.h"
23#include "lm.h" 23#include "lm.h"
diff --git a/include/linux/Kbuild b/include/linux/Kbuild
index 2121cde187d8..d8e720f9c21a 100644
--- a/include/linux/Kbuild
+++ b/include/linux/Kbuild
@@ -45,9 +45,9 @@ unifdef-y += acct.h adb.h adfs_fs.h agpgart.h apm_bios.h atalk.h \
45 inet_diag.h in.h inotify.h input.h ipc.h ipmi.h ipv6.h \ 45 inet_diag.h in.h inotify.h input.h ipc.h ipmi.h ipv6.h \
46 ipv6_route.h isdn.h isdnif.h isdn_ppp.h isicom.h jbd.h \ 46 ipv6_route.h isdn.h isdnif.h isdn_ppp.h isicom.h jbd.h \
47 joystick.h kdev_t.h kd.h kernelcapi.h kernel.h keyboard.h \ 47 joystick.h kdev_t.h kd.h kernelcapi.h kernel.h keyboard.h \
48 llc.h loop.h lp.h mempolicy.h mii.h mman.h mroute.h msdos_fs.h \ 48 llc.h lm_interface.h loop.h lp.h mempolicy.h mii.h mman.h \
49 msg.h nbd.h ncp_fs.h ncp.h ncp_mount.h netdevice.h \ 49 mroute.h msdos_fs.h msg.h nbd.h ncp_fs.h ncp.h ncp_mount.h \
50 netfilter_bridge.h netfilter_decnet.h netfilter.h \ 50 netdevice.h netfilter_bridge.h netfilter_decnet.h netfilter.h \
51 netfilter_ipv4.h netfilter_ipv6.h netfilter_logging.h net.h \ 51 netfilter_ipv4.h netfilter_ipv6.h netfilter_logging.h net.h \
52 netlink.h nfs3.h nfs4.h nfsacl.h nfs_fs.h nfs.h nfs_idmap.h \ 52 netlink.h nfs3.h nfs4.h nfsacl.h nfs_fs.h nfs.h nfs_idmap.h \
53 n_r3964.h nubus.h nvram.h parport.h patchkey.h pci.h pktcdvd.h \ 53 n_r3964.h nubus.h nvram.h parport.h patchkey.h pci.h pktcdvd.h \
diff --git a/fs/gfs2/lm_interface.h b/include/linux/lm_interface.h
index 1418fdc9ac02..1418fdc9ac02 100644
--- a/fs/gfs2/lm_interface.h
+++ b/include/linux/lm_interface.h