From 62673279dacd6e2a68860297a4105d4c026adb96 Mon Sep 17 00:00:00 2001 From: Stefan Bader Date: Mon, 4 Jun 2012 17:36:10 +0200 Subject: UBUNTU: SAUCE: Fix compile failures of dm-raid45 Must include module.h explicitely now. Also remove one compile time test which does not work anymore (will get rid of a warning). Signed-off-by: Stefan Bader Signed-off-by: Tim Gardner --- ubuntu/dm-raid4-5/dm-memcache.c | 1 + ubuntu/dm-raid4-5/dm-message.c | 1 + ubuntu/dm-raid4-5/dm-raid4-5.c | 5 +++++ 3 files changed, 7 insertions(+) diff --git a/ubuntu/dm-raid4-5/dm-memcache.c b/ubuntu/dm-raid4-5/dm-memcache.c index 1b15859b276..346abb431b3 100644 --- a/ubuntu/dm-raid4-5/dm-memcache.c +++ b/ubuntu/dm-raid4-5/dm-memcache.c @@ -19,6 +19,7 @@ #include "dm-memcache.h" #include #include +#include struct dm_mem_cache_client { spinlock_t lock; diff --git a/ubuntu/dm-raid4-5/dm-message.c b/ubuntu/dm-raid4-5/dm-message.c index a66b0152cb3..de21e52c76e 100644 --- a/ubuntu/dm-raid4-5/dm-message.c +++ b/ubuntu/dm-raid4-5/dm-message.c @@ -14,6 +14,7 @@ #include "dm.h" #include "dm-message.h" #include +#include #define DM_MSG_PREFIX "dm_message" diff --git a/ubuntu/dm-raid4-5/dm-raid4-5.c b/ubuntu/dm-raid4-5/dm-raid4-5.c index 88db7958b8d..e05b0e14e34 100644 --- a/ubuntu/dm-raid4-5/dm-raid4-5.c +++ b/ubuntu/dm-raid4-5/dm-raid4-5.c @@ -54,6 +54,7 @@ static const char *version = "v0.2594b"; #include "dm-region-hash.h" #include +#include /* * Configurable parameters @@ -173,9 +174,13 @@ enum chunk_flags { CHUNK_UPTODATE, /* Chunk pages are uptodate. */ }; +/* + * This does not work anymore with __REQ_* values being enums + * #if READ != 0 || WRITE != 1 #error dm-raid45: READ/WRITE != 0/1 used as index!!! #endif +*/ enum bl_type { WRITE_QUEUED = WRITE + 1, -- cgit v1.2.3