aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/dlm/dlmdomain.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ocfs2/dlm/dlmdomain.c')
-rw-r--r--fs/ocfs2/dlm/dlmdomain.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ocfs2/dlm/dlmdomain.c b/fs/ocfs2/dlm/dlmdomain.c
index 80b8cce9cf3c..a074ec6f193f 100644
--- a/fs/ocfs2/dlm/dlmdomain.c
+++ b/fs/ocfs2/dlm/dlmdomain.c
@@ -67,6 +67,9 @@ static void **dlm_alloc_pagevec(int pages)
67 for (i = 0; i < pages; i++) 67 for (i = 0; i < pages; i++)
68 if (!(vec[i] = (void *)__get_free_page(GFP_KERNEL))) 68 if (!(vec[i] = (void *)__get_free_page(GFP_KERNEL)))
69 goto out_free; 69 goto out_free;
70
71 mlog(0, "Allocated DLM hash pagevec; %d pages (%lu expected), %Zd buckets per page\n",
72 pages, DLM_HASH_PAGES, DLM_BUCKETS_PER_PAGE);
70 return vec; 73 return vec;
71out_free: 74out_free:
72 dlm_free_pagevec(vec, i); 75 dlm_free_pagevec(vec, i);