summaryrefslogtreecommitdiff
path: root/drivers/md
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2009-09-25 08:44:49 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2009-09-25 08:44:49 +1000
commit3493b83b41553f7a451be2269c27b9f2434adb7d (patch)
treea2a5bfc5dcbf4468cd38e32ec75fd2f859f469f0 /drivers/md
parent7aa196c4eaa531af525dd4b55925f823335aa718 (diff)
dm-log-userspace-fix-incorrect-luid-cast-in-userspace_ctr
mips: drivers/md/dm-log-userspace-base.c: In function `userspace_ctr': drivers/md/dm-log-userspace-base.c:159: warning: cast from pointer to integer of different size Cc: Jonathan Brassow <jbrassow@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-log-userspace-base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-log-userspace-base.c b/drivers/md/dm-log-userspace-base.c
index 652bd33109e3..7ac2c1450d10 100644
--- a/drivers/md/dm-log-userspace-base.c
+++ b/drivers/md/dm-log-userspace-base.c
@@ -156,7 +156,7 @@ static int userspace_ctr(struct dm_dirty_log *log, struct dm_target *ti,
}
/* The ptr value is sufficient for local unique id */
- lc->luid = (uint64_t)lc;
+ lc->luid = (unsigned long)lc;
lc->ti = ti;