diff options
author | Jeff Mahoney <jeffm@suse.com> | 2006-01-09 12:36:40 -0500 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2006-02-03 13:47:18 -0800 |
commit | aee93ac4b7ad461255939248d0d51566cff77e05 (patch) | |
tree | c5b1bda905d89548bd052eaf040da6eb287ee44b /fs | |
parent | 0c6c98fb187524935a93fdd4f9a7193e7b110782 (diff) | |
download | linux-aee93ac4b7ad461255939248d0d51566cff77e05.tar.bz2 |
[PATCH] ocfs2/dlm: fix compilation on ia64
Including <asm/signal.h> results in compilation failure on ia64 due to
not including <linux/compiler.h>
Including <linux/signal.h> corrects the problem.
Please apply.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/dlm/userdlm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/dlm/userdlm.c b/fs/ocfs2/dlm/userdlm.c index e1fdd288796e..c3764f4744ee 100644 --- a/fs/ocfs2/dlm/userdlm.c +++ b/fs/ocfs2/dlm/userdlm.c @@ -27,7 +27,7 @@ * Boston, MA 021110-1307, USA. */ -#include <asm/signal.h> +#include <linux/signal.h> #include <linux/module.h> #include <linux/fs.h> |