]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
SLOW_WORK: Fix GFS2 to #include <linux/module.h> before using THIS_MODULE
authorDavid Howells <dhowells@redhat.com>
Fri, 20 Nov 2009 21:50:40 +0000 (21:50 +0000)
committerDavid Howells <dhowells@redhat.com>
Fri, 20 Nov 2009 21:50:40 +0000 (21:50 +0000)
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>
fs/gfs2/recovery.c

index b2bb779f09ed250db415e6ec75d57a600dde210f..09fa31965576c6f169c1ea699e246d8916465008 100644 (file)
@@ -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>