diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-01-14 20:55:10 +0100 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2006-02-03 13:47:21 -0800 |
commit | b4c7f538508adcde7a0a5162faec0b2ab19b90bd (patch) | |
tree | 143ce7f02ffa904cf770960c495d672b81710f21 /fs | |
parent | c74ec2f77a7763a4a56c6cb13ecab961e1bbb456 (diff) | |
download | linux-3.10-b4c7f538508adcde7a0a5162faec0b2ab19b90bd.tar.gz linux-3.10-b4c7f538508adcde7a0a5162faec0b2ab19b90bd.tar.bz2 linux-3.10-b4c7f538508adcde7a0a5162faec0b2ab19b90bd.zip |
[PATCH] fs/ocfs2/dlm/dlmrecovery.c must #include <linux/delay.h>
fs/ocfs2/dlm/dlmrecovery.c does now use msleep(), and does therefore
need to #include <linux/delay.h> for getting the prototype of this
function.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/dlm/dlmrecovery.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ocfs2/dlm/dlmrecovery.c b/fs/ocfs2/dlm/dlmrecovery.c index 325c9f5529c..186e9a76aa5 100644 --- a/fs/ocfs2/dlm/dlmrecovery.c +++ b/fs/ocfs2/dlm/dlmrecovery.c @@ -39,6 +39,7 @@ #include <linux/inet.h> #include <linux/timer.h> #include <linux/kthread.h> +#include <linux/delay.h> #include "cluster/heartbeat.h" |