summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorMark Fasheh <mark.fasheh@oracle.com>2006-03-23 19:23:29 (GMT)
committerMark Fasheh <mark.fasheh@oracle.com>2006-06-26 21:42:43 (GMT)
commit685f1adb3872d904e08e22fab699f34432d5068a (patch)
tree351bfb28a72601250f70553d8eef4edc542fcf31 /fs
parentc8f33b6e86af74ee7b800f57cac7b3c8559318fe (diff)
downloadlinux-fsl-qoriq-685f1adb3872d904e08e22fab699f34432d5068a.tar.xz
ocfs2: silence a compile warning in dlm_alloc_pagevec()
Reported by Andrew Morton. Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/ocfs2/dlm/dlmdomain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ocfs2/dlm/dlmdomain.c b/fs/ocfs2/dlm/dlmdomain.c
index a074ec6..3511930 100644
--- a/fs/ocfs2/dlm/dlmdomain.c
+++ b/fs/ocfs2/dlm/dlmdomain.c
@@ -68,8 +68,8 @@ static void **dlm_alloc_pagevec(int pages)
if (!(vec[i] = (void *)__get_free_page(GFP_KERNEL)))
goto out_free;
- mlog(0, "Allocated DLM hash pagevec; %d pages (%lu expected), %Zd buckets per page\n",
- pages, DLM_HASH_PAGES, DLM_BUCKETS_PER_PAGE);
+ mlog(0, "Allocated DLM hash pagevec; %d pages (%lu expected), %lu buckets per page\n",
+ pages, DLM_HASH_PAGES, (unsigned long)DLM_BUCKETS_PER_PAGE);
return vec;
out_free:
dlm_free_pagevec(vec, i);