diff options
author | David Howells <dhowells@redhat.com> | 2009-11-20 21:50:40 +0000 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2009-11-20 21:50:40 +0000 |
commit | 1c2ea8a2c0b71cc5e07f518370d458d692c9b21a (patch) | |
tree | 3a4acbf6b21bfd560dece24916b951e4639d3632 /fs/gfs2/recovery.c | |
parent | 0109d7e614e016a842569628116f54847a177f6e (diff) |
SLOW_WORK: Fix GFS2 to #include <linux/module.h> before using THIS_MODULE
GFS2 has been altered to pass THIS_MODULE to slow_work_register_user(), but
hasn't been altered to #include <linux/module.h> to provide it, resulting in
the following error:
fs/gfs2/recovery.c:596: error: 'THIS_MODULE' undeclared here (not in a function)
Add the missing #include.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'fs/gfs2/recovery.c')
-rw-r--r-- | fs/gfs2/recovery.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/recovery.c b/fs/gfs2/recovery.c index b2bb779f09e..09fa3196557 100644 --- a/fs/gfs2/recovery.c +++ b/fs/gfs2/recovery.c @@ -7,6 +7,7 @@ * of the GNU General Public License version 2. */ +#include <linux/module.h> #include <linux/slab.h> #include <linux/spinlock.h> #include <linux/completion.h> |